body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
}

.main-container {
    width: 100%;
}

/* 1. BÖLÜM: KARANLIK SAYAÇ */
.timer-section {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(to bottom, #000000 0%, #1a1a2e 90%, #4a1d35 100%);
    position: relative;
}

#big-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.timer-box span {
    font-size: 0.9rem;
    color: #ff85a2;
    margin-top: 5px;
    letter-spacing: 2px;
}

.timer-intro {
    font-size: 1.1rem;
    color: #ff85a2;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

/* 2. BÖLÜM: PEMBE OYUN ALANI */
.game-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #ffccd5 0%, #fff0f3 100%);
}

.game-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 380px;
    text-align: center;
    margin: 50px 0;
}

#answer-input {
    border: none;
    border-bottom: 2px solid #ff85a2;
    background: transparent;
    width: 100%;
    padding: 12px;
    font-size: 1.2rem;
    outline: none;
    text-align: center;
}

button {
    background: #ff85a2;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    margin-top: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

button:hover {
    background: #ff4d6d;
    transform: scale(1.05);
}

#feedback { color: #ff4d6d; margin-top: 15px; }

/* FİNAL EFEKTLERİ */
.hidden { display: none !important; }

.cake-icon {
    font-size: 5rem;
    animation: bob 2s infinite ease-in-out;
}

.birthday-text { color: #ff4d6d; margin-top: 20px; }

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    color: #ff85a2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
} 
/* Mevcut CSS'inin en altındaki eski @media kısmını sil ve bunu yapıştır */
@media screen and (max-width: 600px) {
    #big-timer {
        gap: 10px !important; /* Kutular arası boşluğu mobilde azalttık */
        flex-wrap: nowrap; /* Yan yana durmaya zorla */
    }

    .timer-box {
        min-width: 65px !important; /* Kutuları mobilde daralttık */
    }

    /* Rakamların boyutu */
    #big-timer {
        font-size: 1.8rem !important; 
    }

    /* GÜN, SAAT, DAK yazıları */
    .timer-box span {
        font-size: 0.6rem !important;
        letter-spacing: 1px !important;
    }

    /* Üstteki yazı */
    .timer-intro {
        font-size: 0.9rem !important;
        padding: 0 15px;  
    }

    /* Quiz kutusunun mobilde ekrana sığması için */
    .game-card {
        width: 85% !important;
        padding: 30px 20px !important;
    }
}