* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'sans-serif', 'Georgia', 'Times New Roman', serif;
}

body {
    font-family: 'sans-serif', 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Subtle texture overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.prompt {
    font-size: 2.5rem;
    color: #5a3e36;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(90, 62, 54, 0.1);
    transition: all 0.4s ease;
}

.button-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 200px;
    transition: all 0.2s ease;
}

.btn {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'sans-serif', 'Georgia', 'Times New Roman', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(90, 62, 54, 0.2);
    position: relative;
    font-weight: 500;
}

.btn-yes {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
    color: white;
}

.btn-yes:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
}

.btn-yes:active {
    transform: translateY(-8px) scale(1.1);
}

.btn-no {
    background: linear-gradient(135deg, #e0e0e0 0%, #c9c9c9 100%);
    color: #5a3e36;
}

.btn-no:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(90, 62, 54, 0.3);
}

.btn-no:active {
    transform: translateY(-2px) scale(1.1);
}

/* YIPPEE page styles */
.yippee-page {
    display: none;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.yippee-page.active {
    display: block;
}

.scrolling-text {
    position: absolute;
    white-space: nowrap;
    font-size: 100vh;
    line-height: 100vh;
    font-weight: bold;
    color: #ff6b6b;
    text-shadow: 4px 4px 8px rgba(90, 62, 54, 0.3);
    letter-spacing: 10px;
    animation: scroll-left 20s linear infinite;
    top: 0;
    display: flex;
    align-items: center;
}

@keyframes scroll-left {
    0% {
        left: 100%;
    }
    100% {
        left: -8000%;
    }
}

/* Sad state */
.sad-state .btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    .prompt {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }

    .scrolling-text {
        font-size: 4rem;
    }

    .button-container {
        gap: 1rem;
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .prompt {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .scrolling-text {
        font-size: 3rem;
    }
}