/* =============================================
   RENK PALETİ
   ============================================= */
:root {
    --color-map:    #C8A055;
    --color-tech:   #4ECDC4;
    --color-sport:  #E8622A;

    --bg:           #0C0C0C;
    --bg-card:      #141414;
    --bg-elevated:  #181818;

    --text-primary: #F0EBE3;
    --text-muted:   #7a7a7a;
    --text-faint:   #444;

    --border:       rgba(255,255,255,0.07);
    --prose-width:  680px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'Epilogue', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--color-sport); }

/* Okuma ilerleme çubuğu */
.reading-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--color-sport), var(--color-map));
    z-index: 2000;
    transition: width 0.1s linear;
}

/* =============================================
   YARDIMCI RENKLER
   ============================================= */
.map-color   { color: var(--color-map)   !important; }
.tech-color  { color: var(--color-tech)  !important; }
.sport-color { color: var(--color-sport) !important; }

.map-bg   { background: var(--color-map)   !important; }
.tech-bg  { background: var(--color-tech)  !important; }
.sport-bg { background: var(--color-sport) !important; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 6%;
    background: rgba(12,12,12,0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: padding 0.3s, border-color 0.3s;
}
.navbar.scrolled { padding: 14px 6%; border-color: var(--border); }

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -1px;
}
.logo-dot { color: var(--color-sport); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-tag {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.back-link {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    padding: 7px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: color 0.25s, border-color 0.25s;
}
.back-link:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.15); }

/* =============================================
   MAKALE
   ============================================= */
.article-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.article-header {
    padding-top: 140px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tag-pill {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    color: #fff;
}

.meta-sep { color: var(--text-faint); }
.meta-date, .meta-read { font-size: 0.85rem; color: var(--text-muted); }

.article-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 28px;
}
.article-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-sport);
}

.article-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: var(--prose-width);
    margin-bottom: 40px;
    font-weight: 300;
    font-style: italic;
}

.author-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 48px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-sport), var(--color-map));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-name { font-weight: 600; font-size: 0.93rem; color: var(--text-primary); }
.author-title { font-size: 0.82rem; color: var(--text-muted); }

/* Pull quote */
.hero-pull-quote {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 0;
    max-width: var(--prose-width);
}
.hpq-line {
    width: 3px;
    min-height: 60px;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 4px;
}
.hero-pull-quote blockquote {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.65;
}

/* =============================================
   MAKALE GÖVDE
   ============================================= */
.article-body {
    padding: 72px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Bölümler */
.chapter {
    max-width: var(--prose-width);
    margin-bottom: 72px;
}

.chapter-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.chapter h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.8px;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.chapter p {
    color: #C8C2BA;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.chapter p:last-child { margin-bottom: 0; }

.chapter strong { color: var(--text-primary); font-weight: 600; }
.chapter em { color: var(--color-sport); font-style: italic; }

/* =============================================
   LOKASYON BADGE
   ============================================= */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 28px;
}

.lb-icon { font-size: 1.3rem; }

.location-badge strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 700;
}

.location-badge span {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* =============================================
   KARİYER ZAMANÇİZELGESİ (Yatay)
   ============================================= */
.career-timeline {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    margin: 0 0 72px 0;
    overflow-x: auto;
}

.ct-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.ct-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ct-sub {
    font-size: 0.83rem;
    color: var(--text-faint);
}

.ct-items {
    display: flex;
    align-items: flex-start;
    gap: 0;
    min-width: 560px;
}

.ct-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.ct-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(232,98,42,0.2);
}

.ct-line {
    height: 2px;
    flex: 1;
    background: var(--border);
    margin-top: 7px;
    align-self: flex-start;
    margin-top: 15px;
}

.ct-year {
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-sport);
    text-align: center;
    white-space: nowrap;
}

.ct-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
    max-width: 110px;
}

/* =============================================
   ÖZEL HİKAYE KUTUSU
   ============================================= */
.highlight-story {
    display: flex;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin: 8px 0;
}

.hs-stripe {
    width: 4px;
    flex-shrink: 0;
}

.hs-body {
    padding: 26px 28px;
    background: var(--bg-card);
    flex: 1;
}

.hs-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-sport);
    display: block;
    margin-bottom: 10px;
}

.hs-body h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.hs-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.hs-body strong { color: var(--text-primary); font-weight: 600; }

/* =============================================
   İSTATİSTİK KARTLARI
   ============================================= */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 12px 0 28px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sc-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.sc-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.sc-note {
    font-size: 0.78rem;
    color: var(--text-faint);
}

/* =============================================
   ANTRENÖRLÜK BELGE YOLU
   ============================================= */
.license-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid rgba(232,98,42,0.25);
    padding-left: 0;
    margin: 8px 0 24px;
}

.lt-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 14px 0 14px 24px;
    position: relative;
}

.lt-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    position: absolute;
    left: -8px;
    border: 2px solid var(--bg);
}

.lt-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lt-text strong {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.lt-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* =============================================
   SON BÖLÜM — PARALEL TABLO
   ============================================= */
.final-chapter {
    padding-top: 56px;
    border-top: 1px solid var(--border);
    max-width: 100%;
}

.final-chapter .chapter-label { margin-bottom: 16px; }

.final-chapter h2 {
    max-width: var(--prose-width);
}

.final-chapter > p {
    max-width: var(--prose-width);
}

.parallel-box {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0 40px;
}

.pb-divider {
    background: var(--border);
    min-height: 120px;
}

.pb-header {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    display: block;
}

.pb-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pb-col li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.pb-col li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--text-faint);
}

/* Kapanış alıntı */
.closing-quote {
    padding: 32px 36px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-elevated);
    text-align: center;
    max-width: var(--prose-width);
}

.closing-quote p {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    letter-spacing: -0.3px;
    line-height: 1.55;
    margin-bottom: 16px;
    max-width: 100%;
}

.closing-quote cite {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* =============================================
   YAZAR KUTUSU
   ============================================= */
.author-box {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    margin-bottom: 56px;
}

.author-box-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-sport), var(--color-map));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.author-box-info h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.author-box-info p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.author-box-links { display: flex; gap: 20px; flex-wrap: wrap; }

.author-box-links a {
    font-size: 0.85rem;
    color: var(--color-sport);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}
.author-box-links a:hover { opacity: 0.75; }

/* =============================================
   DİĞER YAZILAR
   ============================================= */
.more-articles { margin-bottom: 80px; }

.more-articles h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.more-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.more-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.25s, transform 0.25s;
}
.more-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }

.more-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.more-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    flex: 1;
}

.more-date { font-size: 0.8rem; color: var(--text-faint); margin-top: 4px; }

/* =============================================
   FOOTER
   ============================================= */
.article-footer {
    border-top: 1px solid var(--border);
    padding: 28px 24px;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-home {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
}
.back-home:hover { color: var(--color-sport); }

.footer-copy { font-size: 0.82rem; color: var(--text-faint); }

/* =============================================
   MOBİL
   ============================================= */
@media (max-width: 768px) {
    .article-title { letter-spacing: -1px; }
    .stat-cards { grid-template-columns: 1fr; }
    .parallel-box { grid-template-columns: 1fr; }
    .pb-divider { display: none; }
    .more-grid { grid-template-columns: 1fr; }
    .author-box { flex-direction: column; gap: 20px; }
    .nav-tag { display: none; }
    .ct-items { min-width: 480px; }
}
