:root {
    --gold: #E5A512;
    --white: #FFFFFF;
    --maroon: #550000;
    --bg: #FFFFFF;
    --text: #221111;
    --muted: #888;
    --border-soft: #E5E5E5;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg);
    color: var(--text);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* TOPBAR */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-soft);
}

.topbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.brand-logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--maroon);
}

.brand-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav.main-nav {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

nav.main-nav a {
    position: relative;
    padding-bottom: 0.15rem;
    color: var(--maroon);
    opacity: 0.85;
    white-space: nowrap;
}

nav.main-nav a:hover,
nav.main-nav a:focus {
    opacity: 1;
}

nav.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--maroon));
    transition: width 0.2s ease-out;
}

nav.main-nav a:hover::after,
nav.main-nav a:focus::after {
    width: 100%;
}

/* Dil theme */
.topbar-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.lang-toggle {
    border: none;
    background: transparent;
    padding: 0.1rem 0.2rem;
    cursor: pointer;
    color: var(--maroon);
    opacity: 0.6;
}

.lang-toggle.lang-active {
    opacity: 1;
    font-weight: 600;
}

.lang-divider {
    margin: 0 0.1rem;
    opacity: 0.5;
}

.theme-toggle {
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    border-color: var(--gold);
    background: #fff9e1;
}

.theme-icon {
    line-height: 1;
}

/* I NEED A HERO 
I'm holding out for a hero 'til the end of the night
He's gotta be strong
And he's gotta be fast
And he's gotta be fresh from the fight
I need a hero
*/
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: clamp(2.3rem, 3vw, 3rem);
    line-height: 1.1;
    margin: 0 0 1rem;
    color: var(--maroon);
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a3b3b;
    max-width: 32rem;
    margin-bottom: 1.75rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    background: none;
    transition: 0.1s ease-out;
}

.btn-primary {
    background: var(--gold);
    border-color: #d29305;
    color: #3b2200;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
    border-color: var(--border-soft);
    color: var(--maroon);
    background: rgba(255, 255, 255, 0.9);
}

.btn-ghost:hover {
    background: #fff9e8;
    border-color: #e9c66e;
}

.hero-meta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.hero-art {
    padding: 1.5rem;
}

.hero-art-card {
    border-radius: 16px;
    border: 1px solid rgba(85,0,0,0.18);
    background: radial-gradient(circle at top, #fff6dd, #ffffff);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.hero-art-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--maroon);
    opacity: 0.7;
}

.hero-art-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--maroon);
}

.hero-art-placeholder {
    border-radius: 12px;
    border: 1px dashed rgba(85,0,0,0.25);
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
}

/* GENEL SEKSİYON */
main {
    padding-bottom: 4rem;
}

section {
    padding: 3.5rem 1.5rem 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.section-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
}

.section-title {
    font-size: 1.6rem;
    color: var(--maroon);
    margin: 0;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #5b4747;
    max-width: 38rem;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
}

.body-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #3b2a2a;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.media-placeholder {
    position: relative;
    border-radius: 12px;
    border: 1px dashed rgba(85,0,0,0.25);
    padding: 1.5rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.media-placeholder::before {
    content: attr(data-label);
    position: absolute;
    top: 0.55rem;
    left: 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(85,0,0,0.7);
}

/* LOREPEDIA TOLONGRADIAN GENOCIDE */
#lorepedia {
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-soft);
}

.lore-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr);
    gap: 2rem;
}

.lore-topbar {
    position: sticky;
    top: 3.25rem;
    z-index: 900;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    padding: 0.35rem 0.5rem;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.lore-topbar a {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    color: var(--maroon);
    opacity: 0.75;
}

.lore-topbar a:hover {
    opacity: 1;
    background: #fff6dd;
}

body[data-theme="dark"] .lore-topbar a:hover,
body[data-theme="dark"] .lore-topbar a:focus-visible {
    background: #3b1515;
    color: #ffd27a;
}

.lore-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(85,0,0,0.08);
}

.lore-section h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    color: var(--maroon);
}

.lore-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

/* LOREPEDIA COUNTRIES GRID */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    margin-top: 1.75rem;
}

.country-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.4rem;
    border-radius: 14px;
    border: 1px solid rgba(85, 0, 0, 0.12);
    background: #fffdf8;
     /* HOVER ANİMASYONU İÇİN */
    transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        border-color 0.18s ease-out,
        background-color 0.18s ease-out;
    transform-origin: center;
}

/* Hover + klavyeyle içindeki link/fokus geldiğinde büyüt */
.country-card:hover,
.country-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    border-color: var(--gold);
    background-color: #fff9ec;
    position: relative;
    z-index: 1;
}

.country-flag-placeholder {
    flex: 0 0 78px;
    height: 78px;
    border-radius: 10px;
    border: 1px dashed rgba(85, 0, 0, 0.35);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

.country-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.country-name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--maroon);
}

.country-description {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4b3636;
    opacity: 0.95;
}

.culture-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.culture-entry {
    padding: 1.25rem 1.4rem;
    border-radius: 14px;
    border: 1px solid rgba(85, 0, 0, 0.12);
    background: #fffdf8;
}

.culture-title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--maroon);
}

body[data-theme="dark"] .culture-entry {
    background: #150707;
    border-color: #3b1515;
}

body[data-theme="dark"] .culture-title {
    color: #f3d7a0;
}

.religion-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.religion-entry {
    padding: 1.25rem 1.4rem;
    border-radius: 14px;
    border: 1px solid rgba(85, 0, 0, 0.12);
    background: #fffdf8;
}

.religion-title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--maroon);
}

body[data-theme="dark"] .religion-entry {
    background: #150707;
    border-color: #3b1515;
}

body[data-theme="dark"] .religion-title {
    color: #f3d7a0;
}

/* NEWS */
#news {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-soft);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.news-card {
    padding: 1.4rem;
    border-radius: 14px;
    border: 1px solid rgba(85, 0, 0, 0.12);
    background: #fffdf8;
    transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        border-color 0.18s ease-out,
        background-color 0.18s ease-out;
}

.news-card:hover,
.news-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
    border-color: var(--gold);
    background-color: #fff9ec;
}

.news-meta {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.news-card-title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--maroon);
}

/* CONTACT */
#contact {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.contact-card {
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(85, 0, 0, 0.12);
    background: #fffdf8;
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--maroon);
    font-size: 1rem;
}

.contact-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: #3b2a2a;
    line-height: 1.8;
}

/* DARK */
body[data-theme="dark"] .news-card,
body[data-theme="dark"] .contact-card {
    background: #150707;
    border-color: #3b1515;
}

body[data-theme="dark"] .news-card:hover,
body[data-theme="dark"] .news-card:focus-within {
    background-color: #1e0a0a;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    border-color: var(--gold);
}

body[data-theme="dark"] .news-card-title,
body[data-theme="dark"] .contact-card h3,
body[data-theme="dark"] .contact-list {
    color: #f3d7a0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .news-grid,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* TIMELINE */
.timeline-shell {
    margin-top: 1rem;
}

.timeline-dots {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.timeline-dot {
    border: none;
    background: transparent;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    opacity: 0.8;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.timeline-dot:hover,
.timeline-dot:focus-visible {
    opacity: 1;
    transform: translateY(-1px);
}

.timeline-dot-core {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(85, 0, 0, 0.25);
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(229, 165, 18, 0);
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background-color 0.18s ease-out, border-color 0.18s ease-out;
}

.timeline-dot-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-align: center;
    color: #6b5454;
}

.timeline-dot.is-active .timeline-dot-core {
    background: var(--gold);
    border-color: #d29305;
    transform: scale(1.08);
    box-shadow: 0 0 0 6px rgba(229, 165, 18, 0.18);
}

.timeline-dot.is-active .timeline-dot-label {
    color: var(--maroon);
    font-weight: 600;
}

.timeline-stage {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.timeline-arrow {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    color: var(--maroon);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    cursor: pointer;
    transition: transform 0.18s ease-out, border-color 0.18s ease-out, background-color 0.18s ease-out, box-shadow 0.18s ease-out;
}

.timeline-arrow:hover,
.timeline-arrow:focus-visible {
    transform: translateY(-1px);
    border-color: var(--gold);
    background: #fff9e1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.timeline-card-wrap {
    min-height: 360px;
}

.timeline-card {
    height: 100%;
    padding: 1.6rem;
    border-radius: 18px;
    border: 1px solid rgba(85, 0, 0, 0.14);
    background: #fffdf8;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.timeline-card[hidden] {
    display: none;
}

.timeline-era-title {
    margin: 0 0 1.4rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--maroon);
}

.timeline-era-body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 1.5rem;
    align-items: start;
}

.timeline-era-text p:first-child {
    margin-top: 0;
}

.timeline-image-placeholder {
    position: relative;
    min-height: 280px;
    border-radius: 14px;
    border: 1px dashed rgba(85, 0, 0, 0.25);
    background: linear-gradient(180deg, #fff9ec 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    text-align: center;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.timeline-image-placeholder::before {
    content: attr(data-label);
    position: absolute;
    top: 0.8rem;
    left: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(85, 0, 0, 0.7);
}

/* DARK MODE */
body[data-theme="dark"] .timeline-dot-label {
    color: #b08c8c;
}

body[data-theme="dark"] .timeline-dot-core {
    background: #120505;
    border-color: rgba(229, 165, 18, 0.35);
}

body[data-theme="dark"] .timeline-dot.is-active .timeline-dot-label {
    color: #f3d7a0;
}

body[data-theme="dark"] .timeline-card {
    background: #150707;
    border-color: #3b1515;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

body[data-theme="dark"] .timeline-era-title {
    color: #f3d7a0;
}

body[data-theme="dark"] .timeline-arrow {
    background: #150707;
    border-color: #3b1515;
    color: #f3d7a0;
}

body[data-theme="dark"] .timeline-arrow:hover,
body[data-theme="dark"] .timeline-arrow:focus-visible {
    background: #2d1212;
    border-color: var(--gold);
    color: #ffd27a;
}

body[data-theme="dark"] .timeline-image-placeholder {
    background: linear-gradient(180deg, #241010 0%, #120505 100%);
    border-color: rgba(229, 165, 18, 0.35);
    color: #caa58a;
}

body[data-theme="dark"] .timeline-image-placeholder::before {
    color: #d7b57a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .timeline-era-body {
        grid-template-columns: minmax(0, 1fr);
    }

    .timeline-card-wrap {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .timeline-stage {
        grid-template-columns: minmax(0, 1fr);
    }

    .timeline-arrow-left {
        order: 2;
        justify-self: start;
    }

    .timeline-card-wrap {
        order: 1;
    }

    .timeline-arrow-right {
        order: 3;
        justify-self: end;
    }

    .timeline-dots {
        gap: 1rem;
    }
}

/* PRESS KIT */
#press-kit {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-soft);
}

.press-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.press-card {
    border-radius: 16px;
    border: 1px solid rgba(85,0,0,0.18);
    padding: 1.75rem 1.5rem;
    background: #fffdf6;
}

.press-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--maroon);
}

.press-meta dt {
    font-weight: 600;
    color: #3b2626;
}

.press-meta dd {
    margin: 0 0 0.4rem 0;
    color: #5b4747;
}

.press-block {
    margin-bottom: 1.5rem;
}

.press-block h4 {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
}

.press-list {
    font-size: 0.9rem;
    color: #3b2a2a;
    padding-left: 1.1rem;
}

.press-list li {
    margin-bottom: 0.3rem;
}

.asset-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.asset-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    color: var(--maroon);
}

.asset-link:hover {
    border-color: var(--gold);
    background: #fff9e1;
}

footer {
    margin-top: 4rem;
    border-top: 1px solid var(--border-soft);
    padding: 1.5rem 1.5rem 2.5rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
}

/* DARK THEME OVERRIDES */
body[data-theme="dark"] {
    --bg: #080404;
    --text: #f3e5e5;
    --border-soft: #2d1212;
    --muted: #b08c8c;
}

body[data-theme="dark"] header {
    background: rgba(10,5,5,0.96);
    border-bottom-color: #2d1212;
}

body[data-theme="dark"] .hero-art-card {
    background: radial-gradient(circle at top, #3b1515, #120505);
    border-color: #3b1515;
    box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

body[data-theme="dark"] .hero-subtitle,
body[data-theme="dark"] .section-subtitle,
body[data-theme="dark"] .body-text,
body[data-theme="dark"] .press-meta dd {
    color: #e6caca;
}

body[data-theme="dark"] .country-card {
    background: #150707;
    border-color: #3b1515;
}

body[data-theme="dark"] .country-card:hover,
body[data-theme="dark"] .country-card:focus-within {
    background-color: #1e0a0a;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    border-color: var(--gold);
}

body[data-theme="dark"] .country-description {
    color: #e6caca;
}

body[data-theme="dark"] .country-flag-placeholder {
    border-color: rgba(229, 165, 18, 0.45);
    color: #d9b676;
}

body[data-theme="dark"] .press-card {
    background: #150707;
    border-color: #3b1515;
}

body[data-theme="dark"] .lore-topbar {
    background: rgba(12,6,6,0.97);
    border-color: #2d1212;
}

body[data-theme="dark"] .media-placeholder {
    border-color: rgba(229,165,18,0.35);
    color: #caa58a;
}

body[data-theme="dark"] .theme-toggle {
    background: #150707;
    border-color: #3b1515;
}

body[data-theme="dark"] .theme-toggle:hover {
    background: #2d1212;
}

body[data-theme="dark"] footer {
    border-top-color: #2d1212;
}
body[data-theme="dark"] .asset-link {
    background: #150707;
    border-color: #3b1515;
    color: #f3d7a0;
}

body[data-theme="dark"] .asset-link:hover,
body[data-theme="dark"] .asset-link:focus-visible {
    background: #2d1212;
    border-color: var(--gold);
    color: #ffd27a;
}
body[data-theme="dark"] .brand-logo,
body[data-theme="dark"] nav.main-nav a,
body[data-theme="dark"] .hero-title,
body[data-theme="dark"] .section-title,
body[data-theme="dark"] .country-name,
body[data-theme="dark"] .lore-section h3,
body[data-theme="dark"] .press-card h3,
body[data-theme="dark"] .hero-art-title,
body[data-theme="dark"] .hero-art-tag,
body[data-theme="dark"] .lore-topbar a,
body[data-theme="dark"] .lang-toggle,
body[data-theme="dark"] .asset-link,
body[data-theme="dark"] .btn-ghost {
    color: #f3d7a0;
}

body[data-theme="dark"] .btn-ghost {
    background: rgba(255,255,255,0.03);
    border-color: #3b1515;
}

/* RESPONSIVE en kanser yer bura */
@media (max-width: 900px) {
    .hero,
    .two-column,
    .press-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 3rem;
    }
}

@media (max-width: 720px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar-right {
        width: 100%;
        justify-content: space-between;
    }

    nav.main-nav {
        flex-wrap: wrap;
        row-gap: 0.4rem;
    }
}

@media (max-width: 520px) {
    .media-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .topbar-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}