/* SABİT NAVBAR */
.top-navbar { position: absolute; top: 0; left: 0; width: 100%; padding: 25px 0; z-index: 1000; }
.nav-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; color: var(--text-main); }
.nav-logo img { height: 30px; }

/* ÜSTTEKİ DİSCORD BUTONU (Orijinal Discord Rengi Yapıldı) */
.nav-btn { 
    background: #5865F2; 
    color: #fff !important; 
    padding: 10px 20px; 
    border-radius: 6px; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-weight: 500; 
    font-size: 0.95rem; 
    transition: background-color 0.3s ease;
}
.nav-btn:hover { background-color: #4752c4; }

/* HERO BÖLÜMÜ */
.hero-section { padding: 180px 20px 80px; display: flex; justify-content: center; text-align: center; background-color: var(--bg-body); }
.hero-content { max-width: 700px; }
.main-logo { width: 100px; margin-bottom: 20px; }
.hero-content h1 { font-size: 2.8rem; font-weight: 700; margin-bottom: 15px; color: var(--text-main); }
.hero-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 50px; }

/* SAYAÇ KUTULARI */
.countdown-container { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.time-box { background: var(--bg-box); border: 1px solid var(--border-color); border-radius: 8px; padding: 20px 15px; min-width: 110px; }
.time-box span { display: block; font-size: 3rem; font-weight: 700; color: var(--text-main); line-height: 1; margin-bottom: 5px; font-variant-numeric: tabular-nums; }
.time-box p { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; }


/* ====================================================
   ESTETİK & ŞEFFAF DİSCORD DUYURU PANELİ 
   ==================================================== */
.discord-banner {
    background: transparent; /* Arka plan tamamen kaldırıldı */
    border: none;            /* Çerçeve kaldırıldı */
    box-shadow: none;        /* Gölge kaldırıldı */
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center; /* Ortaya şık bir şekilde hizalandı */
    gap: 40px;               /* Yazı ve buton arasına estetik bir boşluk */
    max-width: 700px;
    margin: 0 auto;
}

.discord-banner-text {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.discord-banner-text i {
    font-size: 3.2rem;     /* İkon biraz daha vurgulandı */
    color: #5865f2;        /* Discord Rengi */
}

/* Yazı renkleri artık sabit değil, gece/gündüz temasına uyum sağlar */
.discord-texts h4 {
    color: var(--text-main); 
    font-size: 1.2rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.discord-texts p {
    color: var(--text-muted); 
    font-size: 0.95rem;
    margin: 0;
}

/* Katıl Butonu */
.discord-join-btn {
    background-color: #5865f2;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.25); /* Butona çok hafif, estetik bir parlama */
}

.discord-join-btn:hover {
    background-color: #4752c4; 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}


/* SSS BÖLÜMÜ */
.faq-section { background-color: var(--bg-body); padding: 20px 20px 60px; }
.faq-container { max-width: 700px; margin: 0 auto; }
.faq-container h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; color: var(--text-main); }
.faq-item { margin-bottom: 10px; border: 1px solid var(--border-color); border-radius: 6px; background: var(--bg-box); }
.faq-question { width: 100%; padding: 20px; background: transparent; border: none; text-align: left; color: var(--text-main); font-size: 1.05rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-answer p { padding-bottom: 20px; color: var(--text-muted); line-height: 1.5; }

/* SAĞ ALT TEMA BUTONU */
.theme-toggle-btn { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; border-radius: 50%; background: var(--bg-box); color: var(--text-main); border: 1px solid var(--border-color); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.theme-toggle-btn:hover { background: var(--border-color); }

/* MOBİL UYUMLULUK */
@media (max-width: 650px) {
    .discord-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .discord-banner-text {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}