/*  1. GENEL AYARLAR  */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f172a;
    color: white;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

a { text-decoration: none; }

/*  2. NAVİGASYON  */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

/* Logo ve Rozet Grubunu Yan Yana Tutar */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* --- [ÖZEL] ROZETLERİM YAZISI VE KAPSAYICISI --- */
.badge-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 10px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1); /* Logo ile yazı arasındaki ince çizgi */
}

/* Tıklanabilir "ROZETLERİM" Yazısının CSS'i */
.badge-link {
    color: #22c55e; /* Logo ile aynı yeşil tonu */
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.3); /* Hafif yeşil parlama */
    transition: 0.4s;
    cursor: pointer;
}

.badge-link:hover {
    color: #ffffff; /* Üzerine gelince beyaza döner */
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.8); /* Parlama şiddeti artar */
}

/* Rozet Simgelerinin (🏅) Olduğu Kutu */
#header-badges {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Tekil Rozet Simgesi (🏅) Stili */
.header-badge-item {
    font-size: 20px;
    filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.5));
    animation: badgeFloat 3s ease-in-out infinite; /* Süzülme animasyonu */
}

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

/* --- [NAV LİNKLERİ] --- */
.logo { font-size: 24px; font-weight: bold; letter-spacing: 2px; }
.logo span { color: #22c55e; }

/* Sağ taraftaki "Ana Sayfa" yazısının CSS'i */
.nav-links a { color: #94a3b8; margin-left: 20px; font-size: 14px; transition: 0.3s; }
.nav-links a:hover { color: #22c55e; }

/* "Eğitimde Neler Var?" Butonunun CSS'i */
.nav-btn {
    background: #22c55e;
    color: black !important;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}

.nav-btn:hover {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    transform: translateY(-2px);
}

/*  3. HERO & NEON BUTON  */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('images/1.jpg') center/cover no-repeat;
}

.glitch-title {
    font-size: 55px;
    font-weight: 900;
    color: #22c55e;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
    margin: 0;
    text-align: center;
}

.btn-neon {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 45px;
    background: rgba(34, 197, 94, 0.8);
    color: #000;
    font-weight: 900;
    border-radius: 50px;
    letter-spacing: 2px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
    transition: 0.4s;
}

/* 4. BİLGİ ŞERİDİ  */
.info-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(15, 23, 42, 0.8);
    padding: 25px 0;
    width: 100%;
    border-top: 1px solid rgba(34, 197, 94, 0.3);
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    gap: 60px;
    flex-wrap: wrap;
}

.info-item {
    font-size: 16px;
    font-weight: bold;
    color: #cbd5e1;
    display: flex;
    align-items: center;
}

.info-item strong {
    color: #22c55e;
    font-size: 22px;
    margin-right: 12px;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/*  5. ÖZELLİK BÖLÜMÜ  */
.feature-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 10%;
    background: #0f172a;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.feature-image-wrapper {
    flex: 0 0 45%;
    max-width: 500px;
    min-width: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 15px 5px rgba(34, 197, 94, 0.1);
    transition: 0.5s ease;
}

.feature-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(90%);
}

.feature-text-block {
    flex: 1;
    min-width: 300px;
}

.feature-text-block h2 {
    font-size: 38px;
    color: #22c55e;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.feature-check-list { list-style: none; padding: 0; }
.feature-check-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-check-list li::before {
    content: '✔';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px; height: 25px;
    background: #22c55e;
    color: black;
    border-radius: 5px;
    margin-right: 15px;
}
/* --- ROADMAP SAYFASI ÖZEL STİLLERİ --- */
.roadmap-page {
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.week-container {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 50px;
}

.week-title {
    font-size: 24px;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.week-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.5), transparent);
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.roadmap-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.roadmap-card:hover {
    border-color: #22c55e;
    transform: translateY(-5px);
    background: rgba(34, 197, 94, 0.05);
}

.roadmap-card h4 {
    color: #22c55e;
    margin: 0 0 10px 0;
    font-size: 13px;
    letter-spacing: 1px;
}

.badge-card {
    grid-column: 1 / -1;
    border: 1px dashed #fbbf24;
    background: rgba(251, 191, 36, 0.05);
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    color: #fbbf24;
    font-weight: bold;
}

.final-gold {
    background: rgba(34, 197, 94, 0.1) !important;
    border-color: #22c55e !important;
    color: #22c55e !important;
}

.final-cert {
    margin-top: 60px;
    text-align: center;
    color: #94a3b8;
    font-size: 18px;
}

/* 6. DASHBOARD HEADER (HUD Tasarımı)*/
   .dashboard-header {
    width: 100%;
    padding: 100px 0 30px 0;
    text-align: center;
}

.dashboard-header h1 {
    font-size: 64px; 
    font-weight: 900;
    letter-spacing: 6px;
    margin: 0;
    text-transform: uppercase;
    
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5), 
                 0 0 30px rgba(34, 197, 94, 0.3),
                 0 0 60px rgba(34, 197, 94, 0.2);
}

.dashboard-header p {
    color: #64748b;
    margin-top: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

/*  7. İSTATİSTİK PANELLERİ */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 60px 0;
    width: 100%;
}

.stat-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 20px 0;
    width: 220px; 
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


.stat-card::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px; width: 15px; height: 15px;
    border-bottom: 2px solid #22c55e;
    border-right: 2px solid #22c55e;
    border-radius: 0 0 12px 0;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.stat-value {
    color: #22c55e;
    font-size: 34px;
    font-weight: 900;
    font-family: 'Courier New', monospace;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

    /* ANA SAYFA için Ana Sayfa Butonu */
  
.home-btn {
    position: fixed;
    top: 25px;
    left: 25px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2000;
    transition: 0.3s;
}

.home-btn:hover {
    background: #22c55e;
    color: #000;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

/*  7. İSTATİSTİK KARTLARI */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;    gap: 20px;
    margin-bottom: 50px;
    width: 100%;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid #22c55e;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    min-width: 130px;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}

.stat-value {
    color: #22c55e;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- 8. GÜNLER PANELİ --- */
.days-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    width: 100%;
    padding: 0 5% 50px 5%;
    box-sizing: border-box;
}

.day-button {
    flex: 0 0 130px;
    width: 130px;
    height: 130px;
    border-radius: 20px;
    background: url('images/3.png') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    filter: brightness(30%) grayscale(50%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    color: white;
    font-weight: bold;
}

.day-button.completed { filter: brightness(100%); border: 2px solid #22c55e; }
.day-button.active { 
    filter: brightness(110%); 
    border: 2px solid #fbbf24; 
    transform: scale(1.08); 
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

/* --- 9. FOOTER --- */
footer {
    padding: 50px 0;
    text-align: center;
    width: 100%;
}

.footer-line {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    margin: 0 auto 20px;
}
/*  --Ana Sayfa Butonu-- */
.home-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #020617;
    color: #22c55e;
    border: 1px solid #22c55e;
    padding: 10px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    z-index: 999;
    transition: 0.3s;
}

.home-btn:hover {
    background: #22c55e;
    color: black;
    transform: scale(1.05);
}
.lesson-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 0 50px rgba(0,0,0,0.7);
}

.lesson-content {
    line-height: 1.8;
    color: #cbd5e1;
    font-size: 18px;
}

.lesson-content h2 {
    color: #22c55e;
    border-left: 4px solid #22c55e;
    padding-left: 15px;
    margin-top: 40px;
    text-transform: uppercase;
    font-size: 24px;
}

.scenario-box {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 25px;
    margin: 25px 0;
    border-radius: 12px;
    position: relative;
}

.scenario-box::before {
    content: '📌 ANALİZ & SENARYO';
    display: block;
    color: #22c55e;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 10px;
}

.warning-box {
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid #ef4444;
    padding: 15px 20px;
    margin: 20px 0;
    color: #f87171;
    font-style: italic;
}

#quiz-area {
    display: none;
    margin-top: 50px;
    padding: 40px;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 20px;
    border: 2px solid #fbbf24;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.answer-input {
    width: 100%;
    padding: 18px;
    background: #0f172a;
    border: 2px solid #334155;
    color: #22c55e;
    border-radius: 10px;
    margin: 25px 0;
    font-size: 18px;
    text-align: center;
    letter-spacing: 2px;
}

.answer-input:focus {
    border-color: #22c55e;
    outline: none;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}
/* ============================================================
   SİBER HUD ROZET İKONLARI (NAVBAR)
   ============================================================ */

/* 1. Rozetlerin Dizildiği Kutu (Container) */
#navbar-badges-container {
    display: flex;
    gap: 8px; 
    align-items: center;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1); 
}

/* 2. Rozet İkonunun Temel Hali (KÜÇÜK) */
.nav-badge-icon {
    width: 24px;   
    height: 24px;  
    border-radius: 50%; 
    border: 2px solid rgba(34, 197, 94, 0.3); 
    padding: 2px;
    background: rgba(15, 23, 42, 0.8); 
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.2); 
    /* Pürüzsüz animasyonlar için kritik */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    cursor: pointer; 
    object-fit: cover; 
}

/* 3. Fare ile Üzerine Gelince (HOVER) - BÜYÜME VE PARLAMA */
.nav-badge-icon:hover {
    transform: scale(2.5);
    border-color: #22c55e; 
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.8), 0 0 40px rgba(34, 197, 94, 0.4); 
    z-index: 100; 
    position: relative; 
}

/* 4. Tıklayınca (ACTIVE) - HAFİF TİTREŞİM VEYA BASILMA HİSSİ */
.nav-badge-icon:active {
    transform: scale(2.2) translateY(2px); 
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);