/* --- Çekirdek Değişkenler ve Renk Paleti --- */
:root {
    --bg-dark: #06070b;
    --bg-surface: rgba(13, 16, 27, 0.65);
    --bg-surface-hover: rgba(22, 27, 46, 0.85);
    --border-color: rgba(255, 255, 255, 0.05);
    
    /* Mor ve Yeşil yerine Kırmızı ve Turuncu tonları atandı */
    --color-primary: #ff4500; /* Siber Neon Kırmızı-Turuncu (OrangeRed) */
    --color-primary-glow: rgba(255, 69, 0, 0.4);
    --color-secondary: #f97316; /* Canlı Turuncu */
    --color-secondary-glow: rgba(249, 115, 22, 0.25);
    
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
}

/* --- Temel Sıfırlama Kuralları --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* --- Özelleştirilmiş Scrollbar Tasarımı --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 69, 0, 0.15); /* Yeni birincil renge uyarlandı */
    border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary-glow);
}

/* --- Arka Plan Ortam Aydınlatmaları --- */
.bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(120px);
}
.glow-primary {
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.12) 0%, rgba(0,0,0,0) 70%); /* Kırmızı-Turuncu parlama */
}
.glow-secondary {
    top: 700px;
    left: -250px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, rgba(0,0,0,0) 70%); /* Turuncu parlama */
}

/* --- Navigasyon Başlığı (Header) --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 7, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}
.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}
.logo-accent {
    color: var(--color-primary);
    text-shadow: 0 0 20px var(--color-primary-glow);
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-item {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.nav-item:hover, .nav-item.active-nav {
    color: var(--text-main);
}

/* --- Kahraman (Hero) Giriş Alanı --- */
.hero-section {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 24px 80px 24px;
    text-align: center;
    position: relative;
}
.hero-content {
    max-width: 850px;
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 69, 0, 0.08); /* Kırmızı tonuna uyarlandı */
    border: 1px solid rgba(255, 69, 0, 0.25);
    color: #ffaa7f; /* Yazı rengi yumuşatılmış turuncu yapıldı */
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 68px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.text-gradient {
    /* Başlık yazısı için Kırmızıdan Turuncuya geçiş efekti */
    background: linear-gradient(135deg, #ffedd5 0%, #ff4500 60%, #7c2d12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 44px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Premium Buton Tasarımları --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border: none;
    outline: none;
}
.btn-primary {
    background: var(--color-primary);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 25px rgba(255, 69, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(255, 69, 0, 0.5);
    background: #ff5714; /* Hover durumunda biraz daha açık kırmızı-turuncu */
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}
.btn-glow-effect:hover {
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.25);
}

/* --- Tierlist Panel Düzeni --- */
.tierlist-section {
    padding: 100px 24px;
    position: relative;
}
.section-container {
    max-width: 1100px;
    margin: 0 auto;
}
.section-header {
    margin-bottom: 44px;
    text-align: left;
}
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 640px;
}

/* --- Kit Navigasyon Sekmeleri (7 Seviye) --- */
.tabs-container {
    background: rgba(8, 10, 18, 0.6);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 18px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.tabs-scroll-wrapper {
    display: flex;
    gap: 6px;
    overflow-x: auto;
}
.tabs-scroll-wrapper::-webkit-scrollbar {
    display: none;
}
.kit-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 14px 26px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    flex: 1;
    justify-content: center;
}
.kit-tab i {
    font-size: 15px;
    transition: transform 0.2s ease;
}
.kit-tab:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.02);
}
.kit-tab.active {
    background: var(--bg-surface-hover);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.kit-tab.active i {
    color: var(--color-primary);
    transform: scale(1.15);
}

/* --- Boş Liste & Discord Bilgilendirme Kutusu --- */
.leaderboard-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}
.empty-state-box {
    max-width: 620px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-out;
}
.empty-icon-wrapper {
    background: rgba(255, 69, 0, 0.06); /* Kırmızı tonuna uyarlandı */
    border: 1px solid rgba(255, 69, 0, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.05);
}
.empty-icon-wrapper i {
    font-size: 32px;
    color: var(--color-primary);
}
.empty-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.empty-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.btn-discord-cta {
    background: #5865F2;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
}
.btn-discord-cta:hover {
    background: #4752c4;
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.45);
    transform: translateY(-2px);
}

/* --- Premium Footer Kuralları --- */
.main-footer {
    border-top: 1px solid var(--border-color);
    background: #030407;
    padding: 54px 24px;
    text-align: center;
    margin-top: 100px;
}
.footer-content {
    max-width: 600px;
    margin: 0 auto;
}
.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.footer-copyright {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}
.footer-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* --- Animasyon Tanımlamaları --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* --- Responsive (Mobil) Düzenlemeler --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 44px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .section-title {
        font-size: 30px;
    }
    .leaderboard-wrapper {
        padding: 40px 20px;
    }
    .kit-tab {
        padding: 12px 18px;
        font-size: 13px;
    }
    .empty-title {
        font-size: 20px;
    }
}