@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-panel: #1a2332;
    --bg-panel-hover: #243044;
    --border-color: rgba(180,160,120,0.10);
    --gold: #d4a853;
    --gold-dark: #b8912f;
    --gold-light: #e6c478;
    --gold-pale: rgba(212,168,83,0.12);
    --text-primary: #f5f1e8;
    --text-secondary: #b8b2a3;
    --text-muted: #6b6558;
    --radius: 12px;
    --ease: cubic-bezier(.4,0,.2,1);
    --shadow-gold: 0 8px 30px rgba(212,168,83,0.25);
}

body { 
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif; 
    background: var(--bg-primary); 
    color: var(--text-primary); 
    min-height: 100vh; 
    background-image: radial-gradient(ellipse at 20% 30%, rgba(212,168,83,0.04) 0%, transparent 50%), radial-gradient(ellipse at 80% 70%, rgba(212,168,83,0.025) 0%, transparent 50%); 
}

::selection { background: var(--gold); color: #0a0e1a; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-panel-hover); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

a { text-decoration: none; color: inherit; transition: var(--ease); }
button { font-family: inherit; cursor: pointer; }

.skybar { position: sticky; top: 0; z-index: 1000; background: rgba(10,14,26,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); }
.skybar-inner { max-width: 1400px; margin: 0 auto; padding: 10px 20px 12px; }
.skybar-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.brand { font-size: 28px; font-weight: 900; letter-spacing: 2px; color: var(--text-primary); }
.auth-zone { display: flex; gap: 8px; }
.ghost-btn, .solid-btn { padding: 8px 20px; border-radius: 8px; font-weight: 700; font-size: 13px; border: none; display: inline-flex; align-items: center; gap: 6px; }
.ghost-btn { background: transparent; color: var(--text-secondary); border: 1px solid rgba(245,241,232,0.15); }
.ghost-btn:hover { background: rgba(245,241,232,0.05); border-color: var(--gold); color: var(--gold); }
.solid-btn { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0a0e1a; }
.solid-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.compass { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 4px; }
.compass-pill { display: flex; align-items: center; gap: 6px; padding: 8px 16px; color: var(--text-secondary); border-radius: 8px; font-weight: 600; font-size: 13px; }
.compass-pill i { font-size: 13px; color: var(--gold); }
.compass-pill:hover { color: var(--text-primary); background: var(--gold-pale); }
.compass-pill.is-current { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0a0e1a; box-shadow: var(--shadow-gold); }
.compass-pill.is-current i { color: #0a0e1a; }

.stage { display: grid; grid-template-columns: 240px 1fr 240px; gap: 20px; max-width: 1400px; margin: 20px auto 40px; padding: 0 20px; }
.wing-left, .wing-right { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 120px; height: fit-content; }
.arena { min-width: 0; }

.panel-box { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 16px; }
.panel-title { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border-color); }
.panel-title i { color: var(--gold); }

.sport-node { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; margin-bottom: 2px; border-radius: 8px; background: rgba(245,241,232,0.02); color: var(--text-secondary); font-size: 13px; border-left: 2px solid transparent; }
.sport-node span i { margin-right: 8px; width: 18px; text-align: center; color: var(--gold); }
.sport-node:hover, .sport-node.is-current { background: var(--gold-pale); color: var(--gold); border-left-color: var(--gold); }

.spotlight { display: none; }
.spotlight.is-active { display: block; animation: fadeUp .4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.doc-hero { text-align: center; padding: 28px 16px 24px; }
.doc-hero h1 { display: inline-flex; align-items: center; gap: 8px; font-size: 24px; font-weight: 800; margin-bottom: 8px; } /* MASAÜSTÜ: 24px ve 800 ağırlık */
.doc-hero h1 i { color: var(--gold); }

.article-content { margin-bottom: 20px; }
.article-content p { color: var(--text-secondary); font-size: 14px; line-height: 1.8; margin-bottom: 16px; text-align: justify; }
.article-content h3 { color: var(--gold); font-size: 18px; margin: 24px 0 12px; display: flex; align-items: center; gap: 8px; }
.article-content ul { list-style: none; margin-bottom: 20px; }
.article-content ul li { position: relative; padding: 8px 10px 8px 30px; margin-bottom: 6px; background: rgba(245,241,232,0.02); border-radius: 8px; color: var(--text-secondary); font-size: 13.5px; line-height: 1.6; }
.article-content ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 10px; color: var(--gold); font-size: 12px; }
.article-content strong { color: var(--text-primary); font-weight: 700; }
.article-content em { color: var(--text-muted); font-size: 12px; }

.cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; margin-top: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0a0e1a; font-weight: 800; font-size: 14px; box-shadow: var(--shadow-gold); transition: var(--ease); }
.cta-btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 36px rgba(212,168,83,0.32); }

.ground { background: #050810; border-top: 1px solid var(--border-color); padding: 36px 0 18px; margin-top: 32px; }
.ground-inner { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.ground-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 22px; margin-bottom: 28px; }
.ground-brand { font-size: 22px; font-weight: 900; letter-spacing: 2px; margin-bottom: 10px; color: var(--text-primary); }
.ground-col p { color: var(--text-secondary); font-size: 11px; line-height: 1.6; margin-bottom: 10px; }
.ground-col h4 { color: var(--gold); font-size: 13px; font-weight: 800; margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border-color); }
.link-line { display: flex; align-items: center; gap: 6px; color: var(--text-secondary); font-size: 11px; padding: 3px 0; }
.link-line i { color: var(--gold); width: 14px; text-align: center; font-size: 10px; }
.link-line:hover { color: var(--gold); padding-left: 4px; }
.ground-legal { text-align: center; padding-top: 18px; border-top: 1px solid rgba(245,241,232,0.03); }
.legal-badges { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.mature-tag { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #ef4444, #f87171); color: #fff; font-weight: 900; font-size: 12px; }
.safe-tag { display: inline-flex; align-items: center; gap: 5px; background: var(--gold-pale); border: 1px solid var(--gold-pale); color: var(--gold); padding: 5px 12px; border-radius: 16px; font-size: 10px; font-weight: 800; }
.ground-legal p { color: var(--text-muted); font-size: 11px; line-height: 1.5; margin-bottom: 6px; }

.mobile-menu-btn { display: none; width: 40px; height: 40px; background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 10px; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0; transition: var(--ease); }
.mobile-menu-btn span { display: block; width: 18px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--ease); }
.mobile-menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 1100; opacity: 0; transition: opacity .3s var(--ease); }
.mobile-drawer-overlay.is-open { display: block; opacity: 1; }

.mobile-drawer { position: fixed; top: 0; right: 0; width: 300px; max-width: 85vw; height: 100vh; background: var(--bg-secondary); border-left: 1px solid var(--border-color); z-index: 1200; transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column; overflow: hidden; }
.mobile-drawer.is-open { transform: translateX(0); box-shadow: -10px 0 40px rgba(0,0,0,0.5); }

.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; background: var(--bg-panel); border-bottom: 1px solid var(--border-color); }
.drawer-brand { font-size: 20px; font-weight: 900; letter-spacing: 2px; color: var(--gold); }
.drawer-close { width: 34px; height: 34px; background: rgba(245,241,232,0.05); border: 1px solid var(--border-color); border-radius: 8px; color: var(--text-secondary); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--ease); }
.drawer-close:hover { color: var(--gold); border-color: var(--gold); }

.drawer-body { flex: 1; overflow-y: auto; padding: 12px 14px 24px; }
.drawer-body::-webkit-scrollbar { width: 4px; }
.drawer-body::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }
.drawer-section { margin-bottom: 18px; }
.drawer-section h4 { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px; padding: 8px 10px; margin-bottom: 6px; background: var(--gold-pale); border-radius: 8px; border-left: 3px solid var(--gold); }
.drawer-section h4 i { font-size: 12px; }
.drawer-section .sport-node { margin-bottom: 2px; padding: 10px 12px; font-size: 13px; }

@media (max-width: 1180px) { 
    .stage { grid-template-columns: 200px 1fr; } 
    .wing-right { display: none; } 
}

@media (max-width: 900px) { 
    .mobile-menu-btn { display: flex; } 
    .stage { grid-template-columns: 1fr; } 
    .wing-left, .wing-right { display: none; } 
    .compass { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 6px 8px 10px 8px; gap: 4px; -webkit-overflow-scrolling: touch; } 
    .compass::-webkit-scrollbar { display: none; } 
    .compass-pill { flex-direction: column; align-items: center; justify-content: center; padding: 8px 6px; min-width: 64px; text-align: center; gap: 4px; border-radius: 8px; } 
    .compass-pill i { font-size: 18px; margin-bottom: 2px; } 
    .compass-pill span { display: block !important; font-size: 10px; font-weight: 600; line-height: 1.2; white-space: nowrap; letter-spacing: 0.3px; } 
    .compass-pill.is-current { color: #0a0e1a; } 
    .compass-pill.is-current i, .compass-pill.is-current span { color: #0a0e1a; } 
}

@media (max-width: 640px) { 
    .skybar-top { flex-direction: row; gap: 8px; } 
    .skybar-top .auth-zone .ghost-btn span, .skybar-top .auth-zone .solid-btn span { display: none; } 
    .doc-hero h1 { font-size: 20px; } /* MOBİL: 20px olarak sabitlendi */
    .ground-grid { grid-template-columns: 1fr 1fr; gap: 20px 16px; } 
    .ground-col:first-child { grid-column: 1 / -1; padding-bottom: 16px; margin-bottom: 4px; border-bottom: 1px solid var(--border-color); } 
    .ground-col:first-child .ground-brand { font-size: 20px; text-align: center; margin-bottom: 8px; } 
    .ground-col:first-child p { font-size: 11px; text-align: center; line-height: 1.6; max-width: 100%; } 
    .ground-col h4 { text-align: left; font-size: 12px; } 
    .link-line { font-size: 10px; justify-content: flex-start; } 
}

.site-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-top: 20px; }
.site-card { display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 20px 16px; text-align: center; transition: var(--ease); text-decoration: none; }
.site-card:hover { border-color: var(--gold); background: var(--bg-panel-hover); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.site-name { font-size: 16px; font-weight: 800; color: var(--text-primary); margin-bottom: 14px; letter-spacing: 0.5px; }
.site-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0a0e1a; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 700; width: 100%; transition: var(--ease); }
.site-card:hover .site-btn { background: #fff; color: #0a0e1a; }

@media (max-width: 640px) { 
    .site-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } 
    .site-card { padding: 16px 10px; } 
    .site-name { font-size: 14px; margin-bottom: 10px; } 
    .site-btn { font-size: 12px; padding: 6px 12px; } 
}

.faq-item { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 16px 20px; font-weight: 700; color: var(--text-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--ease); }
.faq-q:hover { background: var(--bg-panel-hover); }
.faq-q::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold); transition: transform 0.3s var(--ease); }
.faq-item.is-open .faq-q::after { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 20px; color: var(--text-secondary); font-size: 14px; line-height: 1.7; transition: max-height 0.3s var(--ease), padding 0.3s var(--ease); }
.faq-item.is-open .faq-a { max-height: 500px; padding: 0 20px 20px 20px; }

.lead-text { color: var(--text-secondary); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.lead-text i { color: var(--gold); margin-right: 10px; }
.lead-text strong { color: var(--text-primary); }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin: 30px 0; }
.feature-card { background: var(--bg-panel); padding: 24px 20px; border-radius: var(--radius); border-left: 4px solid var(--gold); transition: var(--ease); }
.feature-card:hover { background: var(--bg-panel-hover); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.feature-card i { font-size: 28px; color: var(--gold); margin-bottom: 12px; display: block; }
.feature-card h4 { color: var(--text-primary); font-size: 16px; margin-bottom: 8px; font-weight: 700; }
.feature-card p { margin: 0; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.section-title { color: var(--gold); font-size: 20px; font-weight: 800; margin: 28px 0 14px; display: flex; align-items: center; gap: 10px; }
.section-title i { color: var(--gold); }
.content-text { color: var(--text-secondary); font-size: 14px; line-height: 1.8; margin-bottom: 16px; text-align: justify; }
.content-text i { color: var(--gold); margin: 0 4px; }
.content-text strong { color: var(--text-primary); }

.check-list { list-style: none; padding: 0; margin: 15px 0 20px; }
.check-list li { padding: 10px 14px; margin-bottom: 6px; background: var(--bg-panel); border-radius: 8px; color: var(--text-secondary); font-size: 13px; line-height: 1.6; display: flex; align-items: center; gap: 10px; }
.check-list li i { color: var(--gold); }

.highlight-box { background: var(--gold-pale); padding: 20px 24px; border-radius: var(--radius); border-left: 5px solid var(--gold); margin: 25px 0; }
.highlight-box p { margin: 0; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.highlight-box i { color: var(--gold); margin-right: 10px; }
.highlight-box strong { color: var(--text-primary); }

.quote-text { color: var(--text-secondary); font-size: 14px; line-height: 1.8; margin-bottom: 16px; text-align: justify; }
.quote-text i:first-child { color: var(--gold); font-size: 22px; margin-right: 10px; vertical-align: middle; opacity: 0.5; }
.quote-text i:last-child { color: var(--gold); margin: 0 4px; }

.cta-box { text-align: center; margin-top: 30px; padding: 24px 20px; background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary)); border: 1px solid var(--border-color); border-radius: var(--radius); }
.cta-box i:first-child { font-size: 32px; margin-bottom: 12px; display: block; color: var(--gold); }
.cta-box p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.cta-box i:last-child { color: #ef4444; margin: 0 5px; display: inline; font-size: inherit; }

.inline-link { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(212, 168, 83, 0.3); transition: var(--ease); }
.inline-link:hover { color: var(--gold-light); text-decoration-color: var(--gold); }

.legal-footer { color: var(--text-muted); font-size: 12px; text-align: center; margin-top: 30px; border-top: 1px solid var(--border-color); padding-top: 20px; }
.legal-footer i { color: var(--gold); }

@media (max-width: 640px) {
    .feature-grid { grid-template-columns: 1fr; gap: 14px; }
    .feature-card { padding: 18px 16px; }
    .feature-card h4 { font-size: 15px; }
    .feature-card p { font-size: 12px; }
    .section-title { font-size: 17px; }
    .cta-box { padding: 18px 14px; }
    .cta-box p { font-size: 13px; }
    .highlight-box { padding: 16px 18px; }
    .highlight-box p { font-size: 13px; }
}