/* Temel Değişkenler ve Renk Paleti */
:root {
    --bg-dark: #070b13;
    /* Çok koyu, karanlık arka plan */
    --gold: #3f1da7;
    /* YENİ RENK: Mor tonu */
    --gold-hover: #5433c2;
    --text-main: #ffffff;
    --text-muted: #a0aec0;

    /* Cam Efekti / Glassmorphism */
    --panel-bg: rgba(12, 17, 28, 0.65);
    --panel-border: rgba(63, 29, 167, 0.25);
    /* #3f1da7 renginin şeffaf hali */
    --glass-blur: blur(20px);

    /* Fontlar */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-cursive: 'Great Vibes', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    /* Yatay kaydırmayı engelle, dikey kaydırmaya izin ver */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Canvas Arka Plan Ağ Etkileşimi */
#bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    /* Çizgilerin parlaması için şeffaflık */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Tekrar Eden Sınıflar */
.glass-panel {
    background: var(--panel-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    /* Safari uyumu */
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* --- ÜST MENÜ (NAVBAR) --- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.logo-v {
    font-family: var(--font-cursive);
    font-size: 3.2rem;
    font-weight: 400;
    color: #B266FF;
    line-height: 1;
    text-shadow: 0 0 15px rgba(178, 102, 255, 0.5);
}

.logo-text h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--text-muted);
}

.online-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

html {
    scroll-behavior: smooth;
}

/* Arkaplan Animasyonu için Canvas */
/* Çarpan Mor Nokta Animasyonu */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(63, 29, 167, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(63, 29, 167, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(63, 29, 167, 0);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #B266FF;
    text-shadow: 0 0 10px rgba(178, 102, 255, 0.4);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Navigasyon Arama Butonu (Vennycommunity Stili) */
.search-btn {
    background: transparent;
    border: 1px solid rgba(178, 102, 255, 0.2);
    /* Neon mor %20 saydam kenarlık */
    color: #B266FF;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
}

.search-btn:hover {
    background: rgba(178, 102, 255, 0.1);
    /* Neon mor arka plan */
    border-color: rgba(178, 102, 255, 0.4);
    /* Daha belirgin kenarlık */
    color: #d199ff;
    /* Daha parlak ikon rengi */
    box-shadow: 0 0 10px rgba(178, 102, 255, 0.15);
}

.login-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.login-btn i {
    font-size: 1rem;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    color: var(--gold);
}

/* Discord Buton Modifikasyonu */
a.login-btn.discord {
    text-decoration: none;
}

.nav-actions a.login-btn.discord:hover {
    background: rgba(178, 102, 255, 0.15) !important;
    /* Parlak mor arkaplan tonu */
    border-color: #B266FF !important;
    /* Parlak Elektrik Moru */
    color: #B266FF !important;
    box-shadow: 0 0 12px rgba(178, 102, 255, 0.5) !important;
    /* Neon parlama */
}

.nav-actions a.login-btn.discord:hover i {
    color: #B266FF !important;
}


/* --- YAN DİKEY YAZILAR --- */
.edge-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    writing-mode: vertical-rl;
    z-index: 5;
    opacity: 0.6;
}

.left-edge {
    left: 25px;
    transform: translateY(-50%) rotate(180deg);
}

.right-edge {
    right: 25px;
}

.edge-text .dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-main);
    border-radius: 50%;
}


/* --- ANA İÇERİK (HERO) --- */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6rem;
    z-index: 1;
}

.hero-content {
    display: flex;
    width: 100%;
    max-width: 1500px;
    align-items: center;
    justify-content: space-between;
}

.text-content {
    flex: 1;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-title {
    font-family: var(--font-cursive);
    font-size: 7.5rem;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-main);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

.season {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(63, 29, 167, 0.3);
    letter-spacing: -1px;
}

.roman {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: 400;
}

.subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.subtitle .line {
    width: 3px;
    height: 25px;
    background-color: var(--gold);
}

.subtitle p {
    font-family: var(--font-heading);
    letter-spacing: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #e2e8f0;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(63, 29, 167, 0.1);
    border: 1px solid rgba(63, 29, 167, 0.5);
    color: var(--text-main);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.apply-btn:hover {
    border-color: var(--gold);
    background: rgba(63, 29, 167, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(63, 29, 167, 0.4);
}

.apply-btn i {
    color: var(--gold);
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-main);
    transform: scale(1.05);
}


/* --- VİDEO PANELİ --- */
.video-container {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    margin-right: -2%;
}

.video-wrapper {
    width: 100%;
    max-width: 680px;
    padding: 1.5rem;
    animation: fadeLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.video-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    color: #cbd5e1;
    font-weight: 500;
}

.v-icon-small {
    background: linear-gradient(135deg, #1f2937, #111827);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-family: var(--font-cursive);
    font-size: 1.2rem;
    color: var(--gold);
}

.premiere-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: rgba(255, 0, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.red-dot {
    width: 6px;
    height: 6px;
    background-color: #ff3333;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3333;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.3;
    }
}

.video-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d121c, #05080c);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.large-v {
    font-family: var(--font-cursive);
    font-size: 17rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.02);
    text-shadow: 0 0 40px rgba(63, 29, 167, 0.05);
    position: relative;
    user-select: none;
}

.v-number {
    position: absolute;
    bottom: 35px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(63, 29, 167, 0.4);
}

.youtube-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff0000;
    font-size: 4.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.4));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
    background: white;
    /* İkonun ortası beyaz görünsün diye */
    border-radius: 10px;
}

.video-frame:hover .youtube-btn {
    transform: translate(-50%, -50%) scale(1.15);
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.6));
}

.video-footer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-footer i {
    color: #fff;
    font-size: 1.1rem;
}


/* --- ÇEREZ / GİZLİLİK BİLDİRİMİ POPUP --- */
.privacy-popup {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    padding: 2rem;
    text-align: center;
    z-index: 100;
    border-bottom: 3px solid var(--gold);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.privacy-popup.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 30px);
}

.privacy-popup h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.privacy-popup p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.privacy-popup span {
    color: var(--gold);
    text-decoration: underline;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #261168);
    color: #fff;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    box-shadow: 0 5px 20px rgba(63, 29, 167, 0.5);
    transform: translateY(-2px);
}

/* Mobil / Responsive Düzenlemeler */
@media (max-width: 1400px) {
    .main-title {
        font-size: 6.5rem;
    }

    .season {
        font-size: 2.8rem;
    }

    .video-wrapper {
        max-width: 600px;
    }

    .hero-section {
        padding: 0 4rem;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
        margin-top: 4rem;
    }

    .action-buttons {
        justify-content: center;
    }

    .video-container {
        justify-content: center;
        margin-right: 0;
    }

    body {
        overflow-y: auto;
        height: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 4rem;
    }

    .season {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 80px 2rem 50px;
    }

    .navbar {
        padding: 1.5rem 2rem;
    }

    .edge-text {
        display: none;
    }

    .privacy-popup {
        width: 90%;
    }
}

/* ========================================================================= */
/* --- KURALLAR SAYFASI ÖZEL STİLLERİ --- */
/* ========================================================================= */

.rules-page {
    overflow-y: auto;
    /* Grid içeriği kayabileceği için scroll'u açıyoruz */
    height: auto;
    min-height: 100vh;
}

.rules-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 4rem 6rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    animation: fadeUp 0.8s ease forwards;
}

/* Üst Kısım: Başlık & Arama */
.rules-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.rules-title-area h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.rules-title-area p {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.rules-search {
    position: relative;
    width: 400px;
}

.rules-search i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.rules-search input {
    width: 100%;
    background: rgba(12, 17, 28, 0.5);
    border: 1px solid var(--panel-border);
    border-radius: 30px;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-blur);
}

.rules-search input::placeholder {
    color: rgba(160, 174, 192, 0.5);
}

.rules-search input:focus {
    background: rgba(12, 17, 28, 0.8);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(63, 29, 167, 0.2);
}

/* Izgara Düzeni (Sol Sidebar + Sağ İçerik) */
.rules-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Yan Menü (Sidebar) */
.rules-sidebar {
    padding: 1.5rem;
    border-radius: 16px;
}

.sidebar-title,
.content-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Seçili Menü Özel Rengi */
.category-item.active {
    background: linear-gradient(90deg, rgba(63, 29, 167, 0.15) 0%, transparent 100%);
    border-left: 3px solid var(--gold);
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.toggle-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.category-item.expanded .toggle-icon {
    transform: rotate(90deg);
    color: var(--gold);
}

.category-item.active .cat-header {
    color: var(--gold-hover);
}

.cat-num {
    background: #0f1016;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.75rem;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.category-item.active .cat-num {
    background: #4625b5;
    /* Aktif Kategori Özel Mor */
    color: #fff;
    border-color: #4625b5;
    box-shadow: 0 0 10px rgba(63, 29, 167, 0.4);
}

/* Alt Liste (Açılır/Kapanır) */
.sub-category-list {
    list-style: none;
    padding: 0 1rem 1rem 3.5rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.category-item.expanded .sub-category-list {
    display: flex;
}

.sub-category-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
}

.sub-category-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: background 0.3s ease;
    margin-right: -4px;
}

.sub-category-list li:hover::before,
.sub-category-list li.active::before {
    background: var(--gold);
}

.sub-category-list li:hover,
.sub-category-list li.active {
    color: #fff;
}

.sub-category-list .sub-num {
    background: #0f1016;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.3s ease;
}

.sub-category-list li.active .sub-num {
    background: #4625b5;
    /* Aktif Alt Kategori Özel Mor */
    border-color: #4625b5;
    color: #fff;
    box-shadow: 0 0 10px rgba(63, 29, 167, 0.4);
}

/* Sağ İçerik Alanı (Kartlar ve Accordion) */
.rules-content {
    padding: 2.5rem;
    border-radius: 16px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.rule-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Kırmızı Ok İşareti için Sol Border */
.rule-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.rule-card:hover {
    background: rgba(63, 29, 167, 0.08);
    /* Mor Hover Efekti */
    border-color: rgba(63, 29, 167, 0.3);
}

.rule-card:hover::before {
    transform: scaleY(1);
}

.rule-card.active {
    grid-column: 1 / -1;
}

/* Accordion Başlık Alanı */
.accordion-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
}

/* Kart İçindeki Mor Buton İkon */
.icon-box {
    width: 44px;
    height: 44px;
    background: #0f1016;
    /* Görseldeki gibi koyu siyah/lacivert arkaplan */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.rule-card:hover .icon-box {
    background: rgba(63, 29, 167, 0.4);
    color: #fff;
    border-color: rgba(63, 29, 167, 0.6);
}

.rule-card.active .icon-box {
    background: #4625b5;
    /* Görseldeki aktif net mor renk */
    color: #fff;
    box-shadow: 0 0 15px rgba(63, 29, 167, 0.5);
    border-color: #4625b5;
}

.rule-card.active .icon-box i {
    transform: rotate(90deg);
    /* Kutu Açılınca Ok Aşağı Dönsün */
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.card-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-hover);
}

.card-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Accordion Açılır İçerik Bölgesi */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding 0.5s ease-out;
    opacity: 0;
    background: rgba(0, 0, 0, 0.15);
    /* Açılan bölge hafif daha koyu */
}

.rule-card.active .accordion-content {
    opacity: 1;
}

.content-inner {
    padding: 0 1.5rem 1.5rem 5.5rem;
    /* İkonun hizzasına gelecek şekilde soldan offset */
    color: rgba(255, 255, 255, 0.85);
    /* Hafif soluk font rengi okumayı kolaylaştırır */
    font-size: 0.9rem;
    line-height: 1.8;
}

.content-inner p {
    margin-bottom: 1rem;
}

.content-inner .helper-text {
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1rem;
}

.content-inner ul {
    list-style: none;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.content-inner ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    padding-left: 20px;
}

/* Maddeler Özel Gri Ok İkonu */
.content-inner ul li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.4;
}

.content-inner .update-date {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.8rem;
    width: 100%;
}

/* Kurallar Sayfası Responsive Düzenlemeleri */
@media (max-width: 1100px) {
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .rules-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .rules-search {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .rules-container {
        padding: 5rem 2rem 3rem;
    }

    .rules-title-area h1 {
        font-size: 2.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CINEMATIC EXPERIENCE & FOOTER
   ========================================== */

.cinematic-section {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 20, 0.5));
}

.cinematic-header {
    text-align: center;
    margin-bottom: 60px;
}

.cinematic-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 5px;
}

.cinematic-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    letter-spacing: 12px;
    margin-left: 12px;
    /* Denge için */
    text-transform: uppercase;
}

.slider-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    padding: 0 20px;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.slide {
    width: 320px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    filter: brightness(0.4);
    cursor: pointer;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.slide.active {
    width: 420px;
    height: 580px;
    filter: brightness(1);
    border: 1px solid var(--gold);
    box-shadow: 0 0 50px rgba(184, 153, 94, 0.15);
    z-index: 2;
}

.slide.active .slide-image:hover {
    transform: scale(1.05);
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    border: 1px solid rgba(184, 153, 94, 0.3);
    pointer-events: none;
}

.slider-nav {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(184, 153, 94, 0.3);
}

.cinematic-footer-text {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
}

/* Footer Stilleri */
.main-footer {
    padding: 100px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to top, rgba(10, 10, 20, 0.8), transparent);
}

.social-links {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
}

.social-item {
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-item:hover {
    opacity: 1;
    transform: translateY(-8px) scale(1.1);
    text-shadow: 0 0 25px rgba(184, 153, 94, 0.6);
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 30px;
    text-align: center;
}

.version-info {
    padding: 6px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.15);
    font-family: 'Inter', sans-serif;
    letter-spacing: 1.5px;
}

/* --- GLOBAL SEARCH MODAL (BİREBİR KOPYALAMA) --- */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 12, 16, 0.95);
    /* Çok koyu lacivert arkplan */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    display: flex;
    opacity: 1;
}

.search-modal-content {
    width: 90%;
    max-width: 650px;
    background: #11141d;
    /* Model koyu rengi */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* İnce dış kenarlık */
    border-radius: 12px;
    padding: 0;
    /* İç paddingleri alan bazında böleceğiz */
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Yatay ayıran çizgi */
}

.search-modal-header .header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Profil Arama İkon Kutusu */
.search-modal-header .header-left i.fa-search {
    background: rgba(178, 102, 255, 0.15);
    /* Neon Mor ikon arkaplanı */
    color: #B266FF;
    /* Elektrik Moru */
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.search-modal-header h3 {
    font-family: var(--font-heading);
    color: #B266FF;
    /* Elektrik Moru başlık */
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.search-modal-header span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    /* Kullanıcı veya karakter ara */
    font-weight: 400;
}

.close-search-btn {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-search-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.search-input-wrapper {
    position: relative;
    margin: 24px;
    margin-bottom: 20px;
}

.search-input-wrapper i.fa-search {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #B266FF;
    /* İkon elektrik moru */
    font-size: 1.1rem;
    opacity: 0.9;
}

.search-input-wrapper input {
    width: 100%;
    background: #0d0f16;
    /* Çok koyu lacivert içi */
    border: 1px solid rgba(80, 120, 220, 0.4);
    /* Focus çizgisi kenar stiline benzer mavi ton */
    padding: 16px 20px 16px 50px;
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

/* Elektrik Moru arka plan efekti */
.search-input-wrapper input:focus {
    border-color: #B266FF;
    box-shadow: 0 0 15px rgba(178, 102, 255, 0.4), 0 0 0 1px #B266FF;
    /* Dış glow eklendi */
}

.search-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px 24px 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    /* En az 2 karakter girin fontu */
}

/* Modal ESC Kutu Tasarımı */
.esc-hint {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-modal-footer kbd {
    background: rgba(255, 255, 255, 0.08);
    /* ESC kutusu gri tonu */
    padding: 4px 8px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-results {
    max-height: 350px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0 15px 24px 24px;
    /* Scrollbarla çakışmamak için padding ayarı */
    gap: 10px;
}

/* Scrollbar özelleştirme */
.search-results::-webkit-scrollbar {
    width: 5px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.search-result-item {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-result-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.search-result-item h4 {
    margin: 0;
    font-size: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.search-result-item span.loc {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Scroll Reveal Animasyonu */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}