/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    background: linear-gradient(135deg, #fdf4f8 0%, #f8f0ff 25%, #fef5f7 50%, #f9f1ff 75%, #fdf4f8 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Page System */
.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(30px);
    padding: 40px 20px;
}

.page.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    z-index: 10;
    position: relative;
}

/* Welcome Section */
.welcome-container {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #8b4f8f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.welcome-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #a67ca5;
    margin-bottom: 40px;
    font-weight: 300;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.name-input {
    width: 100%;
    max-width: 350px;
    padding: 18px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    border: 2px solid #e6d5e8;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #8b4f8f;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.name-input:focus {
    outline: none;
    border-color: #c791c8;
    box-shadow: 0 8px 25px rgba(199, 145, 200, 0.2);
    transform: translateY(-2px);
}

.name-input::placeholder {
    color: #c791c8;
    opacity: 0.7;
}

.start-btn {
    background: linear-gradient(135deg, #e6a4c4, #d88fb8, #c773a8);
    border: none;
    color: white;
    padding: 18px 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(199, 115, 168, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(199, 115, 168, 0.4);
}

.start-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/* Survey Section */
.survey-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
}

.question-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(199, 145, 200, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.question-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.question-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #8b4f8f;
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.3;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-btn {
    background: linear-gradient(135deg, #f8f0ff, #f5ebff);
    border: 2px solid #e6d5e8;
    color: #8b4f8f;
    padding: 18px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.option-btn:hover {
    background: linear-gradient(135deg, #e6a4c4, #d88fb8);
    color: white;
    border-color: #c773a8;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(199, 115, 168, 0.3);
}

.option-btn.selected {
    background: linear-gradient(135deg, #c773a8, #b85f94);
    color: white;
    border-color: #a64978;
    transform: translateX(10px);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: rgba(230, 213, 232, 0.3);
    border-radius: 10px;
    margin: 50px auto 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e6a4c4, #c773a8);
    border-radius: 10px;
    width: 0%;
    transition: width 0.6s ease;
}

/* Reveal Section */
.reveal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.mystery-box {
    background: linear-gradient(135deg, #fdf4f8, #f8f0ff);
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(199, 145, 200, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    max-width: 450px;
    width: 90%;
    border: 2px solid rgba(230, 210, 214, 0.5);
    overflow: hidden;
    transition: all 0.3s ease;
}

.box-lid {
    background: linear-gradient(135deg, #e6a4c4, #c773a8);
    border-radius: 20px 20px 0 0;
    padding: 30px;
    margin: -60px -50px 30px -50px;
    transform-origin: top;
    position: relative;
    box-shadow: 0 5px 15px rgba(199, 115, 168, 0.3);
}

.box-icon {
    font-size: 3rem;
    display: block;
    animation: gentle-bounce 2s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.box-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8b4f8f;
    margin-bottom: 30px;
    font-weight: 600;
}

.reveal-btn {
    background: linear-gradient(135deg, #e6a4c4, #d88fb8, #c773a8);
    border: none;
    color: white;
    padding: 18px 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(199, 115, 168, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.reveal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(199, 115, 168, 0.4);
}

.reveal-btn:active {
    transform: scale(0.98);
}

.reveal-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.reveal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.reveal-btn:hover::before {
    left: 100%;
}

/* YES/NO Choice Buttons */
.yes-no-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    min-height: 80px;
}

.yes-btn-final {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: none;
    color: white;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.yes-btn-final:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.yes-btn-final:active {
    transform: scale(0.98);
}

.no-btn-dodge {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border: none;
    color: white;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: not-allowed;
    transition: all 0.2s ease;
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
}

.no-btn-dodge:hover {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Typography */
h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #8b4f8f;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

p {
    color: #a67ca5;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Buttons */
.glow-btn {
    background: linear-gradient(45deg, #ff69b4, #ff1493, #ff69b4);
    background-size: 200% 200%;
    border: none;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    animation: glow-pulse 2s ease-in-out infinite, gradient-shift 3s ease infinite;
    font-family: 'Quicksand', sans-serif;
}

.glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.6);
}

.next-btn {
    background: linear-gradient(45deg, #dda0dd, #da70d6);
    border: none;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    font-family: 'Quicksand', sans-serif;
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218, 112, 214, 0.4);
}

.answer-btn {
    background: linear-gradient(45deg, #ffb6c1, #ff69b4);
    border: none;
    color: white;
    padding: 12px 25px;
    margin: 10px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    animation: wiggle 2s ease-in-out infinite;
}

.answer-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.4);
}

.choice-btn {
    padding: 20px 50px;
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    margin: 20px;
}

.yes-btn {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.yes-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.6);
}

.no-btn {
    background: linear-gradient(45deg, #dcdcdc, #c0c0c0);
    color: #666;
    position: relative;
    transition: all 0.2s ease;
}

.share-btn {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-family: 'Quicksand', sans-serif;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

/* Memory Section */
.memory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.memory-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.memory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.4);
}

.memory-placeholder {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

/* Feelings Section */
.questions-container {
    max-width: 600px;
    margin: 0 auto;
}

.question {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.question p {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #d63384;
}

.answer-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Confession Section */
.typing-container {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d63384;
    text-align: center;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(214, 51, 132, 0.2);
}

.choice-buttons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

/* Real Paper Letter Styles */
.real-letter-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.letter-paper {
    background: #fffdf9;
    background-image: 
        linear-gradient(90deg, transparent 0%, transparent 98%, rgba(232, 196, 200, 0.3) 98%, rgba(232, 196, 200, 0.3) 100%),
        linear-gradient(rgba(230, 210, 214, 0.2) 1px, transparent 1px);
    background-size: 100% 100%, 100% 2.5rem;
    line-height: 2.5rem;
    padding: 60px 50px 80px 60px;
    box-shadow: 
        0 1px 4px rgba(0,0,0,0.1),
        0 0 40px rgba(0,0,0,0.05) inset,
        5px 5px 15px rgba(0,0,0,0.05),
        -5px 5px 15px rgba(0,0,0,0.05);
    border-radius: 3px;
    position: relative;
    transform: rotate(-1deg);
    min-height: 600px;
}

.letter-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(135deg, #e6a4c4, #c773a8, #a64978);
    opacity: 0.3;
}

.letter-lines {
    font-family: 'Cormorant Garamond', serif;
    color: #6b4c6b;
    font-size: 1.5rem;
    line-height: 2.2rem;
}

.letter-header-paper {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.dear-text {
    color: #a67ca5;
}

.recipient-name {
    color: #c773a8;
    font-weight: 700;
}

.letter-body {
    font-family: 'Cormorant Garamond', serif;
    color: #6b4c6b;
    font-size: 1.4rem;
    line-height: 2.2rem;
    min-height: 300px;
    white-space: pre-wrap;
}

.letter-closing {
    margin-top: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #6b4c6b;
    line-height: 2rem;
}

.signature-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #c773a8;
    font-weight: 700;
    margin-top: 10px;
}

.wax-seal {
    position: absolute;
    bottom: 30px;
    right: 50px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c0392b, #8e281c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 
        0 2px 5px rgba(0,0,0,0.2),
        0 0 10px rgba(192, 57, 43, 0.3);
    transform: rotate(15deg);
    animation: seal-glow 3s ease-in-out infinite;
}

@keyframes seal-glow {
    0%, 100% { box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 0 10px rgba(192, 57, 43, 0.3); }
    50% { box-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 0 20px rgba(192, 57, 43, 0.5); }
}

/* Help Guide - REMOVED */

/* Music Toggle - REMOVED */

.letter-signature {
    text-align: right;
    margin-top: 30px;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #d63384;
}

.letter-seal {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

/* Final Message */
.final-title {
    font-size: 3rem;
    margin-bottom: 40px;
    animation: heart-beat 1.5s ease-in-out infinite;
}

.final-animation {
    text-align: center;
}

.big-heart {
    font-size: 6rem;
    margin: 30px 0;
    animation: pulse-grow 2s ease-in-out infinite;
}

.final-text {
    font-size: 1.4rem;
    margin: 30px 0;
    color: #8b5a8c;
}

.timer-container {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.countdown {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d63384;
    font-family: 'Dancing Script', cursive;
    margin: 15px 0;
}

/* Sparkles */
.sparkles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: sparkle-float 3s ease-in-out infinite;
    pointer-events: none;
}

/* Animations */
@keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(255, 105, 180, 0.8); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes sparkle-float {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-50px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0);
    }
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-grow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-title {
        font-size: 2.2rem;
    }
    
    .choice-btn {
        padding: 15px 35px;
        font-size: 1.2rem;
        margin: 10px;
    }
    
    .big-heart {
        font-size: 4rem;
    }
    
    .countdown {
        font-size: 2rem;
    }
    
    .content {
        padding: 15px;
    }
    
    .mystery-box {
        padding: 50px 35px;
        margin: 0 15px;
    }
    
    .box-lid {
        padding: 25px;
        margin: -50px -35px 25px -35px;
    }
    
    .box-icon {
        font-size: 2.5rem;
    }
    
    .box-text {
        font-size: 1.3rem;
    }
    
    .reveal-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .letter-paper {
        padding: 40px 30px 70px 35px;
        margin: 0 10px;
        transform: rotate(-0.5deg);
    }
    
    .letter-lines {
        font-size: 1.3rem;
        line-height: 2rem;
    }
    
    .letter-body {
        font-size: 1.3rem;
        line-height: 2rem;
    }
    
    .letter-closing {
        font-size: 1.3rem;
    }
    
    .signature-name {
        font-size: 1.5rem;
    }
    
    .wax-seal {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 30px;
    }
    
    .question-card {
        padding: 30px 25px;
    }
    
    .question-card h3 {
        font-size: 1.6rem;
    }
    
    .option-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .yes-no-container {
        flex-direction: column;
        gap: 20px;
        min-height: 150px;
    }
    
    .no-btn-dodge {
        position: relative;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .mystery-box {
        padding: 40px 25px;
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .box-lid {
        padding: 20px;
        margin: -40px -25px 20px -25px;
    }
    
    .box-icon {
        font-size: 2rem;
    }
    
    .box-text {
        font-size: 1.15rem;
        margin-bottom: 20px;
    }
    
    .reveal-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .letter-paper {
        padding: 30px 20px 60px 25px;
        margin: 0 5px;
        transform: rotate(0deg);
        min-height: 500px;
    }
    
    .letter-lines {
        font-size: 1.15rem;
        line-height: 1.8rem;
    }
    
    .letter-header-paper {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .letter-body {
        font-size: 1.15rem;
        line-height: 1.8rem;
    }
    
    .letter-closing {
        font-size: 1.15rem;
        margin-top: 30px;
    }
    
    .signature-name {
        font-size: 1.3rem;
    }
    
    .wax-seal {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: 15px;
        right: 20px;
    }
    
    .question-card {
        padding: 25px 20px;
    }
    
    .question-card h3 {
        font-size: 1.4rem;
    }
    
    .option-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .start-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .name-input {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .final-title {
        font-size: 1.8rem;
    }
    
    .countdown {
        font-size: 1.6rem;
    }
    
    .yes-no-container {
        flex-direction: column;
        gap: 15px;
        min-height: 150px;
    }
    
    .yes-btn-final, .no-btn-dodge {
        padding: 15px 30px;
        font-size: 1rem;
        position: relative;
    }
    
    .no-btn-dodge {
        position: relative;
    }
}
