/* =========================================
   1. GÖRSEL AYARLAR & DEĞİŞKENLER (CONFIG)
   ========================================= */
:root {
    
        --texture-url: url("../assets/images/paper.webp"); 
    
    --texture-opacity: 0.25; 
    --bg-color: #212121; 
    --panel-bg: #2f2f2f;

    /* --- FONTLAR --- */
    --font-head: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    --font-hand: 'Pinyon Script', cursive;
    --font-mono: 'Courier New', monospace;
    --font-fun: 'Caveat', cursive;

    /* --- RENK PALETİ --- */
    --text-main: #ffffff;
    --text-muted: #9aa4b2;
    --accent: #d4a017;       /* Altın Sarısı */
    --crimson: #c0392b;      /* Kırmızı */
    --navy: #2c3e50;         /* Lacivert */
    --border-color: #444444;
    
    /* Diğer Ayarlar */
    --header-bg: rgba(33, 33, 33, 0.95);
    --card-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Light Mode */
html[data-theme="light"] {
    --bg-color: #f4f1ea;
    --panel-bg: #e3dac9;
    --text-main: #000000;
    --text-muted: #5c5c5c;
    --accent: #b7791f;
    --header-bg: rgba(244, 241, 234, 0.95);
    --border-color: #b8a99a;
}

/* =========================================
   2. TEMEL YAPI & DOKU KATMANI
   ========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; cursor: none !important; }
html, body { height: 100%; scroll-behavior: smooth; }

body { 
    font-family: var(--font-body); 
    color: var(--text-main); 
    background-color: var(--bg-color);
    transition: background-color 0.5s ease, color 0.5s ease; 
    overflow-x: hidden; 
    margin: 0; 
    line-height: 1.6; 
}

/* Doku Katmanı (Texture) */
body::before { 
    content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background-image: var(--texture-url); opacity: var(--texture-opacity);
    pointer-events: none; z-index: -1; mix-blend-mode: overlay; 
}

/* Noise Efekti */
body::after { 
    content: ""; position: fixed; top: -50%; left: -50%; width: 200%; height: 200%; 
    z-index: 997; pointer-events: none; 
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E"); 
    opacity: 0.07; animation: grain 8s steps(10) infinite; 
}
@keyframes grain { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-10%, 10%); } }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background-color: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background-color: var(--accent); }

/* Font Atamaları */
h1, h2, h3, .card-title, .timeline-year, .card-date, .center-header-title { font-family: var(--font-head); }

/* =========================================
   3. HEADER (TOPBAR) & NAVİGASYON
   ========================================= */
.topbar {
    position: fixed; top: 0; left: 0; width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    grid-template-rows: auto auto;       
    grid-template-areas: "ul uc ur" "ll lc lr";
    align-items: center; padding: 8px 20px; gap: 4px 20px;
    background-color: var(--header-bg); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1); z-index: 1000;
    transition: all 0.3s ease;
}

/* Grid Bölgeleri */
.area-ul { grid-area: ul; display: flex; align-items: center; justify-content: flex-start; }
.area-uc { grid-area: uc; display: flex; align-items: center; justify-content: center; gap: 10px; }
.area-ur { grid-area: ur; display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.area-ll { grid-area: ll; display: flex; align-items: center; justify-content: flex-start; }
.area-lc { grid-area: lc; display: flex; align-items: center; justify-content: center; }
.area-lr { grid-area: lr; display: flex; align-items: center; justify-content: flex-end; gap: 12px; }

/* Header İçerik Stilleri */
.header-rank-img { height: 36px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); margin-right: 10px; }
.header-rank-img.hidden { display: none; }
.header-main-name { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 700; color: var(--text-main); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.header-sub-details { font-family: var(--font-body); font-size: 0.85rem; color: var(--accent); display: flex; align-items: center; gap: 8px; opacity: 0.9; }
.header-sep { font-size: 0.6rem; color: var(--text-muted); }

/* Header Butonları (Sabit Genişlik) */
.theme-toggle, .lang-btn, .pin-btn, .donate-btn, .admin-link, .filter-btn { flex-shrink: 0 !important; }

/* Müzik Player */
.music-ui { display: flex; align-items: center; gap: 12px; }
.player-controls-wrapper { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.player-buttons { display: flex; gap: 4px; }
.mp-btn { height: 22px; width: 30px; display: flex; align-items: center; justify-content: center; cursor: pointer; background-color: var(--panel-bg); border: 1px solid var(--border-color); border-radius: 4px; color: var(--text-main); font-size: 10px; padding: 0; transition: background 0.2s; }
.mp-btn:hover { background-color: rgba(255,255,255,0.05); }
.volume-slider { width: 80px; height: 2px; cursor: pointer; accent-color: var(--accent); }
.track-meta { font-size: 0.8rem; color: var(--text-main); white-space: nowrap; max-width: 150px; overflow: hidden; text-overflow: ellipsis; }

/* Pin Butonu */
.pin-btn { background: none; border: none; cursor: pointer; color: var(--text-muted); padding: 4px; transition: 0.2s; display: flex; align-items: center; }
.pin-btn svg { width: 18px; height: 18px; stroke: currentColor; }
.pin-btn:hover { color: var(--text-main); }
.pin-btn.active { color: var(--accent); transform: rotate(-45deg); }

/* Link & Destek Butonları */
.admin-link, .donate-btn { padding: 4px 12px; border-radius: 20px; border: 1px solid var(--border-color); color: var(--text-main); text-decoration: none; font-size: 0.85rem; background: transparent; }
.donate-btn { background-color: var(--accent); color: #fff; border: none; font-weight: 600; cursor: pointer; }

/* Filtre Butonu ve Menüsü */
.filter-dropdown { position: relative; display: inline-block; }
.filter-btn { display: flex; align-items: center; gap: 5px; background: transparent; border: 1px solid var(--border-color); color: var(--text-main); padding: 4px 10px; border-radius: 20px; cursor: pointer; font-family: var(--font-body); font-size: 0.8rem; transition: 0.3s; }
.filter-btn:hover, .filter-dropdown.active .filter-btn { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Filtre Menüsü (Fixli & Pop-up) */
.filter-menu { 
    position: fixed; top: 60px; right: 10px; width: 180px; 
    background: var(--header-bg); backdrop-filter: blur(10px); 
    border: 1px solid var(--accent); border-radius: 8px; padding: 10px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.8); z-index: 2000;
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; 
}
.filter-dropdown:hover .filter-menu, .filter-dropdown.active .filter-menu { 
    opacity: 1; visibility: visible; transform: translateY(0); display: block;
}
.filter-menu label { display: flex; align-items: center; gap: 10px; padding: 8px; cursor: pointer; color: var(--text-main); font-size: 0.9rem; border-radius: 4px; transition: 0.2s; }
.filter-menu label:hover { background: rgba(255,255,255,0.05); }
.filter-menu input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }

/* Tema Değiştirme Butonu */
.theme-toggle { position: relative; width: 56px; height: 28px; background-color: var(--panel-bg); border-radius: 50px; border: 1px solid var(--border-color); cursor: pointer; padding: 0; overflow: hidden; transition: background-color 0.3s ease; }
.toggle-thumb { position: absolute; left: 3px; top: 2px; width: 22px; height: 22px; border-radius: 50%; background-color: #fff; transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1); display: flex; align-items: center; justify-content: center; }
.toggle-thumb::before { content: ''; width: 14px; height: 14px; background-size: contain; background-repeat: no-repeat; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f1c40f'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/%3E%3C/svg%3E"); }
html[data-theme="light"] .toggle-thumb { transform: translateX(28px); }
html[data-theme="light"] .toggle-thumb::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f39c12' stroke='%23f39c12' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Cline x1='12' y1='1' x2='12' y2='3'/%3E%3Cline x1='12' y1='21' x2='12' y2='23'/%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64'/%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78'/%3E%3Cline x1='1' y1='12' x2='3' y2='12'/%3E%3Cline x1='21' y1='12' x2='23' y2='12'/%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36'/%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22'/%3E%3C/svg%3E"); }

/* Dil Butonu */
.lang-btn { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--border-color); cursor: pointer; background-color: transparent; background-position: center; background-size: cover; transition: transform 0.2s ease; }
.lang-btn:hover { transform: scale(1.1); border-color: var(--accent); }
html:not([lang="en"]) .lang-btn { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Crect width='1200' height='800' fill='%23E30A17'/%3E%3Ccircle cx='444' cy='400' r='200' fill='%23ffffff'/%3E%3Ccircle cx='480' cy='400' r='160' fill='%23E30A17'/%3E%3Cpolygon fill='%23ffffff' points='674,346 674,454 584,392 722,392 632,454' transform='rotate(-18 648 400)'/%3E%3C/svg%3E"); }
html[lang="en"] .lang-btn { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cpath d='M0,0 v30 h60 v-30 z' fill='%23012169'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E"); }

/* --- HEADER MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .topbar {
        grid-template-columns: max-content minmax(0, 1fr) max-content;
        padding: 4px 6px; gap: 2px 4px; overflow: visible; /* Menü taşması için */
    }
    .area-uc, .area-lc { justify-content: center; text-align: center; width: 100%; padding: 0 2px; overflow: hidden; }
    .header-main-name { 
        font-family: 'Cinzel', serif; font-weight: 700;
        font-size: clamp(0.8rem, 4vw, 1.2rem); 
        white-space: normal; word-wrap: break-word; text-overflow: unset; 
        text-align: center; line-height: 1.1; margin-top: 2px;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    }
    .header-sub-details { font-size: 0.75rem; margin-top: -1px; }
    .admin-link, .track-meta, .volume-slider { display: none; }
    .header-sep { display: inline-block; margin: 0 3px; font-size: 0.6rem; vertical-align: middle; }
    
    /* Buton Eşitleme */
    .donate-btn, .filter-btn, .lang-btn, .theme-toggle, .pin-btn {
        width: 24px !important; height: 24px !important; min-width: 24px !important;
        border-radius: 50%; padding: 0; margin: 0 2px;
        background-color: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
        font-size: 0;
    }
    .donate-btn svg, .filter-btn svg, .pin-btn svg { width: 14px; height: 14px; stroke: var(--text-main); stroke-width: 2px; }
    .theme-toggle .toggle-thumb { width: 100%; height: 100%; transform: none; background: transparent; }
    .theme-toggle .toggle-thumb::before { width: 14px; height: 14px; }
    
    .pin-btn { position: absolute; top: 4px; right: 4px; z-index: 100; background-color: var(--panel-bg); }
    .mp-btn { width: 26px; height: 26px; font-size: 10px; }
    
    /* Mobilde Filtre Menüsü */
    .filter-menu { max-width: 90vw; }
}

/* =========================================
   4. TIMELINE & KARTLAR
   ========================================= */
.main-container { padding-bottom: 0; }
.timeline-header { text-align: center; padding: 40px 20px; }
.timeline-header h1 { font-weight: 700; letter-spacing: 1px; }

.timeline-wrapper { position: relative; max-width: 1000px; margin: 0 auto; padding: 20px 0; display: flex; flex-direction: column; align-items: center; min-height: 120vh; }
.timeline-wrapper::before { content: ''; position: absolute; top: 0; bottom: 0; width: 4px; background: var(--border-color); left: 50%; transform: translateX(-50%); z-index: 0; }

.timeline-year { z-index: 2; background-color: var(--accent); color: #fff; padding: 5px 15px; border-radius: 20px; font-weight: bold; margin: 20px 0; box-shadow: 0 0 10px rgba(0,0,0,0.5); border: 3px solid var(--bg-color); }

.timeline-card { 
    position: relative; width: 45%; 
    background-color: var(--panel-bg); 
    border: 1px solid var(--accent); 
    color: var(--text-main); 
    box-shadow: var(--card-shadow); border-radius: 6px; margin-bottom: 20px; cursor: pointer; overflow: hidden; z-index: 1; opacity: 0; transform: translateY(50px); transition: transform 0.1s ease-out, box-shadow 0.3s ease, opacity 0.6s ease-out, background-color 0.3s ease; transform-style: preserve-3d; 
}
.timeline-card.visible { opacity: 1 !important; transform: translateY(0); }
.card-content { padding: 20px; }

/* --- CARD META ROW (Tarih ve Lokasyon) --- */
.card-meta-row {
    display: flex;
    justify-content: space-between; /* İki uca yasla (Sol: Tarih, Sağ: Lokasyon) */
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    padding-bottom: 5px;
}

.card-date {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0 !important;
    font-weight: bold;
    color: var(--accent);
    font-family: var(--font-body);
}

/* Lokasyon Alanı */
.card-location {
    margin: 0 !important;
    font-size: 1.1rem;
    color: var(--accent);
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* DÜZELTME: Lokasyon İkon Boyutu */
.card-location svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    flex-shrink: 0; /* Küçülmesini veya büyümesini engelle */
}

.card-title { margin: 0 0 10px; font-size: 1.4rem; line-height: 1.3; font-family: var(--font-head); color: var(--text-main); text-transform: uppercase; border-bottom: 1px solid var(--accent); padding-bottom: 10px; margin-bottom: 15px; }
.card-desc { font-size: 1rem; line-height: 1.6; display: none; color: var(--text-main); font-family: var(--font-body); }
.timeline-card.active .card-desc { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.card-image { width: 100%; height: 180px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; filter: none; transition: 0.3s; opacity: 1 ;}
.timeline-card:hover .card-image img { transform: scale(1.05); }
.timeline-card.right { align-self: flex-end; margin-left: 50%; }
.timeline-card.left { align-self: flex-start; margin-right: 50%; }
.timeline-card::after { content: ''; position: absolute; top: 20px; width: 0; height: 0; border-style: solid; }
.timeline-card.left::after { right: -20px; border-width: 10px 0 10px 10px; border-color: transparent transparent transparent var(--panel-bg); }
.timeline-card.right::after { left: -20px; border-width: 10px 10px 10px 0; border-color: transparent var(--panel-bg) transparent transparent; }

/* Mobilde Timeline */
@media (max-width: 768px) {
    .timeline-wrapper { padding: 10px 0; align-items: flex-start; }
    .timeline-wrapper::before { left: 20px; }
    .timeline-year { margin-left: 10px; align-self: flex-start; }
    .timeline-card { width: calc(100% - 65px) !important; align-self: flex-start !important; margin: 0 0 30px 0 !important; margin-left: 50px !important; margin-right: 15px !important; }
    .timeline-card.right::after, .timeline-card.left::after { left: -10px; right: auto; border-width: 10px 10px 10px 0; border-color: transparent var(--panel-bg) transparent transparent; }
    .card-image { height: 160px; }
}

/* --- ÖZEL KART TİPLERİ --- */
/* Memory (Anı) */
.timeline-card.type-memory {
    background: #ffffff !important; border: 1px solid #dcdcdc !important; background-image: none !important;
    color: #333 !important; width: 40% !important; transform: rotate(-2deg);
    padding: 15px 15px 40px 15px !important; box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important; border-radius: 2px !important;
}
.timeline-card.type-memory:hover { transform: scale(1.05) rotate(0deg) !important; z-index: 50; }
.timeline-card.right.type-memory { transform: rotate(2deg); }
.timeline-card.type-memory .card-image { height: auto !important; max-height: 400px; border: 1px solid #eee; filter: sepia(0.2) contrast(1.1) brightness(1.1); }
.timeline-card.type-memory .card-title { font-family: var(--font-fun) !important; font-size: 1.8rem; text-transform: none; border: none; text-align: center; color: #333 !important; margin-bottom: 5px; }
.timeline-card.type-memory .card-desc { font-family: var(--font-fun) !important; font-size: 1.5rem; text-align: center; display: block; color: #555 !important; }
.timeline-card.type-memory .card-date, .timeline-card.type-memory::after, .timeline-card.type-memory .voice-player-container, .timeline-card.type-memory .notes-container, .timeline-card.type-memory .related-people-container { display: none !important; }

/* Document (Belge) */
.timeline-card.type-document { background-image: url("../assets/images/dust.webp") !important; border: 1px solid #c0b283 !important; color: #2c1e12 !important; border-radius: 4px; }
.timeline-card.type-document::after { border-color: transparent transparent transparent #f3e5ab !important; }
.timeline-card.right.type-document::after { border-color: transparent #f3e5ab transparent transparent !important; }
.timeline-card.type-document .card-title { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid #2c1e12; color: #000 !important; }
.timeline-card.type-document .card-desc { font-family: var(--font-mono) !important; font-size: 1.00rem; font-weight: 550; color: #2c1e12 !important; }
.timeline-card.type-document .card-date { color: #8b0000 !important; }
.timeline-card.type-document .card-location { color: #4e342e !important; /* Koyu Kahve (Eski Mürekkep Rengi) */   opacity: 1;                 /* Yarı saydamlığı kaldır, tam net olsun */   font-weight: bold;          /* Biraz daha kalın olsun */
}
.timeline-card.type-document .card-location svg {
    stroke: #4e342e !important;}

/* Event (Olay) */
.timeline-card.type-event { background-image: linear-gradient(rgba(65, 65, 65, 0.9), rgba(117, 114, 113, 0.9)), url("../assets/images/noise.webp") !important; background-blend-mode: overlay; border: 1px solid #fff !important; outline: 1px solid #999; color: #111 !important; box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important; }
.timeline-card.type-event::after { border-color: transparent transparent transparent #e0e0e0 !important; }
.timeline-card.right.type-event::after { border-color: transparent #e0e0e0 transparent transparent !important; }
.timeline-card.type-event .card-image img { filter: grayscale(100%) contrast(1.2); transition: filter 0.5s; }
.timeline-card.type-event:hover .card-image img { filter: grayscale(0%); }
.timeline-card.type-event .card-title { font-family: var(--font-head); font-weight: 900; color: #ffffff !important; border-bottom: 1px dashed rgba(255,255,255,0.2); }
.timeline-card.type-event .card-date { background: #000; color: #fff !important; display: inline-block; padding: 2px 8px; font-size: 1rem; }

/* Doctrine (Öğüt) */
.timeline-card.type-doctrine { background-image: linear-gradient(rgba(65, 65, 65, 0.9), rgba(117, 114, 113, 0.9)), url("../assets/images/blackboard.webp") !important; background-blend-mode: overlay; border: 6px solid #5d4037 !important; box-shadow: 0 10px 20px rgba(0,0,0,0.6) !important; color: #ffffff !important; text-align: center; }
.timeline-card.type-doctrine::after { border-color: transparent transparent transparent #382e2b !important; }
.timeline-card.right.type-doctrine::after { border-color: transparent #5d4037 transparent transparent !important; }
.timeline-card.type-doctrine .card-title { font-family: var(--font-fun) !important; font-size: 2rem; color: #f1f8e9 !important; border: none; margin-bottom: 20px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.timeline-card.type-doctrine .card-desc { font-family: var(--font-fun) !important; font-size: 1.6rem; line-height: 1.4; color: #fff !important; display: block; }
.timeline-card.type-doctrine .card-image { display: none; }
.timeline-card.type-doctrine .card-date { color: rgba(255,255,255,0.5) !important; font-family: sans-serif; font-size: 1rem; }
.timeline-card.type-doctrine .card-meta-row { display: none !important;
}
/* =========================================
   5. WIDGETLAR (ARAÇLAR)
   ========================================= */

/* --- A. HARİTA (Map) --- */
.travel-map-widget { 
    position: fixed; bottom: 15px; right: 15px; width: 330px; height: 165px; 
    z-index: 900; transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); 
}
.map-frame { width: 100%; height: 100%; border: 4px solid #af814d; border-radius: 8px; overflow: hidden; background: #1a1a1a; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.map-bg { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: sepia(0.6) contrast(1.2) brightness(0.8); transition: object-position 1.5s ease-in-out; }
.map-pin { position: absolute; top: 50%; left: 50%; width: 12px; height: 12px; background-color: #c0392b; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 10px rgba(192, 57, 43, 0.8); transform: translate(-50%, -50%); transition: top 1s, left 1s; z-index: 2; }
.map-pin::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid #c0392b; }
.current-location-label { display: none !important; } /* Yazı gizli */

.map-minimize-btn { 
    position: absolute; top: -12px; right: -12px; width: 24px; height: 24px; 
    background: var(--accent); color: #000; border: 2px solid #fff; border-radius: 50%; 
    cursor: pointer; font-weight: bold; line-height: 1; z-index: 902; 
    display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 5px rgba(0,0,0,0.5); transition: 0.3s; 
}
.map-minimize-btn:hover { transform: scale(1.1); }

.map-icon-placeholder { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); opacity: 0; transition: 0.4s; color: var(--accent); }
.map-icon-placeholder svg { width: 24px; height: 24px; stroke: currentColor; }

/* Minimized Durum (PC & Mobil Ortak) */
.travel-map-widget.minimized { 
    width: 50px; height: 50px; border-radius: 50%; background-color: var(--panel-bg); border: 2px solid var(--accent); cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.5); overflow: hidden; 
}
.travel-map-widget.minimized .map-frame, .travel-map-widget.minimized .map-minimize-btn { opacity: 0; pointer-events: none; }
.travel-map-widget.minimized .map-icon-placeholder { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Mobil Harita */
@media (max-width: 768px) {
    .travel-map-widget { bottom: 70px; right: 10px; width: 120px; height: 90px; }
    .travel-map-widget.minimized { width: 40px; height: 40px; }
    .travel-map-widget.minimized .map-icon-placeholder svg { width: 20px; height: 20px; }
}

/* --- B. ORTAK BUTON YAPISI (Telgraf, Mektup, Karar, Beyan) --- */
.telegram-widget, .letter-widget, .speech-widget, .decision-widget { 
    position: fixed; right: 30px; z-index: 950; cursor: pointer; 
    display: flex; align-items: center; gap: 10px; border-radius: 50px; 
    padding: 10px 15px; color: #fff; transform: translateX(200%); 
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.telegram-widget.active, .letter-widget.active, .speech-widget.active, .decision-widget.active { 
    transform: translateX(0); 
}
.telegram-widget:hover, .letter-widget:hover, .speech-widget:hover, .decision-widget:hover { 
    transform: translateX(-15px); 
}

/* 1. Karar Butonu */
.decision-widget { bottom: 190px; background: #3b3134; border: 2px solid #505044; box-shadow: 0 5px 20px rgba(116, 117, 97, 0.6); }
.decision-icon-wrapper { width: 20px; height: 20px; } .decision-icon-wrapper svg { width: 100%; height: 100%; }
.decision-widget-text { font-family: var(--font-mono); font-weight: bold; letter-spacing: 1px; }

/* 2. Telgraf Butonu */
.telegram-widget { bottom: 240px; background: #863e3e; border: 2px solid #523131; box-shadow: 0 5px 20px rgba(248, 132, 132, 0.6); }
.telegram-text { font-family: var(--font-mono); font-weight: bold; letter-spacing: 1px; }
.telegram-icon-wrapper { width: 24px; height: 24px; position: relative; filter: brightness(0) invert(1) !important; }
.notification-badge { position: absolute; top: -5px; right: -5px; width: 12px; height: 12px; background: #fff; color: var(--crimson); border-radius: 50%; font-size: 10px; font-weight: bold; display: flex; align-items: center; justify-content: center; display: none !important; }

/* 3. Mektup Butonu */
.letter-widget { bottom: 290px; background: #918964; border: 2px solid #9b9b75; box-shadow: 0 5px 20px rgba(214, 216, 180, 0.6); }
.letter-widget-text { font-family: var(--font-mono); font-weight: bold; letter-spacing: 1px; }
.letter-icon-wrapper { width: 24px; height: 24px; color: var(--crimson); }

/* 4. Beyan Butonu */
.speech-widget { bottom: 340px; background: #3e4e52; border: 2px solid #4c6169; box-shadow: 0 5px 20px rgba(133, 182, 190, 0.6); }
.speech-avatar-wrapper { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; border: 2px solid var(--accent); background: #000; }
#speech-widget-img { width: 100%; height: 100%; object-fit: cover; }
.speech-widget-text { font-family: var(--font-mono); font-weight: bold; letter-spacing: 1px; }

/* Mobilde Butonlar (Yuvarlak) */
@media (max-width: 768px) {
    .telegram-widget, .letter-widget, .speech-widget, .decision-widget { 
        right: 10px; width: 40px; height: 40px; padding: 0; border-radius: 50%; justify-content: center; 
    }
    .decision-widget { bottom: 120px; }
    .telegram-widget { bottom: 170px; }
    .letter-widget { bottom: 220px; }
    .speech-widget { bottom: 270px; border: none; background: transparent; box-shadow: none; }
    .speech-avatar-wrapper { width: 45px; height: 45px; border: 2px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
    
    .telegram-text, .letter-widget-text, .speech-widget-text, .decision-widget-text { display: none; }
}

/* =========================================
   6. OVERLAYS & MODALS
   ========================================= */
/* --- KARAR MODAL (TARİHİ ATMOSFER GÜNCELLEMESİ) --- */
#decision-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(5px); /* Arka planı biraz daha yumuşattık */
    z-index: 50000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease-in-out;
}
#decision-overlay.open { opacity: 1; visibility: visible; }

.decision-container {
    position: relative; width: 600px; max-width: 90%;
    /* 1. DOKU & ARKA PLAN: Modern gradient yerine kağıt dokusu */
    background-color: #f4e4bc; 
    background-image: url("../assets/images/cream-paper.webp");
    background-repeat: repeat;
    
    /* 4. KENAR SÜSÜ: Çift çerçeve efekti */
    border: 1px solid rgba(0,0,0,0.2);
    outline: 4px double #8b4513; /* Kahverengi klasik çerçeve */
    outline-offset: -10px;
    border-radius: 4px; /* Köşeleri biraz sivrilttik */
    
    padding: 40px;
    text-align: center; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 0 80px rgba(139, 69, 19, 0.15);
    transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #2c1e12; /* Koyu kahve/siyah metin */
}
#decision-overlay.open .decision-container { transform: scale(1); }

.decision-header h3 { 
    /* 2. TİPOGRAFİ: Başlıklar */
    font-family: var(--font-head); 
    color: var(--navy); /* Lacivert mürekkep rengi */
    font-size: 1.8rem; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.decision-timer-line { 
    width: 100%; height: 3px; 
    background: var(--crimson); /* Kırmızı çizgi */
    margin: 15px 0 25px 0; 
    box-shadow: none; 
    opacity: 0.8;
}

.decision-question-box p { 
    /* 2. TİPOGRAFİ: Gövde metni */
    font-family: var(--font-body);
    font-size: 1.3rem; 
    color: #333; /* Siyah yerine koyu gri */
    margin-bottom: 30px; 
    line-height: 1.6; 
    font-weight: 600;
}

.decision-options { display: flex; flex-direction: column; gap: 15px; }

/* 3. BUTONLAR: Mühür ve İmza Tarzı */
.decision-btn { 
    background: rgba(255,255,255,0.5); 
    border: 1px solid #8b4513; 
    padding: 15px; 
    border-radius: 2px; 
    color: #2c1e12; 
    cursor: pointer; 
    display: flex; align-items: center; gap: 15px; text-align: left; 
    transition: all 0.2s; 
    font-family: var(--font-head);
    font-weight: bold;
}

.decision-btn:hover { 
    background: var(--accent); /* Altın Sarısı */
    color: #fff; 
    border-color: var(--accent);
    transform: translateX(5px); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-letter { 
    background: var(--navy); 
    color: #fff; 
    width: 35px; height: 35px; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-weight: bold; flex-shrink: 0; 
    font-family: var(--font-mono);
    border: 2px solid rgba(255,255,255,0.3);
}

/* SweetAlert2 Kütüphanesi Kullanılıyorsa Diye Ekstra Ayarlar */
.swal2-popup {
    background-color: #f4e4bc !important;
    background-image: url("../assets/images/dust.webp") !important;
    border-radius: 4px !important;
    outline: 4px double #8b4513 !important;
    outline-offset: -10px;
    color: #2c1e12 !important;
}
.swal2-title {
    font-family: var(--font-head) !important;
    color: var(--navy) !important;
}
.swal2-confirm {
    background-color: var(--accent) !important;
    color: #fff !important;
    font-family: var(--font-head) !important;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2) !important;
}
.swal2-cancel {
    color: #555 !important;
    font-family: var(--font-body) !important;
    font-style: italic;
}

/* --- SONUÇ DUVARLARI (TARİHİ ATMOSFER GÜNCELLEMESİ) --- */
#reality-wall, #victory-wall { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    display: flex; align-items: center; justify-content: center; 
    z-index: 10; opacity: 0; visibility: hidden; transition: 0.4s ease-in-out; 
    border-radius: 4px;
    
    /* Ortak Tarihi Doku */
    background-image: url("../assets/images/noise.webp"); 
    background-blend-mode: multiply;
    
    /* İçeriye Çift Çizgi Çerçeve */
    outline: 4px double rgba(255,255,255,0.3);
    outline-offset: -15px;
}

#reality-wall:not(.hidden), #victory-wall:not(.hidden) { opacity: 1; visibility: visible; }

/* 1. ÇIKMAZ SOKAK (YANLIŞ CEVAP) */
#reality-wall { 
    /* Koyu Kırmızı Tarihi Zemin */
    background-color: #8b0000; 
    color: #fce4ec;
}

/* 2. DOĞRU CEVAP (ZAFER) */
#victory-wall { 
    /* Koyu Haki/Yeşil Tarihi Zemin */
    background-color: #2e4a30; 
    color: #e8f5e9;
}

/* İçerik Yazıları */
.reality-content {
    text-align: center;
    padding: 40px;
    max-width: 80%;
}

.reality-content h4 { 
    font-family: var(--font-head); 
    font-size: 2.2rem; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    display: inline-block;
    padding-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.reality-content p { 
    font-family: var(--font-body); 
    font-size: 1.3rem; 
    line-height: 1.6;
    margin-bottom: 30px; 
    opacity: 0.9;
}

/* Geri Dön / Devam Et Butonu */
.reality-return-btn { 
    padding: 12px 35px; 
    background: transparent; 
    color: #fff; 
    border: 1px solid rgba(255,255,255,0.6); 
    border-radius: 2px; /* Yuvarlak değil köşeli */
    font-weight: bold; 
    cursor: pointer; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-family: var(--font-head); 
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.reality-return-btn:hover { 
    background: #fff; 
    color: #000; 
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* --- TELGRAF MODAL --- */
#telegram-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.4s; backdrop-filter: blur(5px); }
#telegram-overlay.open { opacity: 1; visibility: visible; }
.telegram-paper { width: 600px; max-width: 90%; min-height: 400px; background-color: #f4e4bc; background-image: url("../assets/images/dust.webp") !important; padding: 40px; box-shadow: 0 0 50px rgba(0,0,0,0.8); font-family: var(--font-mono); color: var(--navy); transform: scale(0.8) rotate(-5deg); transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; border: 2px solid #dba87f; }
#telegram-overlay.open .telegram-paper { transform: scale(1) rotate(0deg); }
.telegram-header { border-bottom: 2px solid var(--navy); padding-bottom: 10px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }
.tg-title { font-weight: 900; font-size: 1.5rem; letter-spacing: 2px; text-decoration: underline; margin-left: 20px; text-align: center;}
.tg-date { font-weight: bold; font-size: 0.9rem; }
.telegram-body { font-size: 1.4rem; line-height: 1.6; font-weight: bold; min-height: 150px; text-transform: uppercase; }
#tg-cursor { animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }
.telegram-footer { margin-top: 30px; text-align: right; border-top: 1px dashed var(--navy); padding-top: 10px; }
.tg-sender { display: block; font-size: 0.9rem; margin-bottom: 5px; }
.tg-sign { font-family: var(--font-fun); font-size: 2rem; color: var(--crimson); transform: rotate(-5deg); display: inline-block; }
.tg-close-btn { position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); background: transparent; border: 1px solid #fff; color: #fff; padding: 10px 20px; cursor: pointer; transition: 0.3s; }
.tg-close-btn:hover { background: #fff; color: #000; }

/* --- MEKTUP MODAL --- */
#letter-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.5s; backdrop-filter: blur(8px); perspective: 1000px; }
#letter-overlay.open { opacity: 1; visibility: visible; }
.letter-wrapper { transform-style: preserve-3d; transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform: rotateX(90deg) scale(0.5); opacity: 0; }
#letter-overlay.open .letter-wrapper { transform: rotateX(0deg) scale(1); opacity: 1; }
.letter-paper { width: 500px; max-width: 90vw; min-height: 600px; background-color: #fffdf0; background-image: url("../assets/images/letter.webp") !important; padding: 50px 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 0 60px rgba(165, 122, 60, 0.2); border-radius: 2px; position: relative; color: #3e2723; }
.letter-content { font-size: 1.4rem; line-height: 1.8; min-height: 400px; white-space: pre-line; }
.letter-content.handwriting { font-family: var(--font-hand); font-size: 2rem; line-height: 1.6; color: #2c1e12; }
.letter-content.readable { font-family: var(--font-body); font-size: 1.1rem; color: #000; }
.letter-sign { margin-top: 30px; text-align: right; font-family: var(--font-hand); font-size: 2.5rem; color: #2c1e12; transform: rotate(-5deg); }
.letter-controls { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
.letter-toggle-btn, .letter-close-btn { padding: 10px 20px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.3); background: rgba(0,0,0,0.6); color: #fff; cursor: pointer; transition: 0.3s; font-family: sans-serif; font-size: 0.9rem; }
.letter-toggle-btn:hover, .letter-close-btn:hover { background: var(--accent); color: #000; }

/* --- BEYAN (SPEECH) MODAL --- */
#speech-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 40000; display: flex; align-items: flex-end; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s; padding-bottom: 50px; }
#speech-overlay.open { opacity: 1; visibility: visible; }
.speech-container { display: flex; align-items: flex-end; gap: 20px; max-width: 900px; width: 90%; position: relative; transform: translateY(50px); opacity: 0; transition: 0.5s ease-out; }
#speech-overlay.open .speech-container { transform: translateY(0); opacity: 1; }
.speech-char-box { width: 200px; height: 300px; flex-shrink: 0; border-bottom: 4px solid var(--accent); position: relative; z-index: 2; }
#speech-modal-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: drop-shadow(0 0 10px rgba(0,0,0,0.5)); }
.speech-bubble-box { background: #fff; color: #000; padding: 25px; border-radius: 20px 20px 20px 0; position: relative; flex-grow: 1; margin-bottom: 20px; box-shadow: 0 0 30px rgba(255,255,255,0.1); border: 4px solid #000; }
.speech-triangle { position: absolute; bottom: -20px; left: 0; width: 0; height: 0; border-left: 20px solid #000; border-top: 20px solid transparent; border-bottom: 0 solid transparent; transform: scaleX(-1); }
.speech-bubble-box::after { content: ''; position: absolute; bottom: 4px; left: -11px; width: 0; height: 0; border-top: 15px solid #fff; border-left: 15px solid transparent; transform: rotate(90deg); }
#speech-modal-title { font-family: var(--font-head); font-size: 1.5rem; color: var(--crimson); margin-bottom: 10px; border-bottom: 1px solid #ccc; display: inline-block; }
#speech-modal-text { font-family: var(--font-body); font-size: 1.2rem; line-height: 1.5; font-weight: 600; }
.speech-close-btn { position: absolute; top: -15px; right: -15px; background: var(--crimson); color: #fff; width: 35px; height: 35px; border-radius: 50%; border: 2px solid #fff; font-size: 1.2rem; cursor: pointer; box-shadow: 0 5px 10px rgba(0,0,0,0.3); }
@media (max-width: 768px) { .speech-container { flex-direction: column; align-items: center; padding-bottom: 20px; } .speech-char-box { width: 120px; height: 180px; order: 1; border: none; } .speech-bubble-box { width: 100%; order: 2; margin-bottom: 0; border-radius: 15px; } .speech-triangle { display: none; } }

/* =========================================
   7. DİĞER BİLEŞENLER
   ========================================= */

/* Custom Cursor */
.custom-cursor { position: fixed; top: 0; left: 0; width: 32px; height: 32px; z-index: 999999; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 3.5L13 21.5L16.5 14.5L23.5 11L5.5 3.5Z' fill='%23d4a017' stroke='%23000000' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; transform: translate(-2px, -2px); }
.custom-cursor.hovered { filter: drop-shadow(0 0 8px var(--accent)); transform: scale(1.15) translate(-2px, -2px); animation: goldPulse 0.8s infinite alternate ease-in-out; }
@media (max-width: 768px) { .custom-cursor { display: none; } html, body, a, button { cursor: auto !important; } }
@keyframes goldPulse { 0% { filter: drop-shadow(0 0 8px var(--accent)); transform: scale(1.15) translate(-2px, -2px); } 100% { filter: drop-shadow(0 0 20px var(--accent)); transform: scale(1.25) translate(-2px, -2px); } }

/* Yıl Sayacı (Arka Plan) */
#bg-year-counter { 
    position: fixed; top: 50%; left: 0; width: 100%; transform: translateY(-50%); 
    text-align: center; font-family: var(--font-head); font-size: 25vw; font-weight: 900; 
    line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05); 
    z-index: -5; pointer-events: none; transition: all 0.5s ease-out; filter: blur(2px); white-space: nowrap; overflow: hidden; 
}
@media (max-width: 768px) { #bg-year-counter { font-size: 40vw; -webkit-text-stroke: 1px rgba(255,255,255,0.05); } }

/* Video Background */
.war-background-container { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    z-index: -2; opacity: 0; transition: opacity 2s ease-in-out; pointer-events: none; 
}
.war-background-container.active { opacity: 0.35; }
.war-background-container video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.2); }
.war-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, transparent 20%, #000 100%); }

/* İmza Intro */
#signature-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 99999; display: flex; justify-content: center; align-items: center; transition: opacity 0.5s; }
#signature-overlay.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
.signature-container { width: 300px; animation: introFlow 3.5s forwards; }
.signature-img { width: 100%; display: block; }
@keyframes introFlow { 0% { opacity: 0; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1.1); } }

/* Flash Effect */
#flash-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #fff; z-index: 10000; opacity: 0; pointer-events: none; }
#flash-overlay.flash-active { animation: cameraFlash 0.55s forwards; }
@keyframes cameraFlash { 0% { opacity: 0.6; } 100% { opacity: 0; } }

/* Lightbox & Character Modal */
#lightbox-overlay, #character-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.95); z-index: 20000; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
#character-modal { z-index: 30000; backdrop-filter: blur(5px); background: rgba(0,0,0,0.85); }
#lightbox-overlay.active, #character-modal.active { opacity: 1; visibility: visible; }
#lightbox-img { max-width: 90%; max-height: 80vh; object-fit: contain; border: 2px solid var(--accent); box-shadow: 0 0 30px rgba(0,0,0,0.8); transform: scale(0.9); transition: transform 0.3s ease; }
#lightbox-overlay.active #lightbox-img { transform: scale(1); }
.lightbox-caption { margin-top: 15px; color: var(--text-main); font-family: var(--font-head); font-size: 1.2rem; }
.character-card-content { background: var(--panel-bg); width: 400px; max-width: 90%; border-radius: 12px; border: 1px solid var(--accent); box-shadow: 0 0 30px rgba(212, 160, 23, 0.2); position: relative; overflow: hidden; transform: scale(0.9); transition: 0.3s; }
#character-modal.active .character-card-content { transform: scale(1); }
.char-img-wrapper { height: 250px; border-bottom: 4px solid var(--accent); }
#char-modal-img { width: 100%; height: 100%; object-fit: cover; }
.char-info-wrapper { padding: 25px; text-align: center; }
#char-modal-name { font-family: var(--font-head); color: var(--accent); font-size: 1.8rem; margin-bottom: 10px; }
.char-divider { height: 1px; width: 50px; background: rgba(255,255,255,0.2); margin: 0 auto 15px; }
#char-modal-desc { font-family: var(--font-body); color: var(--text-main); }
.close-modal-btn { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.5); color: #fff; width: 30px; height: 30px; border-radius: 50%; border: none; cursor: pointer; z-index: 2; }

/* Progress Bar */
.progress-container { position: fixed; top: 0; left: 0; width: 100%; height: 4px; z-index: 2000; }
.progress-bar { height: 100%; background: var(--accent); width: 0%; box-shadow: 0 0 10px var(--accent); }

/* Parallax Quote */
.parallax-separator { position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; height: 350px; background-attachment: fixed; background-position: center; background-size: cover; display: flex; align-items: center; justify-content: center; text-align: center; margin-top: 60px; margin-bottom: 60px; z-index: 5; box-shadow: inset 0 0 50px #000; }
.parallax-separator::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }
.parallax-content { position: relative; z-index: 2; padding: 20px; max-width: 800px; }
.parallax-quote-text { font-family: var(--font-head); font-size: 1.8rem; font-style: italic; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.parallax-quote-author { display: block; margin-top: 15px; font-size: 1rem; color: var(--accent); font-weight: bold; letter-spacing: 2px; }
@media (max-width: 768px) { .parallax-separator { background-attachment: scroll; height: 250px; } }

/* Mühür */
.stamp-box { position: absolute; top: 20px; right: 20px; z-index: 10; pointer-events: none; opacity: 0; transform: scale(3) rotate(-15deg); transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.stamp-inner { border: 4px solid #c0392b; color: #c0392b; padding: 10px 15px; border-radius: 8px; font-family: 'Black Ops One', sans-serif; font-weight: 900; font-size: 1.2rem; text-transform: uppercase; text-align: center; letter-spacing: 2px; mix-blend-mode: normal;  background-image: url("../assets/images/dust.webp") !important; mask-image: url("../assets/images/dust.webp"); }
html[data-theme="light"] .stamp-inner { mix-blend-mode: multiply; background-color: transparent; }
.stamp-box.stamped { opacity: 0.8; transform: scale(1) rotate(-15deg); }
.timeline-card.shake-it { animation: cardShake 0.3s ease-in-out; }
@keyframes cardShake { 0% { transform: translateX(0); } 25% { transform: translateX(-5px) rotate(-1deg); } 75% { transform: translateX(5px) rotate(1deg); } }

/* Ses Oynatıcı */
.voice-player-container { margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); }
.voice-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: auto; min-width: 180px; margin: 0 auto; padding: 6px 15px; background: transparent; border: 1px solid var(--accent); border-radius: 50px; color: var(--accent); cursor: pointer; transition: all 0.3s ease; outline: none; }
.voice-btn svg { width: 16px; height: 16px; fill: currentColor; }
.voice-btn .btn-text { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.voice-btn.playing { background: var(--accent); color: var(--bg-color); border-color: transparent; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.audio-wave { display: none; align-items: center; gap: 3px; height: 14px; margin-left: 8px; }
.voice-btn.playing .audio-wave { display: flex; }
.wave-bar { width: 2px; height: 100%; background: currentColor; border-radius: 2px; animation: waveAnim 1s ease-in-out infinite; }
.wave-bar:nth-child(1) { animation-delay: 0.0s; } .wave-bar:nth-child(2) { animation-delay: 0.2s; } .wave-bar:nth-child(3) { animation-delay: 0.4s; } .wave-bar:nth-child(4) { animation-delay: 0.6s; } .wave-bar:nth-child(5) { animation-delay: 0.8s; }
@keyframes waveAnim { 0%, 100% { transform: scaleY(0.3); opacity: 0.7; } 50% { transform: scaleY(1); opacity: 1; } }
.voice-btn:not(.playing):hover { background: rgba(255,255,255,0.05); }

/* Notlar ve Kişiler */
.note-card { background: rgba(212, 160, 23, 0.1); border-left: 3px solid var(--accent); padding: 10px 15px; border-radius: 4px; font-size: 0.9rem; color: var(--text-main); margin-bottom: 5px; display: flex; align-items: flex-start; }
.note-card::before { content: ''; flex-shrink: 0; display: inline-block; width: 8px; height: 8px; background-color: var(--accent); margin-right: 12px; margin-top: 6px; transform: rotate(45deg); box-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
.related-people-container { display: flex; flex-direction: row; flex-wrap: wrap; gap: 15px; justify-content: flex-end; border-top: 1px dashed rgba(255,255,255,0.2); margin-top: 15px ; padding-top: 15px; }
.related-person { display: flex; flex-direction: column; align-items: center; cursor: pointer; width: 80px; transition: transform 0.2s; }
.related-person:hover { transform: scale(1.1); }
.person-avatar { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--accent); object-fit: cover; background-color: #000; }
.person-name { font-size: 0.75rem; color: var(--text-muted); text-align: center; }
.related-person:hover .person-name { color: var(--accent); }

/* Footer */
.eternity-footer { position: relative; width: 100%; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; background: linear-gradient(to bottom, var(--bg-color) 0%, #000 40%); overflow: hidden; margin-top: -100px; padding-bottom: 0; z-index: 50; }
.timeline-fade-line { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 4px; height: 200px; background: linear-gradient(to bottom, var(--border-color) 0%, transparent 100%); z-index: 1; }
.final-quote-container { text-align: center; max-width: 800px; margin-bottom: 60px; color: #fff; z-index: 3; }
.final-quote-text { font-family: var(--font-head); font-size: 1.8rem; font-style: italic; opacity: 0.9; text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
.final-signature { display: block; margin-top: 20px; font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 1.4rem; letter-spacing: 3px; }
.anitkabir-silhouette { width: 100%; max-width: 1000px; opacity: 0.4; display: block; margin: 0 auto; mask-image: linear-gradient(to top, black 30%, transparent 100%); pointer-events: none; }
body.eternity-mode .timeline-wrapper, body.eternity-mode .topbar, body.eternity-mode .timeline-header, body.eternity-mode #bg-year-counter { opacity: 0; pointer-events: none; transition: 1.5s; }
@media (max-width: 768px) { .final-quote-text { font-size: 1.2rem; } .eternity-footer { min-height: 80vh; } }

/* Resume Toast */
.resume-toast { position: fixed; bottom: 30px; left: 30px; background: rgba(20, 20, 20, 0.95); border: 1px solid var(--accent); color: #fff; padding: 12px 20px; border-radius: 8px; display: flex; align-items: center; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 20000; cursor: pointer; transform: translateY(100px); opacity: 0; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.resume-toast.visible { transform: translateY(0); opacity: 1; }
.resume-toast:hover { background: #000; border-color: #fff; }
.resume-icon { font-size: 1.5rem; color: var(--accent); animation: spinSlow 10s linear infinite; }
@keyframes spinSlow { 100% { transform: rotate(-360deg); } }
.resume-info { display: flex; flex-direction: column; }
.resume-label { font-size: 0.75rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.resume-year { font-family: var(--font-head); font-size: 1.1rem; color: #fff; font-weight: bold; }
.resume-close { background: transparent; border: none; color: #777; font-size: 1.2rem; cursor: pointer; padding: 0 5px; }
.resume-close:hover { color: #fff; }
@media (max-width: 768px) { .resume-toast { left: 50%; transform: translateX(-50%) translateY(100px); bottom: 90px; width: 90%; justify-content: space-between; } .resume-toast.visible { transform: translateX(-50%) translateY(0); } }

/* --- MADALYA SİSTEMİ --- */
#medal-collection-btn svg { stroke: var(--accent); fill: rgba(212, 160, 23, 0.2); }
#medal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.92); z-index: 60000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.4s ease; backdrop-filter: blur(8px); }
#medal-overlay.open { opacity: 1; visibility: visible; }
.medal-modal-container { width: 1000px; max-width: 95%; height: 80vh; background: linear-gradient(145deg, #1e1e1e, #141414); border: 2px solid var(--accent); border-radius: 12px; padding: 30px; position: relative; display: flex; flex-direction: column; box-shadow: 0 0 50px rgba(0,0,0,0.8); }
.medal-modal-container::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: var(--texture-url); opacity: 0.1; pointer-events: none; z-index: 0; }
.medal-header { text-align: center; margin-bottom: 20px; z-index: 1; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.medal-header h2 { font-family: var(--font-head); color: var(--accent); letter-spacing: 2px; }
.medal-content-wrapper { display: flex; gap: 30px; height: 100%; overflow: hidden; z-index: 1; }
.medal-grid { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr); gap: 10px; flex: 2; overflow-y: auto; padding-right: 10px; }
.medal-slot { background: rgba(255,255,255,0.05); border: 1px solid #333; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; position: relative; aspect-ratio: 1; }
.medal-slot:hover { background: rgba(255,255,255,0.1); border-color: #555; }
.medal-slot img { width: 64px; height: 64px; object-fit: contain; transition: 0.5s; }
.medal-slot.locked img { filter: grayscale(100%) brightness(0.3); opacity: 0.5; transform: scale(0.8); }
.medal-slot.locked::after { content: '🔒'; position: absolute; font-size: 1.2rem; opacity: 0.5; }
.medal-slot.unlocked { border-color: var(--accent); background: rgba(212, 160, 23, 0.1); box-shadow: 0 0 15px rgba(212, 160, 23, 0.1); }
.medal-slot.unlocked img { filter: drop-shadow(0 0 5px var(--accent)); transform: scale(1); }
.medal-slot.unlocked:hover img { transform: scale(1.15) rotate(5deg); }
.medal-detail-panel { flex: 1; background: rgba(0,0,0,0.3); border-radius: 8px; padding: 20px; display: flex; flex-direction: column; align-items: center; text-align: center; border: 1px solid var(--border-color); }
.detail-img-wrapper { width: 150px; height: 150px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: radial-gradient(circle, rgba(212,160,23,0.2) 0%, transparent 70%); }
#detail-medal-img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 20px rgba(0,0,0,0.8)); }
#detail-medal-img.hidden { display: none; }
#detail-medal-name { color: var(--accent); font-family: var(--font-head); margin-bottom: 10px; font-size: 1.5rem; }
#detail-medal-desc { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: #ccc; }
.medal-claim-btn { width: 100%; margin-top: 15px; padding: 10px; background: linear-gradient(90deg, transparent, rgba(212,160,23,0.2), transparent); border: 1px solid var(--accent); border-radius: 4px; color: var(--accent); font-family: var(--font-head); font-weight: bold; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.4s; position: relative; overflow: hidden; }
.medal-claim-btn:hover { background: var(--accent); color: #000; box-shadow: 0 0 20px var(--accent); }
.medal-claim-btn.claimed { border-color: #27ae60; color: #27ae60; background: rgba(39, 174, 96, 0.1); pointer-events: none; }
@media (max-width: 768px) { .medal-content-wrapper { flex-direction: column; } .medal-grid { grid-template-columns: repeat(5, 1fr); max-height: 200px; } .medal-slot img { width: 40px; height: 40px; } }

/* --- DESTEK PENCERESİ (SUPPORT) --- */
#support-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 60000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.4s ease; backdrop-filter: blur(8px); }
#support-overlay.active { opacity: 1; visibility: visible; }
.support-container { width: 800px; max-width: 90%; max-height: 90vh; background: linear-gradient(145deg, #252525, #1a1a1a); border: 1px solid var(--border-color); border-radius: 12px; padding: 40px; position: relative; overflow-y: auto; box-shadow: 0 0 60px rgba(0,0,0,0.8); transform: scale(0.95); transition: 0.3s; }
.support-container::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: var(--texture-url); opacity: 0.15; pointer-events: none; z-index: 0; }
#support-overlay.active .support-container { transform: scale(1); }
.close-support-btn { position: absolute; top: 15px; right: 15px; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; z-index: 10; font-size: 1.2rem; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.close-support-btn:hover { background: var(--crimson); border-color: var(--crimson); transform: rotate(90deg); }
.support-header { text-align: center; margin-bottom: 30px; position: relative; z-index: 2; }
.support-header h2 { font-family: var(--font-head); color: var(--accent); letter-spacing: 2px; font-size: 1.8rem; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); display: inline-block; padding-bottom: 10px; }
.support-header p { font-family: var(--font-body); color: #ccc; font-size: 1rem; line-height: 1.6; max-width: 600px; margin: 0 auto; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; position: relative; z-index: 2; }
.support-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 25px; text-align: center; transition: 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: space-between; }
.support-card:hover { background: rgba(255,255,255,0.06); border-color: var(--accent); transform: translateY(-3px); }
.support-card.full-width { grid-column: 1 / -1; flex-direction: row; text-align: left; gap: 20px; background: linear-gradient(90deg, rgba(212, 160, 23, 0.05), transparent); border: 1px solid rgba(212, 160, 23, 0.3); }
.support-icon { width: 50px; height: 50px; margin-bottom: 15px; color: var(--text-muted); }
.support-card:hover .support-icon { color: var(--accent); }
.full-width .support-icon { width: 60px; height: 60px; margin-bottom: 0; color: var(--accent); flex-shrink: 0; }
.support-card h3 { font-family: var(--font-head); color: #fff; margin-bottom: 10px; font-size: 1.2rem; }
.support-card p { font-family: var(--font-body); color: #aaa; font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; }
.full-width h3 { color: var(--accent); font-size: 1.4rem; }
.full-width p { font-size: 1rem; margin-bottom: 15px; }
.support-action-btn { display: inline-block; padding: 10px 20px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.3); color: #fff; text-decoration: none; font-family: var(--font-body); font-size: 0.9rem; transition: 0.3s; background: transparent; cursor: pointer; }
.support-action-btn:hover { background: #fff; color: #000; }
.support-action-btn.gold-btn { background: var(--accent); border-color: var(--accent); color: #000; font-weight: bold; }
.support-action-btn.gold-btn:hover { background: #fff; border-color: #fff; color: #000; box-shadow: 0 0 15px var(--accent); }
#support-view-main, #support-view-detail { animation: fadeInView 0.5s ease-out; }
@keyframes fadeInView { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.btn-group { display: flex; gap: 10px; margin-top: 15px; flex-wrap: wrap; }
.support-action-btn.outline-btn { border: 1px solid var(--text-muted); color: var(--text-muted); background: transparent; }
.support-action-btn.outline-btn:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.05); }
.back-link-btn { background: none; border: none; color: var(--accent); font-family: var(--font-body); font-size: 0.9rem; cursor: pointer; margin-bottom: 20px; display: flex; align-items: center; transition: 0.3s; padding: 0; }
.back-link-btn:hover { transform: translateX(-5px); color: #fff; }
.manifesto-content { color: #ddd; font-family: var(--font-body); line-height: 1.7; max-height: 70vh; overflow-y: auto; padding-right: 10px; }
.manifesto-content::-webkit-scrollbar { width: 6px; }
.manifesto-content::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 3px; }
.manifesto-header { text-align: center; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.manifesto-header h2 { font-family: var(--font-head); color: #fff; font-size: 1.8rem; margin-bottom: 5px; letter-spacing: 1px; }
.sub-badge { background: rgba(212, 160, 23, 0.15); color: var(--accent); padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; border: 1px solid rgba(212, 160, 23, 0.3); }
.manifesto-section { margin-bottom: 30px; }
.manifesto-section h4 { font-family: var(--font-head); color: var(--accent); font-size: 1.2rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.manifesto-section p { font-size: 1rem; color: #ccc; margin-bottom: 10px; text-align: justify; }
.manifesto-section .note { font-style: italic; color: #888; border-left: 3px solid #555; padding-left: 10px; margin-top: 10px; }
.manifesto-list { list-style: none; padding-left: 20px; margin: 15px 0; }
.manifesto-list li { position: relative; margin-bottom: 8px; color: #ddd; }
.manifesto-list li::before { content: '•'; color: var(--accent); font-weight: bold; position: absolute; left: -15px; }
.highlight-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 20px; border-radius: 8px; text-align: center; }
.highlight-box h4 { justify-content: center; color: #fff; }
.highlight-box p { text-align: center; color: #aaa; }
.highlight-box strong { color: var(--accent); }
.manifesto-footer { text-align: center; margin-top: 30px; }
.large-btn { padding: 15px 30px; font-size: 1.1rem; }
@media (max-width: 768px) {
    .support-grid { grid-template-columns: 1fr; }
    .support-card.full-width { flex-direction: column; text-align: center; }
    .full-width .support-icon { margin-bottom: 15px; width: 40px; height: 40px; }
    .support-container { padding: 20px; width: 95%; }
    .support-header h2 { font-size: 1.4rem; }
    .manifesto-header h2 { font-size: 1.4rem; }
    .btn-group { flex-direction: column; width: 100%; }
    .support-action-btn { width: 100%; text-align: center; }
}

/* --- TARİHİ SÖZLÜK TOOLTIP --- */
.history-term { border-bottom: 1px dashed var(--accent); color: inherit !important; cursor: help; transition: all 0.3s ease; position: relative; z-index: 10; font-weight: bold; }
.history-term:hover { color: var(--accent) !important; background-color: rgba(212, 160, 23, 0.15); border-bottom-style: solid; }
#global-history-tooltip { position: fixed; z-index: 999999; width: 280px; padding: 15px; background: rgba(25, 25, 25, 0.98); border: 1px solid var(--accent); border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.9); backdrop-filter: blur(8px); color: #ddd; font-family: var(--font-body); font-size: 0.95rem; line-height: 1.5; text-align: left; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.2s ease, transform 0.2s ease; pointer-events: none; }
#global-history-tooltip.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#global-history-tooltip strong { display: block; color: var(--accent); font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 768px) { #global-history-tooltip { width: 220px; font-size: 0.85rem; } }

.icon-svg {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}
/* Bazı büyük widgetlar için özel boyut gerekebilir */
.telegram-icon-wrapper img, 
.decision-icon-wrapper img {
    width: 100%;
    height: 100%;
}

/* --- DİĞER İKONLARI BEYAZA ZORLAMA (Map, Filter, Medal) --- */

/* 1. Harita İkonu (Minimize halindeki) */
.map-icon-placeholder svg, 
.map-icon-placeholder {
    color: #ffffff !important;  /* Ana rengi beyaz yap */
    stroke: #ffffff !important; /* Çizgileri beyaz yap */
    fill: currentColor !important;
}

/* 2. Filtre İkonu (Header'daki huni) */
.filter-btn svg {
    stroke: #ffffff !important; /* Çizgi rengini beyaz yap */
    fill: none !important;      /* İçi boş kalsın */
}

/* 3. Nişan/Madalya İkonu (Header'daki) */
#medal-collection-btn svg {
    stroke: #ffffff !important; /* Dış çizgiler tam beyaz */
    fill: rgba(255, 255, 255, 0.15) !important; /* İçi hafif şeffaf beyaz olsun (Siyahın üstünde şık durur) */
}

/* --- NETLIFY FORM TASARIMI --- */
.historical-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px 4px 0 0;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--accent);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.full-width {
    width: 100%;
    margin-top: 10px;
}

/* --- MOBİL DESTEK BUTONU AYARI --- */
@media (max-width: 768px) {
    /* Sağ üst köşeyi (Destek ve Admin'in olduğu yer) görünür yap */
    .area-ur {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        z-index: 100; /* Diğer öğelerin üstünde dursun */
    }

    /* Mobilde "Admin" yazısını gizle, sadece "Destek" kalsın */
    .admin-link {
        display: none !important;
    }

    /* Destek butonunu mobile uygun hale getir */
    .donate-btn {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
        background: rgba(212, 160, 23, 0.2); /* Hafif altın zemin */
        border: 1px solid var(--accent);
    }
}