/* --- AYAZMT2 PREMIUM TEMA CSS --- */

/* CSS DEĞİŞKENLERİ VE PREMIUM RENK PALETİ */
:root {
    --bg-main: #000000;             /* Saf Siyah Arkaplan */
    --bg-navbar: #0c0802;           /* Koyu Kahve/Siyah Premium Panel Tonu */
    --text-cream: #f8efe2;          /* Asil Krem Rengi Yazı */
    --text-gold: #cda870;           /* Ana Altın Vurgu Rengi */
    --text-muted-gold: rgba(207, 166, 103, 0.7); /* Soft Altın Tonu */
    --border-light: rgba(248, 239, 226, 0.08);   /* Yumuşatılmış Taban Çizgi Rengi */
    --premium-gold-grad: linear-gradient(135deg, #ffe0b2 0%, #cda870 50%, #94713a 100%);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* YUMUŞAK SAYFA KAYDIRMA DESTEĞİ */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    background-color: var(--bg-main);
    color: var(--text-cream);
    font-family: var(--font-body);
	cursor: url('img/cursor.png'), auto;
}

/* Linkler ve butonlar üzerinde de özel imlecin korunması için: */
a, button, .nav-btn, .sidebar-link, .dropdown-btn, .char-nav, .nav-arrow-png {
    cursor: url('img/cursor.png'), pointer;
}

/* YATAY PANEL (NAVBAR) TASARIMI */
.navbar {
    width: 100%;
    height: 70px;
    background-color: var(--bg-navbar);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.9);
}

/* PANEL ALTINDAKI ÇIZGIYE LAZER IŞIK ANIMASYONU */
.navbar::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #ffe8c5, transparent);
    background-size: 25% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: laserLeftToRight 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--text-gold), transparent);
    background-size: 25% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: laserRightToLeft 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.8s;
}

@keyframes laserLeftToRight {
    0% { background-position: -30% 0; }
    100% { background-position: 130% 0; }
}

@keyframes laserRightToLeft {
    0% { background-position: 130% 0; }
    100% { background-position: -30% 0; }
}

/* SOL BÖLÜM: Logo & Menü Elemanları */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-img {
    height: 45px; 
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 5px rgba(207, 166, 103, 0.45));
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, rgba(207, 166, 103, 0.3), transparent);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn {
    text-decoration: none;
    color: var(--text-muted-gold);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 4px;
    position: relative;
}

.nav-btn i {
    font-size: 11px;
    color: var(--text-gold);
    opacity: 0.8;
}

.nav-btn:hover, .nav-btn.active {
    color: #ffe8c5;
    text-shadow: 0 0 12px rgba(255, 210, 130, 0.7);
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: #ffe8c5;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-btn:hover::after, .nav-btn.active::after {
    width: 70%;
}

/* ORTA BÖLÜM: GERI SAYIM */
.nav-center {
    position: absolute;
    left: calc(50% + 125px);
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: auto;
}

.countdown-frame {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(6, 4, 2, 0.85);
    border: 1px solid rgba(207, 166, 103, 0.4);
    padding: 6px 24px;
    border-radius: 4px;
    box-shadow: 
        0 0 15px rgba(207, 166, 103, 0.12), 
        inset 0 0 12px rgba(0, 0, 0, 0.8);
    position: relative;
}

.countdown-frame::before, .countdown-frame::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border: 1px solid var(--text-gold);
}
.countdown-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.countdown-frame::after { bottom: -1px; right: -1px; border-left: none; top: none; }

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}

.countdown-item .num {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-gold);
    text-shadow: 0 0 6px rgba(207, 166, 103, 0.5);
    line-height: 1.1;
}

.countdown-item .lbl {
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: 600;
    color: var(--text-cream);
    opacity: 0.65;
    letter-spacing: 0.8px;
    margin-top: 3px;
}

.countdown-colon {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-gold);
    opacity: 0.7;
    margin-bottom: 12px;
}

/* SAĞ BÖLÜM: Açılır Menüler */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: 1px solid rgba(248, 239, 226, 0.15);
    color: var(--text-gold);
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.community-btn {
    background: var(--premium-gold-grad);
    color: #000000 !important;
    border: 1px solid #ffe0b2;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    box-shadow: 0 0 10px rgba(207, 166, 103, 0.25);
}

.community-btn i {
    color: #000000;
}

.community-dropdown:hover .community-btn {
    background: #0c0802;
    color: var(--text-gold) !important;
    border-color: var(--text-gold);
    box-shadow: 0 0 15px rgba(207, 166, 103, 0.4);
}

.community-dropdown:hover .community-btn i {
    color: var(--text-gold);
}

.lang-dropdown:hover .dropdown-btn {
    background-color: rgba(207, 166, 103, 0.12);
    border-color: var(--text-gold);
    color: var(--text-cream);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-navbar);
    border: 1px solid rgba(248, 239, 226, 0.15);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.85);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    margin-top: 6px;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--text-muted-gold);
    padding: 10px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: rgba(205, 168, 112, 0.08);
    color: var(--text-cream);
    padding-left: 15px;
}

.fi {
    width: 18px !important;
    height: 13px !important;
    border-radius: 1px;
    flex-shrink: 0;
}

/* SOL DİKEY YÖNLENDİRME PANELİ (SIDEBAR) */
.sidebar {
    width: 250px;
    height: calc(100vh - 70px);
    background-color: var(--bg-navbar);
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 999;
    border-right: 1px solid var(--border-light);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.6);
    padding: 30px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}
.sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
    background: rgba(207, 166, 103, 0.15);
    border-radius: 2px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--text-gold);
}

.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--text-gold);
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(207, 166, 103, 0.12);
    padding-bottom: 6px;
    text-transform: uppercase;
    font-weight: 700;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-link {
    text-decoration: none;
    color: var(--text-muted-gold);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 4px;
}

.sidebar-link i {
    font-size: 13px;
    width: 16px;
    text-align: center;
    color: var(--text-gold);
    opacity: 0.65;
}

.sidebar-link:hover, .sidebar-link.active {
    color: #ffe8c5;
    background-color: rgba(207, 166, 103, 0.05);
    padding-left: 16px;
    text-shadow: 0 0 10px rgba(255, 210, 130, 0.25);
}

.sidebar-link:hover i, .sidebar-link.active i {
    opacity: 1;
    color: #ffe8c5;
    transform: scale(1.05);
}

.sidebar-link.active {
    background-color: rgba(207, 166, 103, 0.08);
    border-left: 2px solid var(--text-gold);
    border-radius: 0 4px 4px 0;
    padding-left: 14px;
}

/* DİKEY SCROLL EDİLEBİLİR MAİN SARMALAYICI ALAN */
.main-content {
    margin-top: 70px;
    margin-left: 250px; 
    width: calc(100% - 250px);
    height: calc(100vh - 70px);
    overflow-y: auto; 
    overflow-x: hidden;
    scroll-behavior: smooth !important;
}

.main-content::-webkit-scrollbar {
    width: 6px;
}
.main-content::-webkit-scrollbar-track {
    background: transparent;
}
.main-content::-webkit-scrollbar-thumb {
    background: rgba(207, 166, 103, 0.15);
    border-radius: 3px;
}
.main-content::-webkit-scrollbar-thumb:hover {
    background: var(--text-gold);
}

/* GENEL SAYFA BÖLÜM YAPISI */
.page-section {
    min-height: calc(100vh - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 60px 40px;
    overflow: hidden;
    margin: 0 !important;
    scroll-margin-top: 70px; 
}

/* ============================================================ */
/* --- GÜNCEL: DÖRT KÖŞE MİSTİK UZAK DOĞU & MİKRO KARBON TEMA -- */
/* ============================================================ */
.premium-flat-bg {
    background-color: #020101;
    background-image: 
        /* 1. KATMAN: Sol Üst Köşe - Mistik Uzak Doğu Bulutları ve Süzülen Ejderha Silüeti */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cg fill='%23cda870' opacity='0.035'%3E%3Cpath d='M-10,30 C40,30 50,10 90,10 C130,10 140,30 180,30 C210,30 230,15 250,25 C260,30 250,45 220,45 C170,45 150,55 110,55 C70,55 50,40 -10,30 Z'/%3E%3Cpath d='M40,60 C80,60 90,45 120,45 C150,45 160,55 190,55 C210,55 220,65 195,70 C160,75 140,80 110,80 C70,80 60,60 40,60 Z' opacity='0.6'/%3E%3Cpath d='M130,90 Q180,50 230,100 T330,80 Q290,120 230,110 T130,90 Z' opacity='0.8'/%3E%3C/g%3E%3C/svg%3E"),
        
        /* 2. KATMAN: Sağ Üst Köşe - Havada Süzülen Gökyüzü Adaları ve Kadim Kalıntılar */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cg fill='%23cda870' opacity='0.035'%3E%3Cpath d='M280,40 L370,20 L410,50 L350,80 L300,75 Z'/%3E%3Cpath d='M300,75 L350,80 L340,115 L320,100 Z' opacity='0.6'/%3E%3Cpolygon points='250,65 265,60 270,70 258,75'/%3E%3Cpolygon points='230,85 240,80 242,88 235,90' opacity='0.5'/%3E%3Cpath d='M180,95 C220,95 230,85 260,85 C290,85 300,95 340,95 C380,95 400,85 420,100 C390,110 340,105 290,110 C240,110 200,105 180,95 Z' opacity='0.7'/%3E%3C/g%3E%3C/svg%3E"),
        
        /* 3. KATMAN: Sol Alt Köşe - Uzak Doğu Mistik Dağ ve Tapınak Silueti */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 400'%3E%3Cpath d='M0,400 L0,250 L120,140 L280,280 L420,190 L500,320 L500,400 Z' fill='%23cda870' opacity='0.025'/%3E%3Cpath d='M0,400 L0,300 L90,220 L220,330 L350,210 L500,400 Z' fill='%23cda870' opacity='0.035'/%3E%3Cg fill='%23cda870' opacity='0.05'%3E%3Cpath d='M20,400 L120,400 L110,350 L30,350 Z'/%3E%3Cpath d='M10,352 Q70,330 130,352 L120,342 Q70,325 20,342 Z'/%3E%3Crect x='40' y='305' width='60' height='37'/%3E%3Cpath d='M25,307 Q70,285 115,307 L105,299 Q70,280 35,299 Z'/%3E%3Crect x='50' y='275' width='40' height='24'/%3E%3Cpath d='M40,277 Q70,260 100,277 L92,271 Q70,255 48,271 Z'/%3E%3Cpath d='M68,255 L72,255 L70,230 Z'/%3E%3C/g%3E%3C/svg%3E"),
        
        /* 4. KATMAN: Sağ Alt Köşe - Mistik Dağ ve Geleneksel Uzak Doğu Kapısı Silueti */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 400'%3E%3Cpath d='M500,400 L500,220 L360,120 L220,260 L80,170 L0,310 L0,400 Z' fill='%23cda870' opacity='0.02'/%3E%3Cpath d='M500,400 L500,280 L400,190 L260,310 L110,180 L0,400 Z' fill='%23cda870' opacity='0.03'/%3E%3Cg fill='%23cda870' opacity='0.05'%3E%3Crect x='380' y='310' width='10' height='90'/%3E%3Crect x='440' y='310' width='10' height='90'/%3E%3Crect x='365' y='325' width='100' height='8'/%3E%3Cpath d='M355,305 Q415,295 475,305 L470,315 Q415,305 360,315 Z'/%3E%3Crect x='410' y='313' width='10' height='12'/%3E%3C/g%3E%3C/svg%3E"),
        
        /* 5. KATMAN: Soft Karbon Mikro-Nokta Dokusu */
        radial-gradient(rgba(207, 166, 103, 0.025) 15%, transparent 16%),
        
        /* 6. KATMAN: Merkez Odaklı Sıcak Işıltı ve Derin Zifiri Siyah Köşeler */
        radial-gradient(circle at center, rgba(74, 53, 35, 0.45) 0%, rgba(10, 8, 5, 0.98) 72%, #000000 100%);

    /* Konumlandırmalar sırasıyla: Sol Üst, Sağ Üst, Sol Alt, Sağ Alt, Karbon, Merkez Işığı */
    background-position: left top, right top, left bottom, right bottom, center, center;
    /* Üst siluetlerin ekrandaki zarif boyutu (380px), Alttakiler (450px) */
    background-size: 380px auto, 380px auto, 450px auto, 450px auto, 7px 7px, auto;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat, no-repeat;
    background-attachment: local, local, local, local, local, local;
}

/* ============================================================ */
/* --- YENİ: SADE VE PREMİUM MERKEZİ PARLAK FOOTER ARKAPLANI -- */
/* ============================================================ */
.premium-footer {
    background-color: #010000;
    background-image: 
        /* 1. KATMAN: Opaklığı Çok Düşük Mikro-Karbon Nokta Dokusu (Değeri 0.012 yaptık) */
        radial-gradient(rgba(207, 166, 103, 0.012) 15%, transparent 16%),
        
        /* 2. KATMAN: Tam Merkez odaklı parlaklık (Orta kehribar ışığı, kenarlar zifiri karanlık) */
        radial-gradient(circle at center, rgba(94, 69, 47, 0.45) 0%, rgba(8, 6, 4, 0.99) 60%, #000000 100%);
    
    background-size: 6px 6px, auto;
    background-repeat: repeat, no-repeat;
    background-position: center, center;
}

/* --- ÖNSÖZ SAYFA ALANI --- */
#onsoz.page-section {
    min-height: 100vh;            
    padding-top: 100px;           
    padding-bottom: 50px;
    display: flex;
    align-items: center;      
    justify-content: center;
    background-color: var(--bg-main); 
}

/* BÖLÜM ARKA PLAN SİSTEMLERİ */
.video-bg-container, .image-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#onsoz .video-bg-container {
    height: 100vh;                
    position: absolute;           
    top: 0;
}

.video-bg, .image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay, .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.4) 0%,       
        rgba(0, 0, 0, 0.1) 10%,      
        rgba(0, 0, 0, 0.96) 75%,      
        var(--bg-main) 100%          
    );
}

.image-overlay {
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.45) 0%,   
        rgba(0, 0, 0, 0.35) 50%,  
        rgba(0, 0, 0, 0.75) 100%  
    );
}

/* BOYDAN BOYA UZANAN AYRAÇ */
.line-section-divider {
    width: 100%; 
    height: 3px; 
    background: linear-gradient(90deg, rgba(207, 166, 103, 0.2) 0%, rgba(207, 166, 103, 0.8) 50%, rgba(207, 166, 103, 0.2) 100%);
    position: relative;
    z-index: 12;
    margin: 0 !important; 
    box-shadow: 0 0 12px rgba(207, 166, 103, 0.4);
}

.line-section-divider .divider-icon-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 44px; 
    width: auto;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(207, 166, 103, 0.75));
    z-index: 11; 
}

/* İÇERİK MİMARİSİ */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#onsoz .hero-content {
    margin-top: -100px;
}

.hero-content.wide-layout {
    max-width: 1100px;
}

/* LOGO VE SUBTITLE ALANI STİLLERİ */
.hero-logo-container {
    text-align: center;
    margin-bottom: 30px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-png-logo {
    max-height: 135px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(207, 166, 103, 0.5));
    animation: logoPulse 4s ease-in-out infinite;
    will-change: transform, filter;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 20px; 
    font-weight: 300; 
    color: var(--text-cream);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.95;
    animation: subtitleGlow 3s ease-in-out infinite;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1) translateZ(0);
        filter: drop-shadow(0 0 20px rgba(207, 166, 103, 0.5));
    }
    50% {
        transform: scale(1.04) translateZ(0);
        filter: drop-shadow(0 0 32px rgba(207, 166, 103, 0.85));
    }
}

@keyframes subtitleGlow {
    0%, 100% { 
        opacity: 0.65; 
        text-shadow: 0 0 8px rgba(207, 166, 103, 0.1);
        transform: scale(0.99) translateZ(0);
    }
    50% { 
        opacity: 1; 
        text-shadow: 0 0 15px rgba(255, 232, 197, 0.5), 0 0 5px rgba(207, 166, 103, 0.3);
        transform: scale(1) translateZ(0);
    }
}

/* PREMİUM MAT PANEL ÇERÇEVESİ */
.intro-card-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(12, 8, 2, 0.92) 0%, rgba(6, 4, 2, 0.97) 100%);
    border: 1px solid rgba(207, 166, 103, 0.25);
    padding: 45px 50px;
    border-radius: 4px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.95), 
        0 0 30px rgba(207, 166, 103, 0.05), 
        inset 0 0 0 1px rgba(255, 232, 197, 0.03),
        inset 0 0 25px rgba(0, 0, 0, 0.95);
    position: relative;
    width: 100%;
    max-width: 780px;
    backdrop-filter: blur(8px);
}

#oyunabaslangic .intro-card-frame {
    max-width: 1000px; 
}

.intro-frame-icon-wrapper {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.icon-mini-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(12, 8, 2, 0.95) 0%, rgba(6, 4, 2, 0.98) 100%);
    border: 1px solid rgba(207, 166, 103, 0.45);
    border-radius: 4px;
    box-shadow: 
        0 6px 15px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(207, 166, 103, 0.15),
        inset 0 0 10px rgba(0, 0, 0, 0.85);
    position: relative;
}

.icon-mini-frame::before, .icon-mini-frame::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border: 1px solid var(--text-gold);
}
.icon-mini-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.icon-mini-frame::after { bottom: -1px; right: -1px; border-left: none; top: none; }

.intro-frame-icon {
    color: var(--text-gold);
    font-size: 18px;
    text-shadow: 0 0 8px rgba(207, 166, 103, 0.6);
}

.frame-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--text-gold);
    border-style: solid;
    border-width: 0;
    pointer-events: none;
    z-index: 5;
}

.top-left { top: -1px; left: -1px; border-top-width: 2.5px; border-left-width: 2.5px; }
.top-right { top: -1px; right: -1px; border-top-width: 2.5px; border-right-width: 2.5px; }
.bottom-left { bottom: -1px; left: -1px; border-bottom-width: 2.5px; border-left-width: 2.5px; }
.bottom-right { bottom: -1px; right: -1px; border-bottom-width: 2.5px; border-right-width: 2.5px; }

.intro-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(207, 166, 103, 0.6);
    letter-spacing: 4px;
    margin-bottom: 18px;
    margin-top: 20px;
}

.title-divider {
    width: 65%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--text-gold) 50%, transparent 100%);
    position: relative;
    margin-bottom: 30px;
    opacity: 0.8;
}

.title-divider::after {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffe8c5;
    font-size: 10px;
    text-shadow: 0 0 5px var(--text-gold);
}

.description-text {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    color: var(--text-cream);
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-word;
    opacity: 0.85;
    letter-spacing: 0.5px;
    margin-bottom: 16px; 
}

.highlight-gold {
    color: #fff0d4;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 232, 197, 0.4);
}

.intro-text-block-horizontal {
    background: rgba(7, 5, 2, 0.85);
    padding: 24px 35px;
    border-left: 3px solid var(--text-gold);
    border-right: 3px solid var(--text-gold);
    border-top: 1px solid rgba(205, 168, 112, 0.15);
    border-bottom: 1px solid rgba(205, 168, 112, 0.15);
    border-radius: 4px;
    margin: 5px auto 0 auto;
    text-align: center;
    width: 100%;
    max-width: 780px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
}

.start-content-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 35px;
}

.char-info-container.premium-frame {
    flex: 1;
    height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 2, 1, 0.6);
    border: 1px solid rgba(207, 166, 103, 0.35);
    border-radius: 4px;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.95), 0 0 15px rgba(207, 166, 103, 0.05);
    overflow: hidden;
}

.inner-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: rgba(207, 166, 103, 0.6);
    border-style: solid;
    border-width: 0;
    pointer-events: none;
    z-index: 2;
}
.inner-corner.t-l { top: 3px; left: 3px; border-top-width: 1.5px; border-left-width: 1.5px; }
.inner-corner.t-r { top: 3px; right: 3px; border-top-width: 1.5px; border-right-width: 1.5px; }
.inner-corner.b-l { bottom: 3px; left: 3px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.inner-corner.b-r { bottom: 3px; right: 3px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.info-img {
    position: absolute;
    max-height: 85%;
    width: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
    pointer-events: none;
}

.info-img.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    filter: drop-shadow(0 0 15px rgba(205, 168, 112, 0.3));
}

.char-slider-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 380px;
}

.char-display.tall-display {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 290px;
    position: relative;
    width: 100%;
    max-width: 450px;
    overflow: visible;
}

.char-img {
    height: 310px; 
    width: auto;
    object-fit: contain;
    opacity: 0;
    filter: grayscale(1) blur(4px);
    transform: scale(0.3) translateX(0);
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s, filter 0.5s;
    z-index: 1;
    pointer-events: none;
	background: transparent;
	outline: none;
}

.char-img.active {
    opacity: 1;
    filter: grayscale(0) drop-shadow(0 0 25px rgba(205, 168, 112, 0.6));
    transform: scale(1.22) translateX(0);
    z-index: 3;
    pointer-events: auto;
}

.char-img.left {
    opacity: 0.35;
    filter: grayscale(0.6) blur(1px);
    transform: scale(0.8) translateX(-125px);
    z-index: 2;
}

.char-img.right {
    opacity: 0.35;
    filter: grayscale(0.6) blur(1px);
    transform: scale(0.8) translateX(125px);
    z-index: 2;
}

model-viewer.char-img {
    width: 100%;             
    min-width: 300px;        
    height: 310px;
    display: block;
}

model-viewer.char-img.active {
    pointer-events: auto !important; 
}

.slider-controls-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px; 
    margin-top: 25px; 
    width: 100%;
    position: relative; 
    z-index: 20;        
    pointer-events: auto; 
}

.nav-arrow-png {
    height: 22px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.6)) grayscale(0.2);
    animation: arrowPulse 2.4s ease-in-out infinite; 
    transform-origin: center;
}

.nav-arrow-png:hover {
    animation-play-state: paused; 
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px rgba(207, 166, 103, 0.95)) grayscale(0);
}

@keyframes arrowPulse {
    0% { transform: scale(1); filter: drop-shadow(0 3px 6px rgba(0,0,0,0.6)) grayscale(0.2); }
    50% { transform: scale(1.12); filter: drop-shadow(0 0 8px rgba(207, 166, 103, 0.6)) grayscale(0); }
    100% { transform: scale(1); filter: drop-shadow(0 3px 6px rgba(0,0,0,0.6)) grayscale(0.2); }
}

.lang-grid-container {
    display: flex;
    flex-direction: column;
    gap: 30px; 
    width: 100%;
    align-items: center;
}

.lang-grid-row {
    display: flex;
    justify-content: center;
    gap: 18px; 
    width: 100%;
    flex-wrap: nowrap; 
}

.lang-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 72px; 
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lang-grid-item:hover {
    transform: scale(1.18);
}

.lang-grid-item .fi {
    width: 55px !important;  
    height: 55px !important; 
    border-radius: 50% !important; 
    border: 2px solid rgba(207, 166, 103, 0.35); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.65);
    background-size: cover !important; 
    background-position: center !important;
}

.lang-grid-item:hover .fi {
    border-color: var(--text-gold);
    box-shadow: 0 0 20px rgba(207, 166, 103, 0.6), 0 8px 25px rgba(0, 0, 0, 0.8);
}

.lang-name {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-cream);
    letter-spacing: 0.3px;
    opacity: 0.8;
    white-space: nowrap; 
}

.lang-grid-item:hover .lang-name {
    color: var(--text-gold);
    opacity: 1;
    text-shadow: 0 0 8px rgba(207, 166, 103, 0.4);
}

.difficulty-table-wrapper {
    width: 100%;
    margin-top: 20px;
    overflow-x: auto;
    border-radius: 4px;
    border: 1px solid rgba(207, 166, 103, 0.15);
    background: rgba(4, 2, 1, 0.4);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.difficulty-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: var(--font-body);
}

.difficulty-table thead {
    background: linear-gradient(to bottom, rgba(12, 8, 2, 0.95) 0%, rgba(20, 14, 5, 0.95) 100%);
    border-bottom: 2px solid rgba(207, 166, 103, 0.4);
}

.difficulty-table th {
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--text-gold);
    letter-spacing: 1px;
    font-weight: 700;
}

.difficulty-table th i {
    margin-right: 6px;
    font-size: 12px;
    opacity: 0.8;
}

.difficulty-table tbody tr {
    border-bottom: 1px solid rgba(207, 166, 103, 0.08);
    background-color: rgba(0, 0, 0, 0.2);
}

.difficulty-table tbody tr:hover {
    background-color: rgba(207, 166, 103, 0.04);
    box-shadow: inset 0 0 15px rgba(207, 166, 103, 0.05);
}

.difficulty-table td {
    padding: 16px 20px;
    font-size: 13px;
    color: var(--text-cream);
    vertical-align: middle;
}

.difficulty-table td.sys-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff0d4;
    letter-spacing: 0.5px;
    width: 25%;
}

.difficulty-table td.sys-desc {
    opacity: 0.75;
    line-height: 1.5;
    width: 45%;
}

.diff-bar-container {
    position: relative;
    width: 100%;
    min-width: 180px;
    height: 24px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(207, 166, 103, 0.2);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.diff-bar {
    height: 100%;
    background: linear-gradient(90deg, #94713a 0%, #cda870 70%, #ffe0b2 100%);
    box-shadow: 0 0 10px rgba(207, 166, 103, 0.4);
    border-radius: 2px 0 0 2px;
    position: relative;
}

.dynamic-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    animation: barShine 3s infinite linear;
}

@keyframes barShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.diff-text {
    position: absolute;
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9), 0 0 2px rgba(0, 0, 0, 1);
    z-index: 2;
}

@media (max-width: 768px) {
    .difficulty-table th, .difficulty-table td {
        padding: 12px 10px;
        font-size: 12px;
    }
    .diff-bar-container {
        min-width: 130px;
    }
}

.system-flex-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: stretch; 
    gap: 45px;
    margin-top: 15px;
}

.system-gif-container.flush-frame {
    flex: 1;
    height: 440px; 
    max-width: 320px; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 2, 1, 0.9);
    border: 1px solid rgba(207, 166, 103, 0.35);
    border-radius: 4px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.95), 0 0 20px rgba(207, 166, 103, 0.08);
    overflow: hidden;
    padding: 0 !important; 
}

.system-gif-media {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    padding: 20px; 
    display: block;
    filter: drop-shadow(0 0 10px rgba(205, 168, 112, 0.1));
}

.system-text-side {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    gap: 12px;
}

.system-text-frame {
    background: rgba(7, 5, 2, 0.85);
    padding: 35px 40px;
    border-left: 3px solid var(--text-gold);
    border-right: 3px solid var(--text-gold);
    border-top: 1px solid rgba(205, 168, 112, 0.15);
    border-bottom: 1px solid rgba(205, 168, 112, 0.15);
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
}

.system-text-side .description-text {
    text-align: left;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.85;
}

@media (max-width: 992px) {
    .system-flex-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .system-gif-container.flush-frame {
        max-width: 100%;
        width: 100%;
        height: 380px;
    }
    .system-text-side {
        text-align: center;
    }
    .system-text-side .description-text {
        text-align: center;
    }
}

.trailer-video-wrapper {
    width: 100%;
    max-width: 850px;
    height: 440px; 
    position: relative;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(207, 166, 103, 0.3);
    border-radius: 4px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.95), 0 12px 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    margin: 10px auto 0 auto;
}

.trailer-media {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    outline: none;
    filter: drop-shadow(0 0 15px rgba(205, 168, 112, 0.05));
}

@media (max-width: 768px) {
    .trailer-video-wrapper {
        height: 240px;
    }
    #levelaraligi .intro-title {
        font-size: 16px !important;
        letter-spacing: 1px !important;
    }
}

.attention-badge {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #ff3333; 
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.6), 0 0 20px rgba(255, 51, 51, 0.3);
    margin-bottom: 25px;
    margin-top: -10px;
    animation: pulseWarning 1.5s infinite ease-in-out;
}

@keyframes pulseWarning {
    0% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.15); opacity: 1; text-shadow: 0 0 15px rgba(255, 51, 51, 0.9), 0 0 25px rgba(207, 166, 103, 0.4); }
    100% { transform: scale(1); opacity: 0.85; }
}

.trade-flow-container {
    width: 100%;
    background: rgba(4, 2, 1, 0.5);
    border: 1px solid rgba(207, 166, 103, 0.15);
    border-radius: 4px;
    padding: 30px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.flow-title {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-gold);
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 700;
}

.flow-title i {
    margin-right: 6px;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.flow-step {
    flex: 1;
    background: rgba(12, 8, 2, 0.6);
    border: 1px solid rgba(207, 166, 103, 0.08);
    padding: 20px;
    border-radius: 4px;
    position: relative;
}

.flow-step:hover {
    border-color: rgba(207, 166, 103, 0.3);
    transform: translateY(-3px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: rgba(207, 166, 103, 0.25);
    position: absolute;
    top: 10px;
    right: 15px;
}

.flow-step h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    color: #fff0d4;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 700;
}

.flow-step p {
    font-size: 12px;
    color: var(--text-cream);
    opacity: 0.7;
    text-align: left;
    line-height: 1.6;
}

.trade-discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #5865F2 0%, #404eed 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 35px;
    border-radius: 4px;
    border: 1px solid #7289da;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.2);
}

.trade-discord-btn:hover {
    transform: scale(1.03);
    background: #ffffff;
    color: #5865F2 !important;
    border-color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .flow-steps {
        flex-direction: column;
        gap: 15px;
    }
    .trade-discord-btn {
        width: 100%;
        font-size: 11px;
        padding: 12px 15px;
    }
}

.yetkili-bottom-block {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yetkili-wide-frame {
    width: 100%;
    max-width: 850px;
    height: 380px; 
    position: relative;
    background: rgba(4, 2, 1, 0.9);
    border: 1px solid rgba(207, 166, 103, 0.35);
    border-radius: 4px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.95), 0 12px 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    padding: 0 !important; 
}

.yetkili-wide-media {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    padding: 10px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(205, 168, 112, 0.1));
}

@media (max-width: 992px) {
    .yetkili-wide-frame {
        height: 240px;
    }
}

#karaktersatis .system-gif-container.flush-frame {
    max-width: 440px;   
    height: 380px;      
    flex: 1.4;          
}

#karaktersatis .system-gif-media {
    padding: 0 !important;       
    object-fit: contain;         
    filter: drop-shadow(0 0 20px rgba(205, 168, 112, 0.25)); 
}

#karaktersatis .system-text-side {
    flex: 1.6;
}

.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -20px;
    background: radial-gradient(circle, #ffe8c5 0%, rgba(205, 168, 112, 0.2) 80%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(207, 166, 103, 0.5);
    animation: riseUp linear infinite;
}

@keyframes riseUp {
    0% { transform: translateY(0) scale(0.8) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-110vh) scale(1.2) translateX(35px); opacity: 0; }
}

#mobilpc .iphone-17-max-frame {
    width: 275px;
    height: 565px;
    position: relative;
    flex-shrink: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: hidden;
}

.iphone-screen {
    position: absolute;
    top: 4px;
    left: 0;
    width: 100% !important;
    height: 98% !important;
    border-radius: 40px; 
    overflow: hidden;
    z-index: 1;   
    background: #000;
    padding: 0 !important;
    margin: 0 !important;
}

#mobilpc .vertical-content {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important; 
    margin: 0 !important;
    display: block !important;
}

.iphone-frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; 
    pointer-events: none; 
    object-fit: fill;
}

#mobilpc .system-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 565px;
}

#video-original-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

#video-original-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-iphone-container {
    position: relative;
    height: 85vh;                     
    width: calc(85vh * (275 / 565));  
    max-width: 90vw;
    display: block;
    box-shadow: 0 0 50px rgba(207, 166, 103, 0.35);
    background: transparent !important;
    border-radius: 66px; 
    overflow: hidden;    
}

.modal-iphone-screen {
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 99% !important;
    border-radius: 66px; 
    overflow: hidden;
    z-index: 1;
    background: #000;
    padding: 0 !important;
    margin: 0 !important;
}

.modal-video-element {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.modal-iphone-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    object-fit: fill;
}

.modal-close-btn {
    position: absolute;
    top: -20px;
    right: -50px;
    font-size: 42px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.modal-close-btn:hover {
    color: var(--text-gold);
}

.modal-audio-btn {
    position: absolute;
    bottom: 45px; 
    right: 25px;
    width: 44px;
    height: 44px;
    background: rgba(12, 8, 2, 0.9);
    border: 1px solid var(--text-gold);
    border-radius: 50%;
    color: var(--text-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    z-index: 10; 
}

.modal-audio-btn:hover {
    transform: scale(1.1);
    background: var(--text-gold);
    color: #000;
}

@media (max-width: 992px) {
    #mobilpc .system-flex-wrapper {
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }
    #mobilpc .iphone-17-max-frame {
        width: 240px;
        height: 495px;
    }
    .modal-iphone-container {
        height: 75vh;
        width: calc(75vh * (275 / 495));
        border-radius: 38px;
    }
    .modal-close-btn {
        top: -55px;
        right: 0;
    }
    #mobilpc .system-text-side {
        min-height: auto;
        width: 100%;
    }
}

.market-buttons-container {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap; 
}

.market-btn {
    display: inline-flex;
    align-items: center;
    background: #000000 !important; 
    color: #ffffff !important;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 170px;
    height: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.market-icon {
    font-size: 26px !important;
    color: #ffffff;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.market-btn:hover .market-icon {
    color: var(--text-gold); 
}

.market-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    line-height: 1.25;
}

.market-sub {
    font-size: 9px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0.75;
    color: #ffffff;
}

.market-main {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #ffffff;
}

.market-btn:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: var(--text-gold); 
    box-shadow: 0 6px 20px rgba(207, 166, 103, 0.18), 0 0 10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 576px) {
    .market-buttons-container {
        justify-content: center; 
        gap: 12px;
    }
    .market-btn {
        width: 100%; 
        max-width: 220px;
    }
}

/* ============================================================ */
/* --- METIN2 ORİJİNAL OYUN İÇI NESNE MARKET TEMA YAPISI --- */
/* ============================================================ */
.game-market-window {
    width: 100%;
    max-width: 920px;
    background-color: #1a1612;
    background-image: radial-gradient(circle, #241e19 0%, #110e0c 100%);
    border: 3px solid #3c322a;
    border-image: linear-gradient(to bottom, #5a4b3e, #29211a) 1;
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), inset 0 0 20px rgba(0,0,0,0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.game-market-header {
    background: linear-gradient(to bottom, #342920, #1d1611);
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    border-bottom: 2px solid #4d3d30;
}

.window-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #dfcfb9;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px #000;
}

.window-close-btn {
    color: #a49382;
    font-size: 20px;
}
.window-close-btn:hover { color: #fffd; }

.game-market-subbar {
    background: #14110e;
    height: 48px;
    border-bottom: 1px solid #2b231d;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

.user-ep-display {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #3d332a;
    padding: 6px 15px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.ep-amount {
    font-family: var(--font-body);
    font-size: 13px;
    color: #e5c38c;
    font-weight: 600;
}

.btn-ep-buy {
    background: linear-gradient(to bottom, #116311 0%, #083b08 100%);
    border: 1px solid #1a8c1a;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    text-shadow: 1px 1px 1px #000;
}
.btn-ep-buy:hover {
    background: linear-gradient(to bottom, #198019 0%, #0d4f0d 100%);
    border-color: #24b324;
}

.market-search-box {
    margin-left: auto;
    width: 180px;
    height: 24px;
    background: #050403;
    border: 1px solid #2d2620;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    color: #564b41;
    font-size: 11px;
}

.game-market-body {
    display: flex;
    height: 520px;
    background: #0e0c0a;
}

.market-game-tabs {
    width: 210px;
    background: #171310;
    border-right: 1px solid #231c17;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.market-game-tab-btn {
    width: 100%;
    background: linear-gradient(to bottom, #2c241e, #1c1613);
    border: 1px solid #3d3229;
    color: #a89a8d;
    padding: 11px 14px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.market-game-tab-btn:hover, .market-game-tab-btn.active {
    background: linear-gradient(to bottom, #44372e, #29201b);
    border-color: #615042;
    color: #eedcc7;
    text-shadow: 0 0 4px rgba(238, 220, 199, 0.4);
}

.market-game-items-viewport {
    flex: 1;
    padding: 15px 20px;
    overflow-y: auto;
}

.market-game-items-viewport::-webkit-scrollbar { width: 6px; }
.market-game-items-viewport::-webkit-scrollbar-track { background: #0a0807; }
.market-game-items-viewport::-webkit-scrollbar-thumb { background: #2e2621; border-radius: 2px; }

.market-game-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.game-item-row-card {
    background: rgba(22, 18, 14, 0.4);
    border: 1px solid #1f1914;
    height: 82px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
    position: relative;
}
.game-item-row-card:hover {
    background: rgba(43, 35, 28, 0.25);
    border-color: #382d24;
}

.game-slot-circle-frame {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(205, 168, 112, 0.08) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.game-real-inner-slot {
    width: 44px;
    height: 44px;
    background: #000000;
    border: 1px solid #2b231c;
    box-shadow: inset 0 0 8px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.game-item-row-card:hover .game-real-inner-slot {
    border-color: #524337;
}

.game-shop-icon {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
}

.game-shop-item-qty {
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 0 #000;
}

.game-item-name-strip {
    flex: 1;
    background: #090807;
    border: 1px solid #1a1512;
    height: 34px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.game-item-name-strip span {
    font-family: var(--font-body);
    font-size: 13px;
    color: #cbbbae;
    font-weight: 500;
}
.game-item-row-card:hover .game-item-name-strip span {
    color: #eedcc7;
}

.game-item-action-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.game-item-qty-box {
    background: #000000;
    border: 1px solid #1a1512;
    padding: 6px 12px;
    font-family: var(--font-body);
    font-size: 12px;
    color: #8c8175;
    min-width: 70px;
    text-align: center;
}

.game-item-price-btn {
    background: linear-gradient(to bottom, #3a332d, #1e1916);
    border: 1px solid #4e433a;
    color: #dfdfdf;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    min-width: 85px;
    height: 28px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.6);
    text-shadow: 1px 1px 1px #000;
}

.game-item-price-btn:hover {
    background: linear-gradient(to bottom, #4f453d, #29221e);
    border-color: #6b5c50;
    color: #ffffff;
}

.game-shop-inline-tooltip {
    position: absolute;
    top: -10px;               
    left: 52px;               
    width: 260px;
    background: #0a0b10;
    border: 1px solid #b39364;
    padding: 12px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.95);
    z-index: 9999;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(10px); 
}

.game-real-inner-slot:hover .game-shop-inline-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); 
}

.g-tooltip-title {
    color: #ffff00;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.g-tooltip-type {
    color: #ffaa00;
    font-size: 11px;
}

.g-tooltip-desc {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.5;
}

.text-red-restriction {
    color: #ff4d4d !important;
    font-size: 11.5px;
    font-weight: 600;
    text-shadow: 0 0 4px rgba(255, 77, 77, 0.2);
}

@media (max-width: 992px) {
    .game-market-body { flex-direction: column; height: auto; }
    .market-game-tabs { width: 100%; flex-direction: row; flex-wrap: wrap; padding: 10px; }
    .market-game-tab-btn { width: calc(50% - 3px); padding: 8px; font-size: 11px; }
    .game-item-row-card { flex-wrap: wrap; height: auto; padding: 10px; gap: 10px; }
    .game-item-name-strip { width: 100%; order: 3; }
    .game-item-action-group { margin-left: auto; }
}

/* ============================================================ */
/* --- METIN2 ORİJİNAL OYUN İÇİ WIKI TEMA VE ENVANTER GRIDI --- */
/* ============================================================ */
.game-wiki-window {
    width: 100%;
    max-width: 920px;
    background-color: #1a1612;
    background-image: radial-gradient(circle, #241e19 0%, #110e0c 100%);
    border: 3px solid #3c322a;
    border-image: linear-gradient(to bottom, #5a4b3e, #29211a) 1;
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), inset 0 0 20px rgba(0,0,0,0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.game-wiki-header {
    background: linear-gradient(to bottom, #342920, #1d1611);
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    border-bottom: 2px solid #4d3d30;
}

.wiki-window-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #dfcfb9;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px #000;
}

.wiki-window-close-btn {
    color: #a49382;
    font-size: 20px;
}

.game-wiki-body {
    display: flex;
    height: 540px;
    background: #0e0c0a;
}

.wiki-sidebar-menu {
    width: 200px;
    background: #171310;
    border-right: 1px solid #231c17;
    padding: 15px 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wiki-menu-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wiki-group-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gold);
    padding: 4px 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(207, 166, 103, 0.15);
    margin-bottom: 4px;
}

.wiki-group-title i { margin-right: 4px; }

.wiki-tab-btn {
    width: 100%;
    background: linear-gradient(to bottom, #231c17, #130f0c);
    border: 1px solid #2d251f;
    color: #a89a8d;
    padding: 8px 14px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    border-radius: 2px;
}

.wiki-tab-btn:hover {
    background: #1c264a;
    border-color: #384d93;
    color: #ffffff;
}

.wiki-tab-btn.active {
    background: #061647 !important;
    border-color: #12318c !important;
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(255,255,255,0.8);
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.6);
}

.wiki-content-viewport {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #090706;
}

.wiki-content-viewport::-webkit-scrollbar { width: 6px; }
.wiki-content-viewport::-webkit-scrollbar-track { background: #0a0807; }
.wiki-content-viewport::-webkit-scrollbar-thumb { background: #2e2621; border-radius: 2px; }

.wiki-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px; 
    padding: 5px;
}

.wiki-image-card {
    width: 100%;
    background: #110e0c;
    border: 1px solid #2d231a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    border-radius: 2px;
    display: flex;
}

.wiki-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

.wiki-no-content {
    font-family: var(--font-body);
    font-size: 13px;
    color: #a89a8d;
    text-align: center;
    padding: 40px 0;
    opacity: 0.7;
    font-style: italic;
}

@media (max-width: 992px) {
    .game-wiki-body { 
        flex-direction: column; 
        height: auto; 
    }
    .wiki-sidebar-menu { 
        width: 100%; 
        flex-direction: row; 
        flex-wrap: wrap; 
        padding: 10px;
    }
    .wiki-menu-group { 
        width: 100%; 
    }
    .wiki-tab-btn { 
        display: inline-block; 
        width: calc(50% - 4px); 
        margin: 2px; 
        padding: 10px;
    }
    .wiki-content-viewport {
        padding: 10px;
    }
}

/* ============================================================ */
/* --- GELİŞMİŞ GÖRSEL BÜYÜTME (LIGHTBOX) PREMİUM ATMOSFERİ --- */
/* ============================================================ */
.main-content img:not(.nav-arrow-png):not(.iphone-frame-overlay):not(.fi):not(.ep-coin-icon):not(.hero-png-logo):not(.logo-img),
.intro-card-frame img:not(.nav-arrow-png):not(.iphone-frame-overlay):not(.fi):not(.ep-coin-icon):not(.hero-png-logo):not(.logo-img),
.gaya-slots-horizontal img,
.trade-images-gallery img {
    cursor: zoom-in !important;
}

img.hero-png-logo, .premium-footer img, .logo-img, .navbar img {
    cursor: url('img/cursor.png'), auto !important;
}

#image-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.94);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(4px);
}

#image-lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-frame {
    position: relative;
    background: linear-gradient(135deg, #0c0802 0%, #060402 100%);
    border: 2px solid #cda870;
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(207, 166, 103, 0.25);
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.92);
}

#image-lightbox-modal.active .lightbox-frame {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: calc(85vh - 32px);
    object-fit: contain;
    display: block;
    cursor: zoom-out !important; 
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

.lightbox-close-btn {
    position: absolute;
    top: -48px;
    right: -5px;
    font-size: 42px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.lightbox-close-btn:hover {
    color: #cda870;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-frame {
        max-width: 95vw;
        padding: 8px;
    }
    .lightbox-close-btn {
        top: -42px;
        right: 0;
        font-size: 34px;
    }
}

/* ============================================================ */
/* --- YENİ: YAN PANEL PREMİUM GLOBAL TİPOGRAFİ TASARIMI ----- */
/* ============================================================ */

/* [SOL KISIM] AYAZMT2 Dikey Yazı Alanı */
.premium-flat-bg .intro-card-frame::before {
    content: 'AYAZMT2'; /* Solda görünecek metin */
    position: absolute;
    left: -80px;        /* Panelin solundan dışarıdaki uzaklığı */
    top: 25%;           /* Yukarıdan aşağıya hizası */
    
    /* Uzak Doğu Tarzı Dikine Hizalama Sihri */
    writing-mode: vertical-rl;
    text-orientation: upright;
    
    /* Tipografi ve Renk Ayarları */
    font-family: var(--font-heading); /* Keskin ve asil Cinzel fontu */
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gold);
    letter-spacing: 12px; /* Harflerin dikeydeki estetik boşluğu */
    
    /* Gözü yormayan soft opaklık ve hafif parlamalı ışık etkisi */
    opacity: 0.12; 
    text-shadow: 0 0 10px rgba(207, 166, 103, 0.4);
    
    pointer-events: none;
    z-index: 4;
    animation: textLeftMove 6s ease-in-out infinite;
}

/* [SAĞ KISIM] GLOBAL Dikey Yazı Alanı */
.premium-flat-bg .intro-card-frame::after {
    content: 'GLOBAL'; /* Sağda görünecek metin */
    position: absolute;
    right: -85px;       /* Panelin sağından dışarıdaki uzaklığı */
    top: 28%;           /* Asimetrik durması için hafif aşağıda başlar */
    
    /* Uzak Doğu Tarzı Dikine Hizalama Sihri */
    writing-mode: vertical-rl;
    text-orientation: upright;
    
    /* Tipografi ve Renk Ayarları */
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gold);
    letter-spacing: 12px;
    
    /* Sol tarafla uyumlu soft opaklık */
    opacity: 0.12;
    text-shadow: 0 0 10px rgba(207, 166, 103, 0.4);
    
    pointer-events: none;
    z-index: 4;
    animation: textRightMove 6s ease-in-out infinite;
}

/* ============================================================ */
/* --- DİNAMİK YAN PANEL GLOBAL TİPOGRAFİ TASARIMI ----------- */
/* ============================================================ */

/* [SOL KISIM] Dinamik Dikey Yazı Alanı */
.premium-flat-bg .intro-card-frame::before {
    content: attr(data-left); /* Yazıyı JavaScript'ten dinamik alır */
    position: absolute;
    left: -80px;        
    top: 25%;           
    
    writing-mode: vertical-rl;
    text-orientation: upright;
    
    font-family: var(--font-heading); 
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gold);
    letter-spacing: 12px; 
    
    text-shadow: 0 0 10px rgba(207, 166, 103, 0.4);
    pointer-events: none;
    z-index: 4;
    /* 4 saniyelik kusursuz döngü */
    animation: textLeftMove 4s ease-in-out infinite;
}

/* [SAĞ KISIM] Dinamik Dikey Yazı Alanı */
.premium-flat-bg .intro-card-frame::after {
    content: attr(data-right); /* Yazıyı JavaScript'ten dinamik alır */
    position: absolute;
    right: -85px;       
    top: 28%;           
    
    writing-mode: vertical-rl;
    text-orientation: upright;
    
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gold);
    letter-spacing: 12px;
    
    text-shadow: 0 0 10px rgba(207, 166, 103, 0.4);
    pointer-events: none;
    z-index: 4;
    animation: textRightMove 4s ease-in-out infinite;
}

/* --- AKILLI GEÇİŞ VE SÜZÜLME ANİMASYONLARI (Kelimeler 0 konumunda değişir) --- */
@keyframes textLeftMove {
    0%, 100% {
        transform: translateY(15px) scale(0.98);
        opacity: 0; /* Tam bu anda JS kelimeyi değiştirir, oyuncu hissetmez */
    }
    15% {
        transform: translateY(5px) scale(1);
        opacity: 0.12; /* Ekranına göre taban opaklığı buradan ayarlayabilirsin */
    }
    50% {
        transform: translateY(-15px) scale(1.02);
        opacity: 0.18; /* Tepe parlama noktası */
    }
    85% {
        transform: translateY(5px) scale(1);
        opacity: 0.12;
    }
}

@keyframes textRightMove {
    0%, 100% {
        transform: translateY(-15px) scale(0.98);
        opacity: 0;
    }
    15% {
        transform: translateY(-5px) scale(1);
        opacity: 0.12;
    }
    50% {
        transform: translateY(15px) scale(1.02);
        opacity: 0.18;
    }
    85% {
        transform: translateY(-5px) scale(1);
        opacity: 0.12;
    }
}

@media (max-width: 1200px) {
    .premium-flat-bg .intro-card-frame::before,
    .premium-flat-bg .intro-card-frame::after {
        display: none !important;
    }
}

/* ============================================================ */
/* --- BİYOLOG GÖREVLERİ PREMİUM TABLO STİLLERİ -------------- */
/* ============================================================ */
.biyolog-table-wrapper {
    width: 100%;
    margin-top: 20px;
    overflow-x: auto;
    border-radius: 4px;
    border: 1px solid rgba(207, 166, 103, 0.18);
    background: rgba(4, 2, 1, 0.45);
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.95);
}

.biyolog-table-wrapper::-webkit-scrollbar {
    height: 5px;
}
.biyolog-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--text-gold);
    border-radius: 2px;
}

.biyolog-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: var(--font-body);
}

.biyolog-table thead {
    background: linear-gradient(to bottom, rgba(12, 8, 2, 0.98) 0%, rgba(22, 16, 8, 0.98) 100%);
    border-bottom: 2px solid rgba(207, 166, 103, 0.35);
}

.biyolog-table th {
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 12.5px;
    color: var(--text-gold);
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
}

.biyolog-table tbody tr {
    border-bottom: 1px solid rgba(207, 166, 103, 0.06);
    background-color: rgba(0, 0, 0, 0.15);
}

.biyolog-table tbody tr:hover {
    background-color: rgba(207, 166, 103, 0.03);
}

.biyolog-table td {
    padding: 14px 20px;
    font-size: 13px;
    color: var(--text-cream);
    vertical-align: middle;
}

.biyolog-table td.bio-level {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffe8c5;
    width: 10%;
}

.biyolog-table .bio-item-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.biyolog-table .bio-item-cell img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.8));
    background: rgba(0,0,0,0.4);
    padding: 4px;
    border: 1px solid rgba(207, 166, 103, 0.15);
    border-radius: 3px;
}

.biyolog-table td.bio-qty {
    font-weight: 600;
    color: var(--text-gold);
    width: 12%;
}

.biyolog-table td.bio-time {
    opacity: 0.8;
    font-size: 12.5px;
    width: 18%;
}

.biyolog-table td.bio-time i {
    color: var(--text-gold);
    margin-right: 4px;
}

.biyolog-table td.bio-reward {
    color: #fff0d4;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(255, 232, 197, 0.15);
}

@media (max-width: 768px) {
    .biyolog-table th, .biyolog-table td {
        padding: 12px 10px;
        font-size: 12px;
    }
    .biyolog-table .bio-item-cell img {
        width: 28px;
        height: 28px;
    }
}

/* ============================================================ */
/* --- HIZLI KANAL DİNAMİK ŞERİT (YATAY BUTON) TASARIMI ------- */
/* ============================================================ */
.premium-rotator-strip {
    width: 100%;
    margin-top: 40px;
    padding: 16px 20px;
    background: linear-gradient(90deg, transparent 0%, rgba(207, 166, 103, 0.08) 50%, transparent 100%);
    border-top: 1px solid rgba(207, 166, 103, 0.2);
    border-bottom: 1px solid rgba(207, 166, 103, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hKanal-dynamic-text {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-gold);
    font-weight: 700;
    letter-spacing: 6px; /* Harfler arası estetik boşluk */
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    text-shadow: 0 0 15px rgba(207, 166, 103, 0.3);
    animation: hKanalFade 4s ease-in-out infinite; /* JS ile senkron 4sn döngü */
}

@keyframes hKanalFade {
    0%, 100% { opacity: 0; transform: scale(0.98); }
    20%, 80% { opacity: 1; transform: scale(1); }
}

/* Mobil uyum ayarı */
@media (max-width: 768px) {
    #hKanal-dynamic-text {
        font-size: 11px;
        letter-spacing: 3px;
    }
}

/* ============================================================ */
/* --- MAYMUN ZİNDANLARI PREMİUM YATAY STACK TASARIMI --------- */
/* ============================================================ */
.dungeon-stack-container {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    max-width: 875px; /* Tam istediğin yatay genişlik sınırı */
    margin: 0 auto;
}

.dungeon-row-card {
    position: relative;
    width: 100%;
    height: 281px; /* Tam istediğin dikey yükseklik sınırı */
    border: 1px solid rgba(207, 166, 103, 0.2);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9);
}

.dungeon-row-card:hover {
    border-color: rgba(207, 166, 103, 0.45);
    box-shadow: 0 15px 35px rgba(207, 166, 103, 0.12);
}

.dungeon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* KAPALI GÖRSELLERİN RENGİNİ SİYAH/KARANLIK YAPMA SİHRETMİ */
.dungeon-row-card.closed .dungeon-img {
    filter: grayscale(1) brightness(0.3) contrast(0.95);
}

/* Sol Üst Köşe Durum Rozetleri */
.dungeon-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 3px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.9);
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* YEŞİL RENKTE - AÇIK */
.dungeon-badge.open {
    background: linear-gradient(to bottom, #116311 0%, #062b06 100%);
    border: 1px solid #24b324;
    color: #ffffff;
    animation: activeDungeonGlow 2s infinite ease-in-out;
}

/* KIRMIZI RENKTE - KAPALI */
.dungeon-badge.closed {
    background: linear-gradient(to bottom, #7a0c0c 0%, #3a0303 100%);
    border: 1px solid #ff3333;
    color: #ffcccc;
}

/* Zindan İsim Karartma Kuşağı */
.dungeon-overlay-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-cream);
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px #000;
    z-index: 5;
}

.dungeon-row-card.closed .dungeon-overlay-title {
    color: rgba(248, 239, 226, 0.35); /* Kapalı olanların yazısını da softlaştırır */
}

@keyframes activeDungeonGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(36, 179, 36, 0.4); filter: brightness(1); }
    50% { box-shadow: 0 0 15px rgba(36, 179, 36, 0.8); filter: brightness(1.1); }
}

/* Mobil Ekran Koruma Kalkanı */
@media (max-width: 992px) {
    .dungeon-row-card {
        height: 190px; /* Mobil ekranlarda en-boy oranının bozulmaması için otomatik küçülme */
    }
    .dungeon-overlay-title {
        font-size: 13px;
        padding: 12px 15px;
    }
}

/* ============================================================ */
/* --- GÜNCEL: ALAN BOSSLARI BÜYÜTÜLMÜŞ PREMİUM SLIDER -------- */
/* ============================================================ */
.boss-slider-viewport {
    width: 100%;
    max-width: 820px; /* Görseller daha net görünsün diye yatay sınır büyütüldü */
    position: relative;
    margin: 0 auto;
    overflow: hidden; 
}

.boss-slider-track {
    display: flex;
    width: max-content;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.boss-slide-item {
    width: 820px;  /* Yeni premium genişlik */
    height: 200px; /* Yeni premium yükseklik */
    position: relative;
    flex-shrink: 0;
    background: rgba(4, 2, 1, 0.95);
    border: 1px solid rgba(207, 166, 103, 0.35);
    border-radius: 4px;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.95), 0 0 20px rgba(207, 166, 103, 0.05);
    overflow: visible; /* İsim etiketinin yukarı taşabilmesi için visible yapıldı */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.boss-drop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 3px;
}

/* Boss Adı Rozeti - Tam istediğin gibi daha yukarı, çerçeveyi asilce kesen konuma alındı */
.boss-name-tag {
    position: absolute;
    top: 4px; /* Çerçevenin tam üst çizgisine asılı şık bir arayüz rozeti oldu */
    left: 20px;
    background: linear-gradient(to bottom, #14100c, #070504);
    border: 1px solid rgba(207, 166, 103, 0.6);
    padding: 5px 16px;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-gold);
    letter-spacing: 1px;
    border-radius: 3px;
    z-index: 10;
    text-shadow: 1px 1px 2px #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.85);
}

.boss-slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    width: 100%;
}

/* Mobil Ekran Duyarlılık Kalkanı */
@media (max-width: 860px) {
    .boss-slider-viewport {
        max-width: 100%;
        overflow: hidden;
    }
    .boss-slide-item {
        width: 100%;
        height: auto;
        aspect-ratio: 820/200;
    }
    .boss-name-tag {
        top: 8px; /* Mobil ekranlarda taşma yapmaması için güvenli iç konuma çekilir */
        left: 10px;
        font-size: 10px;
        padding: 3px 10px;
    }
}

/* ============================================================ */
/* --- AT SİSTEMİ PREMİUM DİKEY SCROLL PANEL TASARIMI -------- */
/* ============================================================ */
.horse-scroll-panel {
    flex: 1.3;
    height: 500px; /* Görsel kutusuyla tam eşit dikey yükseklik sınırı */
    overflow-y: auto;
    padding-right: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Panel İçi Scrollbar Özelleştirme */
.horse-scroll-panel::-webkit-scrollbar {
    width: 5px;
}
.horse-scroll-panel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}
.horse-scroll-panel::-webkit-scrollbar-thumb {
    background: var(--text-gold);
    border-radius: 3px;
}

/* Her Bir Seviye Kartı */
.horse-level-row {
    background: rgba(7, 5, 2, 0.85);
    border: 1px solid rgba(207, 166, 103, 0.15);
    border-radius: 4px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.horse-level-row:hover {
    border-color: rgba(207, 166, 103, 0.4);
    background: rgba(14, 10, 5, 0.9);
}

.horse-level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(207, 166, 103, 0.1);
    padding-bottom: 6px;
}

.horse-level-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #fff0d4;
    letter-spacing: 0.5px;
}

/* At Türü Rozetleri */
.horse-type-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.horse-type-badge.acemi {
    background: rgba(205, 168, 112, 0.12);
    color: var(--text-gold);
    border: 1px solid rgba(207, 166, 103, 0.25);
}

.horse-type-badge.zirhli {
    background: rgba(88, 101, 242, 0.12);
    color: #8c9eff;
    border: 1px solid rgba(88, 101, 242, 0.35);
}

.horse-type-badge.asker {
    background: rgba(36, 179, 36, 0.15);
    color: #24b324;
    border: 1px solid #24b324;
}

/* Gereksinim Grubu (Madalyon & Yang) */
.horse-req-grid {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.horse-req-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-cream);
    opacity: 0.85;
}

.horse-req-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    background: rgba(0,0,0,0.4);
    padding: 2px;
    border: 1px solid rgba(207, 166, 103, 0.1);
    border-radius: 3px;
}

/* Ödül Kutusu */
.horse-reward-box {
    font-size: 12.5px;
    color: #eedcc7;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.3);
    padding: 6px 12px;
    border-radius: 3px;
}

.horse-reward-box i {
    color: #24b324;
    font-size: 11px;
}

/* Mobil Ekran Duyarlılık Kalkanı */
@media (max-width: 992px) {
    #atsistemi .system-gif-container {
        max-width: 100% !important;
        height: 220px !important;
    }
    .horse-scroll-panel {
        height: 380px;
        width: 100%;
    }
}

/* --- EFSUN TABLOSU PREMIUM STİLLERİ --- */
.efsun-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 8px;
    background: rgba(12, 8, 2, 0.6);
    border: 1px solid rgba(207, 166, 103, 0.15);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.premium-efsun-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-cream);
}

.premium-efsun-table thead tr {
    background: rgba(207, 166, 103, 0.1);
    border-bottom: 2px solid rgba(207, 166, 103, 0.3);
}

.premium-efsun-table th {
    padding: 14px 20px;
    font-family: var(--font-heading);
    color: var(--text-gold);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
}

.premium-efsun-table td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(248, 239, 226, 0.05);
}

.premium-efsun-table tbody tr:hover {
    background: rgba(248, 239, 226, 0.02);
}

.premium-efsun-table .efsun-name {
    font-weight: 600;
    color: rgba(248, 239, 226, 0.85);
}

.highlight-gold-text {
    color: var(--text-gold);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(207, 166, 103, 0.3);
}

/* --- DÖNÜŞÜMLER TABLOSU PREMIUM STİLLERİ --- */
.donusum-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 8px;
    background: rgba(12, 8, 2, 0.6);
    border: 1px solid rgba(207, 166, 103, 0.15);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.premium-donusum-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-cream);
}

.premium-donusum-table thead tr {
    background: rgba(207, 166, 103, 0.1);
    border-bottom: 2px solid rgba(207, 166, 103, 0.3);
}

.premium-donusum-table th {
    padding: 14px 20px;
    font-family: var(--font-heading);
    color: var(--text-gold);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
}

.premium-donusum-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(248, 239, 226, 0.05);
    vertical-align: middle;
}

.premium-donusum-table tbody tr:hover {
    background: rgba(248, 239, 226, 0.02);
}

/* Karakter Hücreleri Renk Kodları */
.char-cell {
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}
.warrior-color { color: #e74c3c; }
.ninja-color { color: #2ecc71; }
.sura-color { color: #9b59b6; }
.shaman-color { color: #e67e22; }

/* Eşya İkon ve Metin Hücre Yapısı */
.item-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.table-item-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.6));
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(207, 166, 103, 0.1);
    border-radius: 4px;
    padding: 2px;
}

.target-item {
    color: var(--text-gold);
    font-weight: 600;
    text-shadow: 0 0 6px rgba(207, 166, 103, 0.2);
}

/* Animasyonlu Geçiş Oku */
.arrow-cell {
    text-align: center;
    color: rgba(207, 166, 103, 0.4);
}

.animated-arrow {
    animation: arrowPulse 1.5s infinite ease-in-out;
}

@keyframes arrowPulse {
    0% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(4px); opacity: 1; color: var(--text-gold); }
    100% { transform: translateX(0); opacity: 0.4; }
}

/* ============================================================ */
/* --- EVRENSEL MOBİL VE TABLET (IPAD) RESPONSIVE SİSTEMİ ----- */
/* ============================================================ */
@media (max-width: 1024px) {
    /* 1. Sol Menünün Kaldırılması ve İçerik Alanı Güvenliği */
    .sidebar {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 70px);
        overflow-x: hidden;
    }

    /* 2. Tek Tip Premium Arkaplan Rengi ve Düşük Opaklıklı Karbon Yapısı */
    .image-bg-container, .image-bg {
        display: none !important; /* Önsöz videosu hariç tüm arkaplan resimleri kaldırıldı */
    }

    body, .page-section, .premium-flat-bg {
        background-color: #050403 !important; 
        background-image: radial-gradient(rgba(207, 166, 103, 0.02) 15%, transparent 16%) !important; 
        background-size: 6px 6px !important;
        background-repeat: repeat !important;
        background-position: center !important;
    }

    #onsoz.page-section {
        background: none !important;
        background-color: #000000 !important; 
    }

    /* 3. Ayraçların Büyütülmesi ve Sistemlerin Yaklaştırılması */
    .page-section {
        padding: 30px 0px !important; 
        width: 100% !important;
        max-width: 100% !important;
    }

    .line-section-divider {
        display: block !important;
        width: 100% !important;
        height: 2.5px !important; 
        background: linear-gradient(90deg, transparent 0%, rgba(207, 166, 103, 0.7) 50%, transparent 100%) !important;
        margin: 25px auto !important; 
        position: relative !important;
        clear: both !important;
        z-index: 12 !important;
        box-shadow: 0 0 10px rgba(207, 166, 103, 0.3) !important;
    }

    .line-section-divider .divider-icon-img {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        max-height: 36px !important; 
        transform: translate(-50%, -50%) scale(1.1) !important;
        display: block !important;
    }

    .intro-card-frame {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        padding: 35px 14px 25px 14px !important;
        margin: 0 !important;
    }

    /* 4. Başlık ve Uyarı Yazısı Düzenlemeleri */
    .intro-title {
        font-size: 18px !important;
        letter-spacing: 1.5px !important;
        text-align: center !important;
        margin: 15px auto 10px auto !important;
        width: 100% !important;
    }

    .title-divider {
        margin: 0 auto 20px auto !important;
        width: 75% !important;
    }

    .attention-badge {
        font-size: 12.5px !important;
        letter-spacing: 1px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        white-space: normal !important;
        display: block !important;
    }

    @keyframes pulseWarning {
        0% { transform: scale(1); opacity: 0.85; }
        50% { transform: scale(1.03); opacity: 1; text-shadow: 0 0 10px rgba(255, 51, 51, 0.8); }
        100% { transform: scale(1); opacity: 0.85; }
    }

    #onsoz.page-section {
        padding-top: 85px !important;
    }

    .hero-png-logo {
        max-height: 75px !important;
        margin: 0 auto !important;
    }

    .hero-subtitle {
        font-size: 11px !important;
        letter-spacing: 1px !important;
    }

    /* 5. Üst Panel (Navbar) Düzenlemesi */
    .navbar {
        padding: 0 8px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .nav-left, .nav-right {
        display: contents !important;
    }

    .nav-logo, .nav-divider, .nav-center {
        display: none !important;
    }

    /* SOL KISIM: Kusursuz Milimetrik Merkezlenmiş Topluluk Butonu */
    .community-dropdown {
        order: 1 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }

    .community-btn {
        font-size: 0 !important; /* Yazıyı tamamen ez ve gizle */
        padding: 0 !important;
        margin: 0 !important;
        width: 36px !important;
        height: 36px !important;
        display: flex !important;   
        align-items: center !important;     
        justify-content: center !important;  
        min-width: unset !important;
        position: relative !important;
    }

    /* Yeni İkonun Butonun Tam Ortasına Oturtulması (Absolute Center Garantisi) */
    .community-btn i:first-child {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 16px !important; 
    }

    .community-btn i:first-child::before {
        content: "\f1e0" !important; /* Mobil için modern Share/Sosyal Ağ ikonu */
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
        font-size: 16px !important;
        color: #000000 !important;
    }

    .community-dropdown:hover .community-btn i:first-child::before {
        color: var(--text-gold) !important;
    }

    .community-dropdown .dropdown-content {
        width: 160px !important;
        left: 0 !important;
        right: auto !important;
        z-index: 99999 !important;
    }

    /* ============================================================ */
    /* --- OYUNA BAŞLANGIÇ MOBİL SLIDER (GÖRSEL SOLDAN - CHAR SAĞDAN) */
    /* ============================================================ */
    .start-content-wrapper {
        display: flex !important;
        flex-direction: row !important; /* Masaüstü mantığı: Görsel solda sabit, Karakter sağda slider */
        gap: 10px !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 250px !important; 
        width: 100% !important;
    }

    /* Sol Taraftaki Sabit Bilgi Kartı Alanı */
    .char-info-container.premium-frame {
        width: 48% !important;
        height: 100% !important;
        flex: unset !important;
        background: rgba(4, 2, 1, 0.5) !important;
        border: 1px solid rgba(207, 166, 103, 0.25) !important;
        padding: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .info-img {
        max-height: 95% !important;
        max-width: 95% !important;
        object-fit: contain !important;
        position: absolute !important;
    }

    /* Sağ Taraftaki Karakter Alanı */
    .char-slider-side {
        width: 48% !important;
        height: 100% !important;
        flex: unset !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
    }

    .char-display.tall-display {
        height: 170px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }

    /* Karakter Modelinin Taşma Sorununu Çözen Ölçeklendirme */
    .char-img.active {
        opacity: 1 !important;
        filter: grayscale(0) drop-shadow(0 0 15px rgba(205, 168, 112, 0.5)) !important;
        transform: scale(1.1) translateX(0) !important; 
        position: relative !important;
        z-index: 3 !important;
        pointer-events: auto !important;
        display: block !important;
    }

    /* Mobilde 3D Model Kapsayıcısının Zorunlu Genişlik Taşmasını Engelliyoruz */
    model-viewer.char-img {
        min-width: unset !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* Masaüstü yan karakter önizlemelerini mobilde temizleyen görünmezlik filtreleri */
    .char-img.left, .char-img.right {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        display: none !important;
    }

    /* Alt Ok Buton Kontrolleri */
    .slider-controls-bottom {
        gap: 35px !important; 
        margin-top: 10px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* ============================================================ */
    /* --- DİĞER MODÜLER MOBİL RESPONSIVE BİLEŞENLERİ ------------- */
    /* ============================================================ */

    /* ORTA KISIM: 4 Ana Buton Çerçevesi */
    .nav-links {
        order: 2 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2px !important;
        flex: 1 !important;
        margin: 0 6px !important;
        padding: 4px 3px !important;
        list-style: none !important;
        background: rgba(0, 0, 0, 0.5) !important;
        border: 1px solid rgba(207, 166, 103, 0.25) !important;
        border-radius: 4px !important;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8) !important;
        position: relative !important;
    }

    .nav-links::before, .nav-links::after {
        content: '' !important;
        position: absolute !important;
        width: 3px !important;
        height: 3px !important;
        border: 1px solid var(--text-gold) !important;
    }
    .nav-links::before { top: -1px; left: -1px; border-right: none !important; border-bottom: none !important; }
    .nav-links::after { bottom: -1px; right: -1px; border-left: none !important; border-top: none !important; }

    .nav-btn {
        font-size: 9px !important; 
        padding: 4px 4px !important;
        letter-spacing: -0.4px !important;
        background: transparent !important;
        border: none !important;
    }

    .nav-btn i, .nav-btn::after {
        display: none !important;
    }

    /* SAĞ KISIM: Dil Seçenekleri */
    .lang-dropdown {
        order: 3 !important;
    }

    .lang-dropdown .dropdown-btn {
        padding: 0 5px !important;
        height: 36px !important;
        display: inline-flex !important;
        align-items: center;
        gap: 4px !important;
        font-size: 11px !important;
    }

    .lang-dropdown .dropdown-btn .lang-text {
        display: inline-block !important;
        color: var(--text-gold) !important;
    }

    .community-btn .arrow-icon, .lang-dropdown .arrow-icon {
        display: none !important;
    }

    .lang-dropdown-content {
        right: 0 !important;
        left: auto !important;
    }

    /* Global Dil Desteği Paneli */
    .lang-grid-container {
        gap: 15px !important;
        width: 100% !important;
    }

    .lang-grid-row {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px 6px !important;
    }

    .lang-grid-item {
        width: 88px !important;
    }

    .lang-grid-item .fi {
        width: 38px !important;
        height: 38px !important;
    }

    .lang-name {
        font-size: 12.5px !important;
    }

    /* Nesne Market & Wiki Mobil Scroll Yönetimi */
    .game-market-window, .game-wiki-window {
        height: 480px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .game-market-body, .game-wiki-body {
        flex-direction: column !important;
        flex: 1 !important;
        height: calc(100% - 38px) !important;
        overflow: hidden !important;
    }

    .market-game-tabs, .wiki-sidebar-menu {
        width: 100% !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding: 6px !important;
        gap: 6px !important;
        height: 50px !important;
        flex-shrink: 0 !important;
        background: #110e0c !important;
    }

    .market-game-tab-btn, .wiki-tab-btn {
        flex: 0 0 auto !important;
        width: auto !important;
        padding: 6px 14px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
    }

    .wiki-menu-group {
        display: flex !important;
        flex-direction: row !important;
        gap: 4px !important;
    }

    .wiki-group-title {
        display: none !important;
    }

    .market-game-items-viewport, .wiki-content-viewport {
        flex: 1 !important;
        height: 100% !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        padding: 12px 8px !important;
    }

    .game-item-row-card {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        height: 74px !important;
        padding: 0 8px !important;
        gap: 8px !important;
    }

    .game-slot-circle-frame { width: 48px; height: 48px; }
    .game-real-inner-slot { width: 38px; height: 38px; }
    .game-shop-icon { max-width: 26px; max-height: 26px; }
    .game-item-name-strip { flex: 1 !important; height: 32px !important; padding: 0 8px !important; }
    .game-item-name-strip span { font-size: 11.5px !important; }
    .game-item-action-group { gap: 4px !important; }
    .game-item-qty-box { min-width: 50px !important; font-size: 10.5px !important; padding: 5px 2px !important; }
    .game-item-price-btn { min-width: 65px !important; font-size: 11px !important; height: 26px !important; }

    /* Tablolar */
    .difficulty-table-wrapper, .biyolog-table-wrapper {
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .difficulty-table, .biyolog-table {
        width: auto !important;
        min-width: 680px !important;
    }

    /* Alan Bossları Sürgülü Alanı */
    .boss-slider-viewport {
        max-width: 100% !important;
        width: 100% !important;
    }

    .boss-slide-item {
        width: calc(100vw - 28px) !important; 
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 6 !important;
    }

    .boss-drop-img {
        object-fit: contain !important;
        background-color: rgba(0, 0, 0, 0.4);
    }

    .boss-name-tag {
        top: 6px !important;
        left: 10px !important;
        font-size: 10px !important;
        padding: 3px 10px !important;
    }

    /* Mobil PC Mockup ve Sürgüler */
    #mobilpc .iphone-17-max-frame {
        width: 190px !important;
        height: 390px !important;
        margin: 0 auto !important;
    }

    .system-flex-wrapper {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .system-text-frame {
        padding: 20px 14px !important;
    }

    .description-text {
        font-size: 12.5px !important;
        line-height: 1.65 !important;
        text-align: center !important;
    }

    .system-text-side .description-text {
        text-align: center !important;
    }

    .craft-column {
        width: 100% !important;
        max-width: 100% !important;
    }

    .craft-column .system-gif-container.flush-frame {
        max-height: 320px !important;
    }
}

/* Mobil Görünüm Ayarları (Masaüstünü Etkilemez) */
@media (max-width: 768px) {
    /* Açılan paneldeki bayrak simgelerini gizler */
    .lang-dropdown-content .lang-option .fi {
        display: none !important;
    }

    /* Bayraklar gizlenince yazıların panelde daha düzenli durması için (İsteğe bağlı) */
    .lang-dropdown-content .lang-option {
        justify-content: center; /* Yazıları ortalar */
        text-align: center;
        padding: 10px 0; /* Tıklama alanını rahatlatır */
    }
}