body {
    background-color: #1a1a1a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* İçerik taşarsa uzasın */
    font-family: 'Arial', sans-serif;
    margin: 0;
    overflow-x: hidden;
    /* Yatay taşmayı engelle */
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    /* Çok hafif beyazlık */
    backdrop-filter: blur(10px);
    /* Arkayı bulanıklaştırır */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

#countdown {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 20px;
}

#countdown span {
    background: #333;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 0 5px;
    display: inline-block;
}

/* Buton Tasarımı */
#heartButton {
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #ff4b2b;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.4);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    /* Mobilde tıklama sırasındaki mavi gölgeyi siler */
    user-select: none;
    /* Metnin yanlışlıkla seçilmesini engeller */
}

#heartButton:hover {
    transform: scale(1.05);
    background-color: #ff416c;
}

#heartButton:active {
    transform: scale(0.95);
}

/* Kalp Efekti İçin Gerekli CSS */
.heart-particle {
    position: fixed;
    pointer-events: none;
    font-size: 20px;
    animation: flyUp 1.5s ease-out forwards;
    z-index: 9999;
}

@keyframes flyUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-200px) translateX(var(--random-x)) scale(1.5);
        opacity: 0;
    }
}

#loginScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.login-box {
    background: #333;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
    /* Çok hafif beyazlık */
    backdrop-filter: blur(10px);
    /* Arkayı bulanıklaştırır */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.login-box input {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

.login-box button {
    background: #ff4b2b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

/* style.css en altına ekle */
@media (max-width: 600px) {
    body {
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 30px;
        padding-bottom: 30px;
        overflow-y: auto;
    }

    .container {
        width: 90%;
        margin-bottom: 30px;
    }

    #countdown {
        font-size: 1.5rem;
        /* Mobilde yazıları küçültür */
    }

    #countdown span {
        padding: 5px 10px;
        margin: 2px;
    }

    .login-box {
        width: 80%;
        /* Giriş kutusunu daraltır */
    }
}

#musicToggle {
    display: block;
    /* Butonu ayrı bir satıra alır */
    margin: 20px auto;
    /* Üstten 20px boşluk bırakır ve yatayda ortalar */
    padding: 10px 20px;
    background-color: #444;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#musicToggle:hover {
    background-color: #666;
    /* Üzerine gelince renk değişimi */
}

body {
    background: linear-gradient(-45deg, #1a1a1a, #2c3e50, #27ae60, #2980b9);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Status Boxes */
.status-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.status-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px;
    min-width: 150px;
    text-align: center;
    transition: transform 0.3s;
}

.status-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.status-box h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.emoji-row {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}


.status-btn {
    background: rgba(255, 255, 255, 0.05);
    /* Slight background for all */
    border: 2px solid transparent;
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    /* Slightly larger */
    height: 60px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    /* Default fade */
    filter: grayscale(0.5);
    /* Slightly muted */
}

.status-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    filter: grayscale(0);
}

/* Active State - The Glowing! */
.status-btn.active {
    background: rgba(255, 215, 0, 0.2);
    /* Gold tint */
    border-color: #ffd700;
    transform: scale(1.25);
    opacity: 1;
    filter: grayscale(0);
    box-shadow:
        0 0 15px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 69, 0, 0.4),
        inset 0 0 10px rgba(255, 215, 0, 0.2);
    animation: pulseSelected 2s infinite ease-in-out;
    z-index: 2;
}

@keyframes pulseSelected {
    0% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 69, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 69, 0, 0.6);
    }

    100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 69, 0, 0.4);
    }
}