/* --- Temel Sifirlama ve Fontlar --- */
/* 1. Tüm Sitede Normal Gezinme */
/* 1. Tüm Sitede Normal Gezinme ve Metin Seçimini Engelleme */
html, body {
    cursor: url('images/fare/normal.png'), auto !important;
    /* Yazı seçmeyi engeller ki imleç metin seçiciye (I) dönüşmesin */
    -webkit-user-select: none; 
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 2. Linklerin ve Butonların Üzerine Gelince */
a, button, .nav-button, .tab-btn, .tab-button, .rank-nav a, input[type="submit"] {
    cursor: url('images/fare/click1.png'), pointer !important;
}

/* 3. Mouse Basılıyken (JS ile eklediğimiz sınıf) */
.clicking, .clicking * {
    cursor: url('images/fare/click2.png'), auto !important;
}

/* Sadece input alanlarında (kayıt olurken vb.) yazı seçilebilsin ve imleç değişsin */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: auto; /* Yazı alanlarında standart imleç iyidir */
}
/* Normal ve Hover durumları aynı kalsın */
html, body {
    cursor: url('images/fare/normal.png'), auto !important;
}

a, button, .nav-button, .tab-btn, .tab-button, .rank-nav a, input[type="submit"] {
    cursor: url('images/fare/click1.png'), pointer !important;
}

/* Tıklama anını sınıflarla zorlayacağız, o yüzden burayı temizledik */
.clicking, .clicking * {
    cursor: url('images/fare/click2.png'), auto !important;
}
html, body {
    cursor: url('images/fare/normal.png'), auto !important;
}

/* 2. Butonların, Linklerin ve Sekmelerin Üzerine Gelince (Hover) */
a, 
button, 
.nav-button, 
.tab-btn, 
.tab-button, 
.rank-nav a,
.rank-tabs a,
input[type="submit"],
.btn-primary {
    cursor: url('images/fare/click1.png'), pointer !important;
}

/* 3. Mouse Sol Tuşuna Basılı Tuttuğun An (Tıklama Efekti) */
html:active, 
a:active, 
button:active, 
.nav-button:active {
    cursor: url('images/fare/click2.png'), auto !important;
}

/* Metin Giriş Alanlarında (Kullanıcı adını yazarken vb.) */
input[type="text"], 
input[type="password"], 
textarea {
    cursor: url('images/fare/normal.png'), text;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
    color: #fff;
    background-color: #0a0a1a;
    min-height: 100vh;
}

/* --- Video Arka Plan --- */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

#video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 30, 0.5);
    z-index: -1;
}
#video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin ve videonun ekranı tam kaplamasını sağlar */
    background-image: url('images/bg.webp'); /* Yedek olarak arka planda da dursun */
    background-size: cover;
    background-position: center;
}
/* --- Header (Navigasyon) --- */
.main-header {
    background: rgba(15, 25, 60, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.5);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-main {
    font-size: 28px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.8);
}

.logo-sub {
    color: #a0d2ff;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.main-nav a {
    color: #e0f0ff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s;
    display: block;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05);
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.nav-button {
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.6), rgba(0, 168, 255, 0.6));
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    margin-left: 10px;
}

/* --- Hero Bolumu --- */
.hero-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 60px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
    margin-top: 60px;
    width: 100%;
}

.hero-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 20, 60, 0.2);
    margin-bottom: 40px;
}

.hero-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

.hero-title .pvp-text {
    color: #00a8ff;
    font-weight: 800;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #c0e0ff;
}

/* --- Butonlar --- */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 20px 45px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 220px;
    backdrop-filter: blur(10px);
}
.ch-grid {
    display: flex;             /* Yanyana dizilimi sağlar */
    justify-content: center;   /* Ortalar */
    gap: 15px;                 /* Aralarındaki boşluk */
    margin-bottom: 15px;
    flex-wrap: nowrap;         /* Kırılmayı önler, tek satırda tutar */
}

.ch-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;    /* İkon üstte, yazı altta */
    align-items: center;       /* İçeriği ortalar */
    min-width: 55px;           /* Kutuların eşit durması için */
}
.btn-primary {
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.8), rgba(0, 168, 255, 0.8));
    color: white;
    box-shadow: 0 10px 25px rgba(0, 100, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- Ozellikler (Features) --- */
.features {
    position: relative;
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    margin-top: -1px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #00a8ff;
    text-shadow: 0 0 15px rgba(0, 168, 255, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 168, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: #00a8ff;
    margin-bottom: 20px;
}

/* --- Tam Ekran Sektorler --- */
.fullscreen-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 60px;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.12;
    background-size: cover;
    background-position: center;
}

.section-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.sector-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #00a8ff;
    text-shadow: 0 0 20px rgba(0, 168, 255, 0.7);
}

.sector-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sector-text, .sector-features {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sector-features { list-style: none; }
.sector-features li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sector-features i {
    color: #00a8ff;
    background: rgba(0, 168, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
}

/* --- PEGI & Footer --- */
.pegi-section {
    background: rgba(10, 20, 40, 0.9);
    padding: 40px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pegi-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.pegi-icons { display: flex; gap: 20px; }
.pegi-image { background: rgba(255, 255, 255, 0.1); padding: 5px; border-radius: 8px; }

.main-footer {
    background: rgba(8, 15, 40, 0.9);
    padding: 40px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright { color: #80a0d0; font-size: 14px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .main-header, .hero-container, .features, .fullscreen-section { padding: 40px 20px; }
    .sector-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-header { flex-direction: column; gap: 15px; position: relative; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; }
    .pegi-container { flex-direction: column; gap: 30px; text-align: center; }
}

/* --- Animasyonlar --- */
@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 25px rgba(0, 168, 255, 0.9)); }
    50% { filter: drop-shadow(0 0 35px rgba(0, 200, 255, 1)); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: rgba(10, 20, 50, 0.5); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #00a8ff, #0055ff);
    border-radius: 5px;
}



/* --- İndirme Sayfası Özel Bölümü (indir.html) --- */
.dl-container {
    padding-top: 150px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.dl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.dl-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.dl-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 168, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 100, 255, 0.2);
}

.dl-card-icon {
    font-size: 40px; 
    color: #00a8ff; 
    margin-bottom: 20px;
}

.dl-card-step-title {
    color: #00a8ff; 
    margin-bottom: 10px;
}

/* Sistem Gereksinimleri Tablosu */
.dl-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: #c0e0ff;
}

.dl-specs-table td, .dl-specs-table th {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dl-specs-table th { 
    color: #00a8ff; 
    font-size: 18px; 
}

/* responsive ayarı */
@media (max-width: 768px) {
    .dl-container { 
        padding: 180px 20px 40px; 
    }
}

/* --- Detaylı Tanıtım Sayfası Özel Bölümü (detayli_tanitim.html) --- */
/* --- TANITIM SAYFASI EKSİKSİZ STİLLER --- */
/* --- TANITIM SAYFASI DETAYLI STİLLER (EKSİKSİZ) --- */
.info-page .video-overlay { background: rgba(5, 10, 30, 0.3); }
.info-page .main-header { background: rgba(10, 20, 50, 0.2); backdrop-filter: blur(10px); }
.info-container { padding-top: 150px; max-width: 1200px; margin: 0 auto; padding-bottom: 60px; }
.info-panel-title { color: #00a8ff; text-align: center; margin-bottom: 30px; font-size: 32px; text-shadow: 0 0 10px rgba(0, 168, 255, 0.5); text-transform: uppercase; }

/* Karakter Navigasyonu */
.info-char-nav { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.info-char-btn { width: 84px; height: 84px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 2px solid transparent; transition: 0.3s; }
.info-char-btn img { width: 64px; height: 64px; object-fit: contain; }
.info-char-btn.active { border-color: #00a8ff; background: rgba(0,168,255,0.2); box-shadow: 0 0 15px #00a8ff; }
.info-char-pane { display: none; animation: infoFadeIn 0.5s; }
.info-char-pane.active { display: block; }

/* Tablolar ve Kartlar */
.info-stats-table { width: 100%; border-collapse: collapse; margin: 20px 0; background: rgba(0,0,0,0.3); text-align: center; font-size: 14px; border-radius: 10px; overflow: hidden; color: #fff; }
.info-stats-table th, .info-stats-table td { border: 1px solid rgba(255,255,255,0.1); padding: 12px; }
.info-stats-table th { background: rgba(0, 168, 255, 0.2); color: #00a8ff; }

.info-item-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 15px; margin-top: 25px; }
.info-item-card { background: rgba(255, 255, 255, 0.03); padding: 15px; border-radius: 12px; display: flex; align-items: center; gap: 15px; border: 1px solid rgba(255, 255, 255, 0.05); }

.info-drop-grid-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-drop-card { background: rgba(0, 0, 0, 0.2); border-radius: 15px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.1); width: 100%; }
.info-drop-header { display: flex; align-items: center; gap: 15px; border-bottom: 1px solid #00a8ff; padding-bottom: 10px; margin-bottom: 15px; }
.info-drop-list { max-height: 250px; overflow-y: auto; }
.info-drop-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13px; }
.info-drop-item img { width: 32px; height: 32px; }

/* Video ve Bannerlar */
.info-banner-img { width: 100%; max-width: 895px; height: auto; border-radius: 15px; margin: 40px auto 20px auto; display: block; border: 1px solid #00a8ff; }
.info-zindan-intro-text { color: #c0e0ff; line-height: 1.8; margin-bottom: 40px; }
.info-footer-container { display:flex; justify-content:space-between; align-items:center; max-width:1400px; margin:0 auto; flex-wrap:wrap; }

.info-video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); gap: 20px; margin-top: 20px; }
.info-video-box { width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: 32px; overflow: hidden; border: 1px solid rgba(0, 168, 255, 0.3); }
.info-video-box video { width: 100%; height: 100%; object-fit: cover; display: block; }

@keyframes infoFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.info-page .video-overlay { background: rgba(5, 10, 30, 0.3); }
.info-page .main-header { background: rgba(10, 20, 50, 0.2); backdrop-filter: blur(10px); }
.info-container { padding-top: 150px; max-width: 1200px; margin: 0 auto; padding-bottom: 60px; }

.info-panel-title { color: #00a8ff; text-align: center; margin-bottom: 30px; font-size: 32px; text-shadow: 0 0 10px rgba(0, 168, 255, 0.5); text-transform: uppercase; }

/* Karakter Navigasyonu */
.info-char-nav { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.info-char-btn { width: 84px; height: 84px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 2px solid transparent; transition: 0.3s; }
.info-char-btn img { width: 64px; height: 64px; object-fit: contain; }
.info-char-btn.active { border-color: #00a8ff; background: rgba(0,168,255,0.2); box-shadow: 0 0 15px #00a8ff; }
.info-char-pane { display: none; animation: infoFadeIn 0.5s; }
.info-char-pane.active { display: block; }

/* Tablolar */
.info-stats-table { width: 100%; border-collapse: collapse; margin: 20px 0; background: rgba(0,0,0,0.3); text-align: center; font-size: 14px; border-radius: 10px; overflow: hidden; }
.info-stats-table th, .info-stats-table td { border: 1px solid rgba(255,255,255,0.1); padding: 12px; }
.info-stats-table th { background: rgba(0, 168, 255, 0.2); color: #00a8ff; }

/* İtem ve Drop Kartları */
.info-item-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 15px; margin-top: 25px; }
.info-item-card { background: rgba(255, 255, 255, 0.03); padding: 15px; border-radius: 12px; display: flex; align-items: center; gap: 15px; border: 1px solid rgba(255, 255, 255, 0.05); }
.info-item-card img { width: 32px; filter: drop-shadow(0 0 5px #00a8ff); }

.info-drop-grid-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-drop-card { background: rgba(0, 0, 0, 0.2); border-radius: 15px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.1); width: 100%; }
.info-drop-header { display: flex; align-items: center; gap: 15px; border-bottom: 1px solid #00a8ff; padding-bottom: 10px; margin-bottom: 15px; }
.info-drop-header img { width: 65px; height: 65px; border-radius: 8px; }
.info-drop-list { max-height: 250px; overflow-y: auto; }
.info-drop-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13px; }
.info-drop-item img { width: 32px; height: 32px; }

/* Görseller ve Yazılar */
.info-banner-img { width: 100%; max-width: 895px; height: auto; border-radius: 15px; margin: 40px auto 20px auto; display: block; border: 1px solid #00a8ff; }
.info-zindan-text { color: #c0e0ff; line-height: 1.8; margin-bottom: 40px; }
.info-footer-flex { display:flex; justify-content:space-between; align-items:center; max-width:1400px; margin:0 auto; flex-wrap:wrap; }

/* Video Izgarası */
.info-video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); gap: 20px; margin-top: 20px; }
.info-video-box { width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: 32px; overflow: hidden; border: 1px solid rgba(0, 168, 255, 0.3); position: relative; }
.info-video-box video { width: 100%; height: 100%; object-fit: cover; display: block; }

@keyframes infoFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
/* Sayfa Teması ve Modifikasyonlar (Body class="info-page" ise çalışır) */
.info-page .video-overlay { background: rgba(5, 10, 30, 0.3); }
.info-page .main-header { background: rgba(10, 20, 50, 0.2); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.info-page .hero-box { background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, 0.08); }

.info-container { padding-top: 150px; max-width: 1200px; margin: 0 auto; padding-bottom: 60px; }
.info-panel-title { color: #00a8ff; text-align: center; margin-bottom: 30px; font-size: 32px; text-shadow: 0 0 10px rgba(0, 168, 255, 0.5); text-transform: uppercase; }

/* Karakter Navigasyonu ve Panelleri */
.info-char-nav { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.info-char-btn { width: 84px; height: 84px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 2px solid transparent; transition: 0.3s; }
.info-char-btn img { width: 64px; height: 64px; object-fit: contain; }
.info-char-btn.active { border-color: #00a8ff; background: rgba(0,168,255,0.2); box-shadow: 0 0 15px #00a8ff; }

.info-char-pane { display: none; animation: infoFadeIn 0.5s; }
.info-char-pane.active { display: block; }

/* Statü Tablosu */
.info-stats-table { width: 100%; border-collapse: collapse; margin: 20px 0; background: rgba(0,0,0,0.3); text-align: center; font-size: 14px; border-radius: 10px; overflow: hidden; }
.info-stats-table th, .info-stats-table td { border: 1px solid rgba(255,255,255,0.1); padding: 12px; }
.info-stats-table th { background: rgba(0, 168, 255, 0.2); color: #00a8ff; }

/* İtem ve Drop Kartları */
.info-item-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 15px; margin-top: 25px; }
.info-item-card { background: rgba(255, 255, 255, 0.03); padding: 15px; border-radius: 12px; display: flex; align-items: center; gap: 15px; border: 1px solid rgba(255, 255, 255, 0.05); }
.info-item-card img { width: 32px; filter: drop-shadow(0 0 5px #00a8ff); }
.info-item-card-info h5 { font-size: 13px; color: #a0d2ff; }
.info-item-card-info p { font-size: 11px; color: #ccc; }

.info-banner-img { width: 100%; max-width: 895px; height: auto; border-radius: 15px; margin: 40px auto 20px auto; display: block; border: 1px solid #00a8ff; }

/* Drop Listesi (Boss & Metin) */
.info-drop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; justify-content: center; }
.info-drop-card { background: rgba(0, 0, 0, 0.2); border-radius: 15px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.1); width: 100%; }
.info-drop-header { display: flex; align-items: center; gap: 15px; border-bottom: 1px solid #00a8ff; padding-bottom: 10px; margin-bottom: 15px; }
.info-drop-header img { width: 65px; height: 65px; border-radius: 8px; }
.info-drop-list { max-height: 250px; overflow-y: auto; }
.info-drop-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13px; }
.info-drop-item img { width: 32px; height: 32px; }

/* Video Izgarası */
.info-video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); gap: 20px; margin-top: 20px; }
.info-video-box { width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: 32px; overflow: hidden; border: 1px solid rgba(0, 168, 255, 0.3); position: relative; transition: all 0.3s ease; }
.info-video-box video { width: 100%; height: 100%; object-fit: cover; display: block; }
.info-video-box:hover { border-color: #00a8ff; box-shadow: 0 0 15px rgba(0, 168, 255, 0.4); transform: translateY(-5px); }
/* --- TANITIM SAYFASI ZİNDAN VE TABLO STİLLERİ --- */
.info-page .video-overlay { background: rgba(5, 10, 30, 0.3); }
.info-page .main-header { background: rgba(10, 20, 50, 0.2); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

.info-container { padding-top: 150px; max-width: 1200px; margin: 0 auto; padding-bottom: 60px; }
.info-panel-title { color: #00a8ff; text-align: center; margin: 30px 0; font-size: 32px; text-shadow: 0 0 10px rgba(0, 168, 255, 0.5); text-transform: uppercase; }

/* Tablo Stilleri */
.info-stats-table { width: 100%; border-collapse: collapse; margin: 20px 0; background: rgba(0,0,0,0.3); text-align: center; font-size: 14px; border-radius: 10px; overflow: hidden; color: #fff; }
.info-stats-table th, .info-stats-table td { border: 1px solid rgba(255,255,255,0.1); padding: 12px; vertical-align: middle; }
.info-stats-table th { background: rgba(0, 168, 255, 0.2); color: #00a8ff; font-weight: 800; }
.info-stats-table img { vertical-align: middle; margin: 2px; }

/* Zindan Giriş Metni */
.info-zindan-intro-text { color: #c0e0ff; line-height: 2; margin-bottom: 50px; font-size: 16px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }

/* Banner Görselleri */
.info-banner-img { width: 100%; max-width: 1000px; height: auto; border-radius: 15px; margin: 20px auto; display: block; border: 1px solid rgba(0, 168, 255, 0.4); box-shadow: 0 0 20px rgba(0,0,0,0.5); }

/* Drop Kartları Izgarası */
.info-drop-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 20px; }
.info-drop-card { background: rgba(0, 0, 0, 0.4); border-radius: 15px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.1); width: 100%; max-width: 320px; transition: transform 0.3s ease; }
.info-drop-card:hover { transform: translateY(-5px); border-color: #00a8ff; }

.info-drop-header { display: flex; align-items: center; gap: 15px; border-bottom: 1px solid rgba(0, 168, 255, 0.5); padding-bottom: 10px; margin-bottom: 15px; }
.info-drop-header img { width: 65px; height: 65px; border-radius: 8px; object-fit: cover; }
.info-drop-list { max-height: 250px; overflow-y: auto; padding-right: 5px; }
.info-drop-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13px; color: #e0f0ff; }
.info-drop-item img { width: 32px; height: 32px; flex-shrink: 0; }

/* Scrollbar Özelleştirme */
.info-drop-list::-webkit-scrollbar { width: 4px; }
.info-drop-list::-webkit-scrollbar-thumb { background: #00a8ff; border-radius: 10px; }
/* --- BOSS KARTLARI ÖZEL DÜZENLEME --- */
.info-drop-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
}

.info-drop-card { 
    background: rgba(0, 0, 0, 0.4); 
    border-radius: 15px; 
    padding: 20px; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    width: 100%; 
    max-width: 320px; 
}

.info-drop-header { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    border-bottom: 1px solid #00a8ff; 
    padding-bottom: 10px; 
}

.info-drop-header img { 
    width: 65px; 
    height: 65px; 
    border-radius: 8px; 
    object-fit: cover; 
}
@keyframes infoFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.hero-stats-panel {
    /* Tam saydam cam efekti */
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    
    /* İnce ışıklı kenarlık */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    
    /* Derinlik hissi için hafif gölge */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: #fff;
}

.stats-header {
    color: #00d2ff; /* Daha canlı bir mavi */
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.stats-divider {
    height: 1px;
    /* Parlayan ince hat */
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 20px 0;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

/* Satırların üzerine gelince hafif aydınlanma */
.stat-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transform: translateX(5px);
}

.stat-row span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.stat-row strong {
    color: #00d2ff;
    font-family: 'Courier New', Courier, monospace; /* Rakamlar daha teknik dursun */
}

/* CH Durum İkonları */
.ch-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 5px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}