/* Hikayeye Özel Tema Ayarları (Zaman Boşluğu, Cıva ve Altın Gücü) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #060913; /* Derin Uzay / Boşluk Siyahı */
    color: #b0b5c6; /* Cıva Grisi Yazı Rengi */
    line-height: 1.8;
    overflow-x: hidden;
}

/* Üst Başlık Düzeni */
.main-header {
    background: linear-gradient(180deg, #101626 0%, #060913 100%);
    padding: 20px;
    border-bottom: 2px solid #d4af37; /* Altın Kanatların Sarısı */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 15px auto;
    flex-wrap: wrap;
    gap: 15px;
}

.production-credit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e5e7eb;
}

.prod-logo {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

.manga-branding {
    text-align: center;
    margin-top: 10px;
}

.manga-logo {
    max-height: 110px;
    max-width: 85%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

/* Gelişmiş Özel Dil Seçim Ekranı */
.language-selector {
    position: relative;
    display: inline-block;
}

.lang-trigger-btn {
    background-color: #101626;
    color: #cbd5e1;
    border: 1px solid #334155;
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-trigger-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 110%;
    background-color: #101626;
    border: 1px solid #334155;
    border-radius: 6px;
    min-width: 160px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    overflow: hidden;
    z-index: 200;
}

.lang-dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.lang-dropdown-menu button {
    background: none;
    border: none;
    color: #cbd5e1;
    padding: 12px 16px;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-dropdown-menu button:hover {
    background-color: #1e293b;
    color: #d4af37;
}

/* Navigasyon / Bölüm Butonları */
.chapter-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 35px 0;
}

.nav-btn {
    background-color: #101626;
    color: #e5e7eb;
    border: 1px solid #d4af37;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 1px;
}

.nav-btn:hover, .nav-btn.active {
    background: linear-gradient(135deg, #d4af37 0%, #aa8416 100%);
    color: #060913;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

/* Manga Panel / Okuma Alanı */
.manga-container {
    max-width: 850px;
    margin: 0 auto 60px auto;
    padding: 35px;
    background-color: #0b1120;
    border-radius: 12px;
    border: 1px solid #1e293b;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.chapter-content {
    display: none;
}

.active-content {
    display: block;
}

.chapter-title {
    color: #d4af37;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.chapter-text p {
    margin-bottom: 25px;
    text-align: left;
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.9;
}

.chapter-text strong {
    color: #ff5e7e;
    font-weight: 600;
    background: linear-gradient(120deg, rgba(255,94,126,0.15) 0%, rgba(255,94,126,0) 100%);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Coming Soon Box */
.coming-soon-box {
    text-align: center;
    padding: 120px 20px;
}

.coming-soon {
    font-size: 3.5rem;
    font-weight: 900;
    color: #a1a1aa;
    letter-spacing: 6px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Footer & Yayımcı-Telif Alanı */
footer {
    background-color: #03050a;
    padding: 30px 20px;
    border-top: 1px solid #1e293b;
    margin-top: 80px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.copyright {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.copyright b {
    color: #ff5e7e;
}

.publisher {
    color: #64748b;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.publisher b {
    color: #d4af37;
}

/* Animasyonlar */
.animate-fade-in { animation: fadeIn 1s ease-out forwards; }
.animate-slide-up { animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.animate-pulse { animation: pulse 2s infinite ease-in-out; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; color: #a1a1aa; }
    50% { transform: scale(1.05); opacity: 1; color: #d4af37; text-shadow: 0 0 25px rgba(212, 175, 55, 0.6); }
}

@media (max-width: 600px) {
    .header-top { flex-direction: column; align-items: center; }
    .manga-container { padding: 20px; }
    .chapter-title { font-size: 1.6rem; }
}