body {
    background: linear-gradient(135deg, #1e1e2f 0%, #4e54c8 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ball {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 120px 120px, #444, #000);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    position: relative;
}

.window {
    width: 130px;
    height: 130px;
    background: #000814;
    border: 6px solid #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 35px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 1);
}

#answerText {
    font-size: 24px;
    font-weight: bold;
    color: #4da6ff;
    text-shadow: 0 0 8px rgba(102, 173, 244, 0.6);
    margin: 0;
}

#bigEight {
    font-size: 120px;
    margin: 0;
    color: white;
}

h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.ball {
animation: shake 2.5s ease-in-out infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-5px, -5px) rotate(-1deg);
    }

    30% {
        transform: translate(5px, 5px) rotate(1deg);
    }

    50% {
        transform: translate(-5px, 5px) rotate(-1deg);
    }

    70% {
        transform: translate(5px, -5px) rotate(1deg);
    }

    100% {
        transform: translate(1px, 1px) rotate(0deg);
    }
}

input {
    padding: 15px;
    border-radius: 25px;
    border: none;
    width: 280px;
    outline: none;
    font-size: 16px;
}

button {
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    background-color: #6c5ce7;
    color: white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #a29bfe;
    transform: scale(1.05);
}