body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    color: white;
    text-align: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px #3f51b5;
    animation: fadeInUp 1s ease-out forwards, glowPulse 6s ease-in-out infinite;
    opacity: 0;
    transform: translateY(80px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px #3f51b5;
    }
    25% {
        box-shadow: 0 0 20px #5e35b1;
    }
    50% {
        box-shadow: 0 0 30px #7c4dff;
    }
    75% {
        box-shadow: 0 0 20px #5e35b1;
    }
    100% {
        box-shadow: 0 0 10px #3f51b5;
    }
}

h1 {
    background: linear-gradient(135deg, #3f51b5, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
    font-size: 18px;
    overflow: hidden;
    border-right: 2px solid #7c4dff;
    white-space: nowrap;
    width: 0;
    animation: typingCycle 6s steps(40, end) infinite, blink 0.7s step-end infinite;
    animation-delay: 1s, 1s;
}

@keyframes typingCycle {
    0% { width: 0; }
    25% { width: 100%; }
    50% { width: 100%; }
    75% { width: 0; }
    100% { width: 0; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

button::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

button:hover::after {
    opacity: 0.1;
}

button:active {
    transform: scale(1.05);
}

.yes {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.no {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.4);
}

.yes:hover {
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
}

.no:hover {
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.6);
}
