/* ========================================= */
/* Ballas Jailbreak TEMASI - ANA STİL DOSYASI */
/* ========================================= */

/* ===== GLOBAL DEĞİŞKENLER VE TEMEL STİLLER ===== */
:root {
    --yellow-accent: #FFC700; /* Vurgu için Sarı */
    --red-accent: #F44336; /* Kırmızı */
    --orange-accent: #FF9100; /* Turuncu */
    --green-accent: #4CAF50; /* Yeşil */
    --discord-blue: #5865F2;
}

:root {
  /* Arkaplan Renkleri */
  --bg-color: #0b0f14; /* Koyu, sofistike lacivert */
  --bg-light: #181d24; /* Daha açık lacivert, bölümleri ayırmak için */
  --footer-bg: #090c10; /* En koyu ton, footer için */
  --card-bg: rgba(23, 27, 34, 0.85); /* Hafif şeffaf kart arka planı */

  /* Metin Renkleri */
  --text-color: #f0f4f8; /* Neredeyse beyaz, yumuşak metin */
  --text-muted: #8e959e; /* Okunabilir gri, pasif metinler için */

  /* Vurgu Renkleri */
  --accent-color: #007bff; /* Temel mavi vurgu */
  --accent-hover: #0056b3; /* Vurgu için daha koyu mavi */
  --border-color: rgba(0, 123, 255, 0.2); /* Mavi vurgulu çizgi */

  /* İkincil Vurgu ve Durum Renkleri */
  --secondary-accent: #17a2b8; /* Aqua/turkuaz ikincil vurgu */
  --info-color: #17a2b8; /* Bilgilendirme için turkuaz */
  --success-color: #28a745; /* Başarı için koyu yeşil */
  --warning-color: #ffc107; /* Uyarı için sarı */
  --danger-color: #dc3545; /* Tehlike/hata için kırmızı */
}

html { scroll-behavior: smooth; }
body { background-color: var(--bg-color); color: var(--text-color); font-family: 'Manrope', sans-serif; margin: 0; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
a { color: var(--accent-color); text-decoration: none; }
main { padding-top: 2rem; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-color); }
.section-header h2 { font-size: 2rem; margin: 0; font-weight: 800; }
.page-hero { padding: 4rem 0; text-align: center; background: linear-gradient(180deg, rgba(30, 27, 38,0) 0%, var(--bg-color) 100%);}
.page-hero h1 { font-size: 3rem; font-weight: 800; color: #fff; margin: 0 0 0.5rem 0;}
.page-hero .subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===== HEADER ===== */
.main-header { background-color: var(--bg-light); padding: 1rem 0; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.header-logo { transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out; }
.header-logo:hover { transform: scale(1.05); filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)); }
.header-logo img { height: 55px; }
.main-nav ul { margin: 0; padding: 0; list-style: none; display: flex; gap: 2rem; }
.main-nav a { text-decoration: none; color: var(--text-muted); font-weight: 500; transition: color 0.2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--text-color); }
.header-login { display: flex; align-items: center; gap: 1rem; }
.lang-flag { height: 24px; border-radius: 4px; border: 1px solid var(--border-color); }
.login-button { background-color: var(--accent-color); color: #fff; border: none; padding: 0.6rem 1.2rem; border-radius: 50px; font-weight: 700; cursor: pointer; font-family: 'Manrope', sans-serif; font-size: 0.9rem; transition: background-color 0.2s ease; }
.login-button:hover { background-color: var(--accent-hover); }

/* ===== ANA SAYFA: KARŞILAMA BÖLÜMÜ ===== */
.welcome-hero { text-align: center; padding: 6rem 2rem; background: transparent; }
.welcome-hero h1 { font-size: 3.5rem; font-weight: 800; color: #fff; margin-bottom: 1rem; text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); }
.welcome-hero p { font-size: 1.25rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 2.5rem auto; }
.hero-actions { display: flex; justify-content: center; gap: 1.5rem; }
.hero-actions a { text-decoration: none; padding: 0.8rem 2rem; border-radius: 50px; font-weight: 700; transition: all 0.3s ease; border: 2px solid transparent; }
.hero-actions .btn-primary { background-color: var(--accent-color); color: #fff; }
.hero-actions .btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3); }
.hero-actions .btn-secondary { background-color: transparent; color: var(--text-color); border-color: var(--border-color); }
.hero-actions .btn-secondary:hover { background-color: var(--accent-color); border-color: var(--accent-color); color: #fff; }

/* ===== ANA SAYFA: SUNUCU LİSTESİ ===== */
.server-list-section { padding: 4rem 0; }
.total-players-info { display: flex; align-items: center; gap: 1rem; }
.total-players-bar { width: 150px; height: 8px; background-color: var(--bg-color); border-radius: 4px; overflow: hidden; }
.total-players-bar-fill { height: 100%; background-color: var(--accent-color); border-radius: 4px; transition: width 0.5s ease-in-out; }
.monitoring-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 2rem; }
.monitoring-card { position: relative; border-radius: 16px; overflow: hidden; background-size: cover; background-position: center; transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; border: 1px solid var(--border-color); }
.monitoring-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(30, 27, 38, 0) 0%, rgba(30, 27, 38, 0.4) 50%, rgba(30, 27, 38, 0.9) 100%); z-index: 1; }
.card-content { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: stretch; padding: 1.5rem; }
.card-info { display: flex; flex-direction: column; gap: 1rem; }
.card-title { font-size: 1.5rem; font-weight: 800; margin: 0; }
.card-tags { display: flex; gap: 0.5rem; }
.card-tag { background-color: rgba(255, 255, 255, 0.1); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.8rem; font-weight: 500; }
.card-players p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.card-players-count { font-size: 1.75rem; font-weight: 700; color: var(--text-color); }
.card-actions .btn-play { display: inline-flex; align-items: center; gap: 0.5rem; background-color: var(--accent-color); color: #fff; text-decoration: none; padding: 0.75rem 1.5rem; border-radius: 50px; font-weight: 700; transition: background-color 0.2s ease; }
.card-actions .btn-play:hover { background-color: var(--accent-hover); }
.btn-play svg { width: 16px; height: 16px; }
.fullness-bar { width: 8px; background-color: rgba(0, 0, 0, 0.2); border-radius: 4px; display: flex; flex-direction: column-reverse; margin-left: 1.5rem; }
.fullness-bar-inner { width: 100%; border-radius: 4px; transition: height 0.5s ease-in-out, background-color 0.5s ease; }
.fullness-bar-inner.low { background-color: var(--green-accent); }
.fullness-bar-inner.medium { background-color: var(--yellow-accent); }
.fullness-bar-inner.high { background-color: var(--orange-accent); }
.fullness-bar-inner.full { background-color: var(--red-accent); }

/* ===== MARKET SAYFASI ===== */
.market-hero { padding: 3rem 0; text-align: center; background: radial-gradient(circle, rgba(42, 38, 59, 0.5) 0%, rgba(30, 27, 38, 0) 70%), linear-gradient(180deg, rgba(30, 27, 38,0) 0%, var(--bg-color) 100%); border-bottom: 1px solid var(--border-color); }
.market-hero h1 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.market-hero .subtitle { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.market-section { padding: 4rem 0; }
.market-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.market-card { background-color: var(--bg-light); border: 1px solid var(--border-color); border-radius: 12px; text-align: center; display: flex; flex-direction: column; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.market-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5); border-color: var(--accent-color); }
.market-card.coming-soon { opacity: 0.6; }
.market-card.coming-soon:hover { transform: translateY(0); box-shadow: none; border-color: var(--border-color); }
.market-card-image-wrapper { width: 100%; height: 200px; padding: 1rem; background-color: var(--bg-color); display: flex; align-items: center; justify-content: center; }
.market-card-image { max-width: 100%; max-height: 100%; object-fit: contain; }
.market-card-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.market-card-title { font-size: 1.5rem; color: #fff; font-weight: 700; margin: 0 0 0.75rem 0; }
.market-card-description { color: var(--text-muted); line-height: 1.6; flex-grow: 1; margin-bottom: 1.5rem; }
.market-card-button { background-color: var(--accent-color); color: #fff; font-weight: 600; padding: 12px 24px; border-radius: 8px; text-decoration: none; transition: background-color 0.3s ease, transform 0.3s ease; margin-top: auto; }
.market-card-button:hover { background-color: var(--accent-hover); transform: scale(1.05); }
.market-card-button.disabled { background-color: #4a5568; cursor: not-allowed; }
.market-card-button.disabled:hover { background-color: #4a5568; transform: scale(1); }

/* ===== İLETİŞİM SAYFASI ===== */
.contact-hero { padding: 3rem 0; text-align: center; border-bottom: 1px solid var(--border-color); }
.contact-hero h1 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.contact-hero .subtitle { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.contact-section { padding: 4rem 0; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
/* Tek kartı ortalamak için */
.single-contact-container { display: flex; justify-content: center; padding: 2rem 0; }
.single-contact-container .contact-card { max-width: 450px; width: 100%; }
.contact-card { background-color: var(--bg-light); border: 1px solid var(--border-color); border-radius: 12px; padding: 2.5rem 2rem; text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); border-color: var(--accent-color); }
.contact-card .contact-icon { margin-bottom: 1.5rem; background-color: var(--bg-color); width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-card .contact-icon img { width: 40px; height: 40px; object-fit: contain; }
.contact-card.discord-card .contact-icon { background-color: var(--discord-blue); }
.contact-card h3 { font-size: 1.5rem; color: #fff; margin: 0 0 1rem 0; }
.contact-card p { color: var(--text-muted); line-height: 1.7; flex-grow: 1; margin-bottom: 1.5rem; }
.contact-button { background: var(--accent-color); color: white; font-weight: 700; padding: 12px 28px; border-radius: 8px; text-decoration: none; display: inline-block; border: none; cursor: pointer; transition: all 0.3s ease; width: 100%; }
.contact-card.discord-card .contact-button { background-color: var(--discord-blue); }
.contact-button:hover { transform: scale(1.05); filter: brightness(1.1); }
.contact-info { font-size: 1.1rem; font-weight: 600; color: #fff; background-color: var(--bg-color); padding: 0.5rem 1rem; border-radius: 6px; }


/* ==========================================================================
   KADRO SAYFASI STİLLERİ (PROFESYONEL VE TEMİZ)
   ========================================================================== */

/* Tema değişkeni tanımı (Varsa kendi değişkeninizi kullanın) */
:root {
    --bg-color: #1a1a1f; /* Genel arka plan rengi */
    --background-light: #24242b; /* Kart arka planı */
    --border-color: #383842; /* Çerçeve rengi */
    --text-primary: #f0f0f5; /* Birincil yazı rengi */
    --text-secondary: #b4b4c0; /* İkincil yazı rengi */
}

/* --- Sayfa Başlığı (Hero Alanı) --- */
.page-hero {
 padding: 4rem 0; 
 text-align: center;
 /* Kullanıcının belirttiği arka plan rengi */
 background: linear-gradient(180deg, rgba(30, 27, 38,0) 0%, var(--bg-color) 100%);
    margin-bottom: -30px; 
}
.page-hero h1 {
 font-size: 3.2rem;
 margin-bottom: 10px;
 color: var(--text-primary);
}
.page-hero .subtitle {
 font-size: 1.15rem;
 color: var(--text-secondary);
 max-width: 700px;
 margin: 0 auto;
}

/* --- Kadro Kartlarının Bulunduğu Ana Alan --- */
.staff-section {
 padding: 90px 0 60px 0; 
 background-color: var(--bg-color);
}

.staff-grid {
 display: grid;
 /* 4 kartı yan yana sığdırmaya çalışır, sığmazsa alt satıra geçer */
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
 gap: 30px;
 justify-content: center;
}

/* --- Tek Bir Kadro Kartının Stili --- */
.staff-card {
 background-color: var(--background-light); 
 border: 1px solid var(--border-color);
 border-radius: 12px;
 padding: 30px;
 text-align: center;
 position: relative;
 overflow: hidden;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:hover {
 transform: translateY(-8px); 
 box-shadow: 0 18px 35px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* --- Profil Resmi --- */
.staff-image-wrapper {
 width: 130px;
 height: 130px;
 margin: 0 auto 1.5rem auto;
 border-radius: 50%;
 overflow: hidden;
 border: 4px solid var(--border-color);
 transition: border-color 0.3s ease;
}

.staff-image-wrapper img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

/* --- İsim ve Rütbe --- */
.staff-name {
font-size: 1.4rem; 
 font-weight: 700;
 color: var(--text-primary); 
 margin-bottom: 0.5rem;
}

.staff-role {
 font-size: 1rem;
 font-weight: 500;
 margin-bottom: 1.5rem;
color: var(--text-secondary); 
 transition: color 0.3s ease;
}

/* --- Sosyal Medya İkonları --- */
.staff-socials {
 display: flex;
 justify-content: center;
 gap: 1.5rem;
}

.staff-socials a img {
 width: 30px; 
 height: 30px;
 opacity: 0.9; 
    /* Siyah/Beyaz filtresi KALDIRILDI, ikonlar renkli görünecek. */
 transition: all 0.3s ease;
}

.staff-socials a:hover img {
 opacity: 1;
transform: scale(1.1);
}

/* =========================================
   RÜTBEYE GÖRE RENKLENDİRME
   ========================================= */

/* --- Kurucu (Kırmızı Tema) --- */
.staff-card.role-kurucu {
 background: radial-gradient(circle at 50% -20%, rgba(229, 62, 62, 0.25) 0%, transparent 60%), var(--background-light);
    border-color: #e53e3e;
}
.staff-card.role-kurucu .staff-image-wrapper {
 border-color: #e53e3e;
    box-shadow: 0 0 15px rgba(229, 62, 62, 0.5);
}
.staff-card.role-kurucu .staff-role {
 color: #ff5555;
 font-weight: 800;
}

/* --- Yönetim Lideri (Altın/Turuncu Tema) --- */
.staff-card.role-yonetim-lideri {
    background: radial-gradient(circle at 50% -20%, rgba(255, 193, 7, 0.25) 0%, transparent 60%), var(--background-light);
    border-color: #ffc107;
}
.staff-card.role-yonetim-lideri .staff-image-wrapper {
    border-color: #ffc107;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
}
.staff-card.role-yonetim-lideri .staff-role {
    color: #ffd700; 
    font-weight: 800;
}

/* --- Developer (Mavi Tema) --- */
.staff-card.role-developer {
    /* Boyut ayarları grid tarafından otomatik yönetilecek */
 background: radial-gradient(circle at 50% -20%, rgba(59, 130, 246, 0.25) 0%, transparent 60%), var(--background-light);
    border-color: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}
.staff-card.role-developer .staff-image-wrapper {
border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}
.staff-card.role-developer .staff-role {
 color: #42a5f5; 
font-weight: 800;
}


/* =========================================
   RESPONSIVE AYARLAR (Mobil Uyum)
   ========================================= */
@media (max-width: 1200px) {
    /* Daha küçük ekranlarda 3 kart sığmayabilir, 2 sütuna düşürülür */
    .staff-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .staff-grid {
        /* Mobil cihazlarda tek sütun */
        grid-template-columns: 1fr;
    }
    .staff-card {
        padding: 20px;
    }
}

/* ===== KURALLAR SAYFASI ===== */
.rules-tabs { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; border-bottom: 2px solid var(--bg-light); }
.tab-link { background-color: transparent; border: none; color: var(--text-muted); padding: 1rem 1.5rem; font-size: 1rem; font-weight: 600; cursor: pointer; position: relative; transition: color 0.3s ease; border-bottom: 3px solid transparent; }
.tab-link:hover { color: #fff; }
.tab-link.active { color: var(--accent-color); border-bottom-color: var(--accent-color); }
.rule-content { display: none; animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.rule-category { background-color: var(--bg-light); border: 1px solid var(--border-color); border-radius: 12px; margin-bottom: 2rem; padding: 1.5rem 2rem; }
.rule-category h4 { font-size: 1.3rem; color: #e2e8f0; margin-top: 0; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border-color); }
.rule-list { list-style: none; padding-left: 0; margin: 0; }
.rule-list li { background-color: var(--bg-color); padding: 1rem 1.5rem; margin-bottom: 0.75rem; border-radius: 8px; display: flex; align-items: center; gap: 1rem; border-left: 4px solid #4a5568; color: #cbd5e0; line-height: 1.6; }
.rule-list li .icon { font-size: 1.2rem; }
.rule-list li.yasak { border-left-color: var(--red-accent); }
.rule-list li.yasak .icon { color: var(--red-accent); }
.rule-list li.bilgi { border-left-color: var(--accent-color); }
.rule-list li.bilgi .icon { color: var(--accent-color); }
.rule-list li.uyari { border-left-color: var(--yellow-accent); }
.rule-list li.uyari .icon { color: var(--yellow-accent); }
.rule-note { background-color: rgba(157, 78, 221, 0.1); border-left: 4px solid var(--accent-color); padding: 1.5rem; margin: 2rem 0 0 0; border-radius: 0 8px 8px 0; color: var(--text-muted); }
.rule-note strong { color: #e2e8f0; }

/* ===== FOOTER (YENİ ÇOK SÜTUNLU YAPI) ===== */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 4rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Mobilde 2 sütun */
    gap: 2.5rem;
    padding-bottom: 3rem;
}
/* Geniş ekranlarda 4 sütuna çıkar */
@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-column ul a, .footer-column ul span {
    color: var(--text-muted);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-column ul a:hover {
    color: var(--text-color);
}
.footer-social-list {
    display: grid;
    grid-template-columns: 1fr; /* Mobilde sosyal medya tek sütun */
    gap: 0.8rem;
}
@media (min-width: 576px) {
    .footer-social-list {
       grid-template-columns: 1fr 1fr; /* Biraz daha geniş ekranda 2 sütun */
    }
}
@media (min-width: 992px) {
    .footer-social-list {
       grid-template-columns: 1fr; /* Masaüstünde tekrar tek sütun daha şık durur */
    }
}
.footer-logo-column {
    display: flex;
    align-items: flex-start;
    justify-content: center; /* Mobilde ortalı */
    grid-column: 1 / -1; /* Mobilde tam genişlik kaplar */
}
@media (min-width: 992px) {
    .footer-logo-column {
        justify-content: flex-end; /* Geniş ekranda sağa dayalı */
        grid-column: auto;
    }
}
.footer-logo {
    height: 65px;
    max-width: 100%;
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== MODAL ===== */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(10, 10, 10, 0.7); justify-content: center; align-items: center; z-index: 2000; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.modal-content { background: var(--bg-light); width: 100%; max-width: 420px; border-radius: 16px; border: 1px solid var(--border-color); box-shadow: 0 15px 40px rgba(0,0,0,0.3); animation: modal-fade-in 0.3s ease-out; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid var(--border-color); }
.modal-header h3 { margin: 0; font-size: 1.25rem; font-weight: 700; }
.close-button { background: none; border: none; color: var(--text-muted); font-size: 2rem; cursor: pointer; line-height: 1; transition: color 0.2s ease; }
.close-button:hover { color: var(--text-color); }
.modal-body { padding: 1.5rem; }
.modal-options { display: flex; gap: 1rem; }
.login-option { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; background-color: var(--bg-color); border: 1px solid var(--border-color); border-radius: 12px; padding: 2rem 1rem; text-decoration: none; color: var(--text-color); font-weight: 700; transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.login-option:hover { transform: translateY(-5px); background-color: var(--bg-light); border-color: rgba(255, 255, 255, 0.2); }
.login-icon { width: 48px; height: 48px; }
@keyframes modal-fade-in { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* ========================================= */
/* SKIN CHANGER SAYFASI STİLLERİ           */
/* ========================================= */

.skinchanger-section .section-header {
    text-align: center;
    justify-content: center;
    border-bottom: none;
    margin-bottom: 2rem;
}

.skinchanger-info-box {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.skinchanger-info-box h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.skinchanger-info-box p {
    line-height: 1.8;
    color: var(--text-muted);
}

.skinchanger-info-box code {
    background-color: var(--bg-color);
    color: var(--yellow-accent);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
}

/* Silah/Öğe Kartları Grid Alanı */
.items-display {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.item-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.item-image {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.item-info {
    padding: 1rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: auto; /* Kartın en altına yapıştırır */
}

.item-name {
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* Skin Seçim Modalı */
.skinchanger-modal {
    display: none;
    position: fixed;
    z-index: 2001; /* Header'ın üstünde olması için */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skinchanger-modal .modal-content {
    background-color: var(--bg-color);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.skinchanger-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.skinchanger-modal .modal-title {
    margin: 0;
    color: #fff;
}

.skinchanger-modal .close-modal {
    color: var(--text-muted);
    font-size: 2rem;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.skinchanger-modal .close-modal:hover {
    color: #fff;
}

#skin-search-box {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}

#skin-search-box:focus {
    outline: none;
    border-color: var(--accent-color);
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    overflow-y: auto;
    padding-right: 10px; /* Scrollbar için boşluk */
}

.model-item {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid transparent;
}

.model-item:hover {
    transform: scale(1.05);
    background-color: var(--accent-color);
    border-color: var(--accent-hover);
}

.model-image {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.model-name {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.model-item:hover .model-name {
    color: #fff;
}

/* Kopyalama Bildirimi */
.copy-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--bg-light);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    z-index: 2002;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Scrollbar Stilleri */
.model-grid::-webkit-scrollbar { width: 8px; }
.model-grid::-webkit-scrollbar-track { background: var(--bg-color); border-radius: 4px; }
.model-grid::-webkit-scrollbar-thumb { background: var(--bg-light); border-radius: 4px; }
.model-grid::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }

/* ========================================= */
/* YETKİLER & MODELLER SAYFASI STİLLERİ      */
/* ========================================= */

.privileges-section {
    padding: 3rem 0;
}

.privileges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.privilege-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.privilege-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.privilege-card-icon-wrapper {
    height: 120px; /* Sabit yükseklik */
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privilege-card-icon-wrapper img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.4));
}

.privilege-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    transition: color 0.3s ease;
}

.privilege-card:hover .privilege-card-title {
    color: var(--accent-color);
}

/* ========================================= */
/* YETKİ FİYATLARI SAYFASI STİLLERİ          */
/* ========================================= */

.rank-grid {
    /* Grid yapısını biraz daha geniş kartlara göre ayarlayalım */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.rank-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Etiket için gerekli */
    overflow: hidden; /* Etiketin taşmasını engellemek için */
}

.rank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.rank-card-tag {
    position: absolute;
    top: 15px;
    right: -40px;
    background-color: var(--yellow-accent);
    color: #1E1B26;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.rank-card .privilege-card-title {
    margin-top: 0;
}

.price-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.price-box {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-box .duration {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-box .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.price-box.unlimited {
    background-color: var(--accent-color);
    border-color: var(--accent-hover);
}

.price-box.unlimited .duration {
    color: rgba(255,255,255,0.8);
}

.price-box.unlimited .price {
    color: #fff;
}

.purchase-notice {
    margin-top: 4rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.purchase-notice p {
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.purchase-notice p strong {
    color: var(--accent-color);
}

.notice-button {
    background-color: var(--discord-blue);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.notice-button:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* ========================================= */
/* HAKKIMIZDA SAYFASI STİLLERİ               */
/* ========================================= */

.about-hero-v2 {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(30, 27, 38, 0) 0%, var(--bg-color) 100%);
}

.about-hero-v2 h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.about-hero-v2 .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.about-section-v2 {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}
.about-section-v2:last-of-type { border-bottom: none; }

.about-section-v2 h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.about-section-v2 .section-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.text-center { text-align: center; }

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}
@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.value-card h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

.value-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-card ul li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.value-card ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-weight: bold;
}

.cta-v2 {
    background: linear-gradient(0deg, var(--bg-color) 0%, var(--bg-light) 100%);
}

.cta-button-v2 {
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.2);
}

.cta-button-v2:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.3);
}

.about-quote {
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-color);
    max-width: 800px;
    text-align: center;
    border-left: 3px solid var(--accent-color);
    background-color: transparent;
}

.about-quote span {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ========================================= */
/* KURALLAR SAYFASI STİLLERİ                 */
/* ========================================= */

.rules-section { 
    padding: 3rem 0; 
}

.rules-tabs { 
    display: flex; 
    justify-content: center; 
    gap: 1rem; 
    margin-bottom: 2.5rem; 
    border-bottom: 2px solid var(--bg-light); 
    flex-wrap: wrap; 
}

.tab-link { 
    background-color: transparent; 
    border: none; 
    color: var(--text-muted); 
    padding: 1rem 1.5rem; 
    font-size: 1rem; 
    font-weight: 600; 
    cursor: pointer; 
    position: relative; 
    transition: color 0.3s ease, border-color 0.3s ease; 
    border-bottom: 3px solid transparent; 
}

.tab-link:hover { 
    color: #fff; 
}

.tab-link.active { 
    color: var(--accent-color); 
    border-bottom-color: var(--accent-color); 
}

.rule-content { 
    display: none; 
    animation: fadeIn 0.5s; 
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.rule-content h3 { 
    text-align: center; 
    font-size: 1.8rem; 
    color: #fff; 
    margin-bottom: 2rem; 
}

.rule-category { 
    background-color: var(--bg-light); 
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    margin-bottom: 2rem; 
    padding: 1.5rem 2rem; 
}

.rule-category h4 { 
    font-size: 1.3rem; 
    color: #e2e8f0; 
    margin-top: 0; 
    margin-bottom: 1.5rem; 
    padding-bottom: 0.8rem; 
    border-bottom: 1px solid var(--border-color); 
}

.rule-list { 
    list-style: none; 
    padding-left: 0; 
    margin: 0; 
}

.rule-list li { 
    background-color: var(--bg-color); 
    padding: 1rem 1.5rem; 
    margin-bottom: 0.75rem; 
    border-radius: 8px; 
    display: flex; 
    align-items: flex-start; 
    gap: 1rem; 
    border-left: 4px solid #4a5568; 
    color: var(--text-muted); 
    line-height: 1.6; 
}

.rule-list li .icon { 
    font-size: 1.2rem; 
    line-height: 1.6; 
    user-select: none;
}

.rule-list li.yasak { border-left-color: var(--red-accent); }
.rule-list li.yasak .icon { color: var(--red-accent); }
.rule-list li.bilgi { border-left-color: var(--accent-color); }
.rule-list li.bilgi .icon { color: var(--accent-color); }
.rule-list li.uyari { border-left-color: var(--yellow-accent); }
.rule-list li.uyari .icon { color: var(--yellow-accent); }

.rule-note { 
    background-color: rgba(157, 78, 221, 0.1); 
    border-left: 4px solid var(--accent-color); 
    padding: 1.5rem; 
    margin: 2rem 0 0 0; 
    border-radius: 0 8px 8px 0; 
    color: var(--text-muted); 
}

.rule-note strong { 
    color: #e2e8f0; 
}   


/* ============================================= */
/* ==      SKIN CHANGER TANITIM BÖLÜMÜ        == */
/* ============================================= */

/* --- Bölümün Genel Konteyneri --- */
.skinchanger-preview-section {
    padding: 80px 0; /* Bölümün üstünde ve altında boşluk bırakır */
}

/* --- Başlık ve Açıklama Alanı --- */
.skinchanger-preview-section .section-header {
    text-align: center;
    margin-bottom: 50px; /* Başlık ile skin görselleri arasına boşluk koyar */
}

.skinchanger-preview-section .section-header h2 {
    font-size: 2.5rem; /* Başlık font boyutu */
    color: #f5f5f5; /* Başlık rengi */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.skinchanger-preview-section .section-header p {
    max-width: 700px; /* Açıklama metninin genişliğini sınırlar, daha okunaklı olur */
    margin: 0 auto; /* Paragrafı ortalar */
    color: #a1a1aa; /* Açıklama metni rengi */
    line-height: 1.7; /* Satır yüksekliği */
}

/* --- Skin Görsellerinin Izgara Yapısı --- */
.skin-grid {
    display: grid;
    /* Responsive ızgara:
      - Her sütun en az 200px olacak.
      - Yeterli alan varsa yan yana sığdığı kadarını koyacak.
    */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px; /* Görseller arasındaki boşluk */
}

/* --- Tek Bir Skin Kutusu --- */
.skin-item {
    background-color: #2c2c34; /* Kutu arkaplan rengi */
    border: 1px solid #444; /* Kutu kenarlığı */
    border-radius: 8px; /* Köşeleri yuvarlatır */
    padding: 20px;
    display: flex;
    flex-direction: column; /* İçeriği dikeyde hizalar (resim üstte, yazı altta) */
    align-items: center; /* İçeriği yatayda ortalar */
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* --- Skin Kutusunun Üzerine Gelince Oluşacak Efekt --- */
.skin-item:hover {
    transform: translateY(-8px); /* Hafif yukarı kalkma efekti */
    border-color: #e53935; /* Kenarlık rengini ana renge çevirir */
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.2); /* Kırmızı bir gölge efekti */
}

/* --- Skin Resmi --- */
.skin-item img {
    max-width: 100%;
    height: 120px; /* Tüm resimlerin aynı yükseklikte olmasını sağlar */
    object-fit: contain; /* Resimlerin en-boy oranını korur */
    margin-bottom: 15px; /* Resim ile yazı arasına boşluk koyar */
}

/* --- Skin Adı --- */
.skin-name {
    color: #e4e4e7; /* Yazı rengi */
    font-weight: 600; /* Yazı kalınlığı */
    font-size: 1rem;
}

/* --- "Kaplamalara Göz At" Butonunun Konteyneri --- */
.section-action {
    text-align: center;
    margin-top: 50px; /* Buton ile görseller arasına boşluk koyar */
}

/* Not: .btn-primary stilini bir önceki cevapta vermiştim. 
   Eğer eklemediysen, o kodu da style.css dosyana eklemelisin.
   Aşağıya tekrar ekliyorum.
*/
.btn-primary {
    display: inline-block;
    background-color: #e53935;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-color: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* ==========================================================================
   PREMIUM HEADER USER UI — EMİR BABA ÖZEL SÜRÜM
   ========================================================================== */

/* HEADER SAĞ KISIM YERLEŞİMİ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ==========================================================
   GİRİŞ YAPMIŞ KULLANICI – PROFİL BUTONU (DÜZELTİLMİŞ)
   ========================================================== */

   .user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;

    background: rgba(138, 79, 255, 0.35);  /* SABİT MOR */
    padding: 6px 14px 6px 6px;
    border-radius: 50px;

    border: 1px solid rgba(170, 110, 255, 0.9);
    box-shadow: 0 0 10px rgba(138, 79, 255, 0.4);

    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: 0.25s ease;

    overflow: hidden; /* Efekt taşmasın */
}

/* --- KAR EFEKTİ (DÜZ AŞAĞI + SÜPER HAFİF) --- */
.user-dropdown-toggle::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.25) 1px, transparent 1px);

    background-size: 8px 8px, 12px 12px;
    background-position: 0 0, 0 -80px;

    opacity: 0.15;     /* daha hafif */
    z-index: 0;

    animation: snowDown 4s linear infinite;
}

/* KAR — düz aşağı */
@keyframes snowDown {
    0%   { background-position: 0 0, 0 -80px; }
    100% { background-position: 0 120px, 0 40px; }
}

/* Avatar & Yazı üstte */
.user-dropdown-toggle * {
    position: relative;
    z-index: 2;
}

/* 🔥 SADECE TEK HOVER — MOR PARLAMA ETKİSİ */
.user-dropdown-toggle:hover {
    background: rgba(138, 79, 255, 0.55);
    box-shadow: 0 0 18px rgba(138, 79, 255, 0.9);
}

/* Avatar */
.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #8a4fff;
    box-shadow: 0 0 10px rgba(138, 79, 255, 0.6);
}

/* Kullanıcı adı */
.user-name {
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Açılır Menü Oku */
.dropdown-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.user-dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}


/* ==========================================================
   DROPDOWN MENÜ TASARIMI
   ========================================================== */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;

    background: #1b1b1f;
    border-radius: 12px;
    border: 1px solid #2e2e36;
    box-shadow: 0 15px 35px rgba(0,0,0,0.45);

    overflow: hidden;
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.25s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menü içi linkler */
.dropdown-menu a {
    display: block;
    padding: 13px 18px;
    color: #e8e8ec;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.2s ease;
}

.dropdown-menu a:hover {
    background: #8a4fff;
    color: #fff;
}

/* ==========================================================
   ÇIKIŞ BUTONUNA ÖZEL TASARIM
   ========================================================== */
.dropdown-menu a.logout {
    color: #ffb4b4;
    border-top: 1px solid #2e2e36;
}

.dropdown-menu a.logout:hover {
    background: #ef4444;
    color: #fff;
}

/* ==========================================================
   MOBİL UYUMLU DROPDOWN
   ========================================================== */
@media (max-width: 600px) {

    .user-dropdown-toggle {
        padding-right: 10px;
    }

    .user-name {
        display: none;
    }

    .dropdown-arrow {
        width: 16px;
    }

    .dropdown-menu {
        min-width: 160px;
    }
}


/* --- Durum Etiketleri (Ticket Listesi + Chat Header) --- */
.ticket-status-açık,
.ticket-status-acik {
    background: #22c55e !important; /* yeşil */
    color: #fff !important;
}

.ticket-status-kapalı,
.ticket-status-kapali {
    background: #ef4444 !important; /* kırmızı */
    color: #fff !important;
}

.ticket-status-yanıt-bekleniyor,
.ticket-status-yanit-bekleniyor {
    background: #eab308 !important; /* sarı */
    color: #000 !important;
}

.ticket-status-cevaplandı,
.ticket-status-cevaplandi {
    background: #3b82f6 !important; /* mavi */
    color: #fff !important;
}

/* Küçük etiket tasarımı */
.ticket-status-açık,
.ticket-status-kapalı,
.ticket-status-yanıt-bekleniyor,
.ticket-status-cevaplandı {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* ==========================================================================
   DESTEK / TICKET / ADMIN SİSTEMİ – FULL PROFESYONEL STİLLER
   Hazırlayan: ChatGPT (Emir Baba Edition)
   ========================================================================= */

/* ===========================
   GENEL ALAN & BAŞLIKLAR
   =========================== */
   .page-content {
    padding-top: 60px;
    padding-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color, #2c2c34);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary, #e4e4e7);
    letter-spacing: 1px;
}

/* ===========================
   MESAJ BİLDİRİMLERİ
   =========================== */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 5px solid;
    font-weight: 500;
}

.alert.success { background: rgba(16,185,129,0.1); color:#a7f3d0; border-color:#10b981; }
.alert.error   { background: rgba(239,68,68,0.1); color:#fca5a5; border-color:#ef4444; }
.alert.info    { background: rgba(59,130,246,0.1); color:#93c5fd; border-color:#3b82f6; }

.alert a { color: inherit; font-weight: bold; text-decoration: underline; }

/* ===========================
   DESTEK FORMU
   =========================== */
.ticket-form {
    background: #1a1a1f;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #2c2c34;
    max-width: 800px;
    margin: 0 auto;
}

.form-group { margin-bottom: 25px; }

.form-group label {
    color: #e4e4e7;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #121216;
    border: 1px solid #37373f;
    border-radius: 8px;
    color: #fff;
    transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #8a4fff;
    box-shadow: 0 0 0 3px rgba(138,79,255,0.3);
}

.form-group small {
    color: #a1a1aa;
    margin-top: 8px;
    display: block;
}

/* ===========================
   BUTONLAR
   =========================== */
.btn-primary {
    background: #8a4fff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .25s;
}

.btn-primary:hover {
    background: #6b32cc;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #2c2c34;
    padding: 8px 15px;
    border-radius: 5px;
    color: #e4e4e7;
    font-weight: 600;
    transition: .25s;
}

.btn-secondary:hover {
    background: #8a4fff;
    color: #fff;
}

/* ===========================
   DURUM ETİKETLERİ
   =========================== */

.ticket-status-açık,
.ticket-status-acik {
    background: #22c55e !important;
    color: #fff !important;
}

.ticket-status-kapalı,
.ticket-status-kapali {
    background: #ef4444 !important;
    color: #fff !important;
}

.ticket-status-yanıt-bekleniyor,
.ticket-status-yanit-bekleniyor {
    background: #eab308 !important;
    color: #000 !important;
}

.ticket-status-cevaplandı,
.ticket-status-cevaplandi {
    background: #3b82f6 !important;
    color: #fff !important;
}

.ticket-status-açık,
.ticket-status-kapalı,
.ticket-status-yanıt-bekleniyor,
.ticket-status-cevaplandı {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* ===========================
   TICKET TABLOSU (LİSTE)
   =========================== */
.ticket-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    background: #111113;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.45);
}

.ticket-table thead {
    background: #18181b;
}

.ticket-table thead th {
    padding: 16px 12px;
    font-size: 15px;
    color: #e4e4e7;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid #27272a;
}

.ticket-table tbody tr {
    transition: .25s ease;
}

.ticket-table tbody tr:nth-child(even) {
    background: #141417;
}

.ticket-table tbody tr:hover {
    background: #1f1f25;
    transform: translateX(4px);
}

.ticket-table tbody td {
    padding: 14px 12px;
    font-size: 14px;
    color: #d4d4d8;
    border-bottom: 1px solid #232326;
}

/* ===========================
   CHAT SİSTEMİ (TICKET)
   =========================== */
.chat-container {
    background: #111113;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #2c2c34;
    box-shadow: 0 0 20px rgba(0,0,0,0.35);
    margin-top: 20px;
}

.chat-container h3 {
    display: flex;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 20px;
}

.chat-box {
    height: 450px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-right: 5px;
}

.chat-box::-webkit-scrollbar { width: 8px; }
.chat-box::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 10px;
}

.chat-message {
    max-width: 70%;
    display: flex;
    flex-direction: column;
}

.chat-message b {
    font-size: 0.8rem;
    margin-bottom: 4px;
    opacity: 0.8;
}

/********* USER MESSAGE (RIGHT, PURPLE) *********/
.user-reply {
    align-self: flex-end;
    text-align: right;
}

.user-reply p {
    background: #8a4fff;
    color: #fff;
    padding: 14px 18px;
    border-radius: 16px 16px 4px 16px;
    box-shadow: 0 0 10px rgba(138,79,255,0.4);
}

/********* ADMIN MESSAGE (LEFT, DARK) *********/
.admin-reply {
    align-self: flex-start;
}

.admin-reply p {
    background: #2a2a2e;
    color: #eee;
    padding: 14px 18px;
    border-radius: 16px 16px 16px 4px;
}

/* Saat */
.message-time {
    margin-top: 6px;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Mesaj Yazma Alanı */
.chat-reply-form {
    display: flex;
    margin-top: 10px;
}

.chat-reply-form textarea {
    flex: 1;
    background: #18181b;
    border: 1px solid #333;
    border-radius: 10px 0 0 10px;
    padding: 14px;
    color: #fff;
    resize: none;
}

.chat-reply-form button {
    background: #8a4fff;
    color: #fff;
    padding: 0 25px;
    border-radius: 0 10px 10px 0;
    font-weight: 700;
    transition: .2s;
}

.chat-reply-form button:hover {
    background: #6b32cc;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #a1a1aa;
}
.back-link:hover { color: #fff; }


/* ==========================================================================
   YEPYENİ ADMIN PANELİ STİLLERİ
   ========================================================================== */
.admin-panel-body {
    background-color: #0d0d10;
}
.admin-header {
    background-color: var(--background-light, #1a1a1f);
    padding: 15px 30px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color, #2c2c34);
}
.admin-header-logo { display: flex; align-items: center; gap: 15px; }
.admin-header-logo img { height: 35px; }
.admin-header-logo span { font-weight: 700; font-size: 1.2rem; }
.admin-header-user { display: flex; align-items: center; gap: 15px; }
.admin-logout-btn { background-color: #374151; color: #fff; padding: 8px 15px; border-radius: 5px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: background-color 0.2s; }
.admin-logout-btn:hover { background-color: #4b5563; }

.admin-container {
    display: flex;
    max-width: 1400px;
    margin: 30px auto;
    gap: 30px;
    padding: 0 20px;
}
.admin-nav {
    flex-basis: 220px;
    flex-shrink: 0;
    background-color: var(--background-light, #1a1a1f);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color, #2c2c34);
    align-self: flex-start;
}
.admin-nav a {
    display: block;
    padding: 12px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 5px;
}
.admin-nav a:hover {
    background-color: var(--border-color, #2c2c34);
    color: var(--text-primary, #e4e4e7);
}
.admin-nav a.active {
    background-color: var(--primary-color, #8a4fff);
    color: #fff;
}

.admin-content {
    flex-grow: 1;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-light, #1a1a1f);
    border-radius: 12px;
    border: 1px solid var(--border-color, #2c2c34);
    overflow: hidden;
}
.admin-table th, .admin-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color, #2c2c34);
}
.admin-table thead th {
    background-color: rgba(0,0,0,0.2);
}
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover { background-color: rgba(138, 79, 255, 0.05); }
.table-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: middle;
}

/* ==========================================================================
   HEADER SUNUCU DURUM GÖSTERGESİ (YATAY VE DÜZENLENMİŞ)
   ========================================================================== */

   .server-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color, #2c2c34);
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.server-status-indicator:hover {
    background-color: rgba(138, 79, 255, 0.1);
    border-color: var(--primary-color, #8a4fff);
}

.server-status-indicator .status-text {
    color: var(--text-secondary, #a1a1aa);
    font-weight: 600;
    font-size: 0.9rem;
}

.server-status-indicator strong {
    color: #fff;
    font-size: 1rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #22c55e; /* Yeşil Renk */
    border-radius: 50%;
    animation: pulse-green 2s infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
}

/* Yanıp sönme animasyonunu tanımlama */
@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ==========================================================================
   MARKET & ÜRÜN SAYFASI STİLLERİ
   ========================================================================== */

   .product-page-section {
    padding: 60px 0;
}

.product-page-container {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Sol sütun (resim) 1 birim, sağ sütun (bilgi) 2 birim genişliğinde */
    gap: 50px; /* İki sütun arasındaki boşluk */
    align-items: center;
    background-color: var(--background-light, #1a1a1f);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border-color, #2c2c34);
}

/* --- Sol Sütun: Ürün Görseli --- */
.product-image-column img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- Sağ Sütun: Ürün Bilgileri --- */
.product-details-column {
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary, #e4e4e7);
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-secondary, #a1a1aa);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-price-box {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color, #2c2c34);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
}

.product-price-box strong {
    color: var(--primary-color, #8a4fff);
}

.duration-tag {
    background-color: var(--primary-color, #8a4fff);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 50px;
}

.product-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.product-actions .btn-buy {
    font-size: 1.1rem;
    padding: 18px 40px;
}

/* ==========================================================================
   MOBİL UYUMLULUK VE RESPONSIVE TASARIM (AŞIRI PROFESYONEL)
   ========================================================================== */

/* ===== TABLET VE KÜÇÜK MASAÜSTÜ CİHAZLAR (1024px ve altı) ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .main-nav ul {
        gap: 1.5rem; /* Menü aralığını biraz azalt */
    }

    .product-page-container {
        grid-template-columns: 1fr; /* Ürün sayfası dikey hizalansın */
        gap: 2rem;
        padding: 2.5rem;
    }

    .product-title {
        font-size: 2.5rem;
        text-align: center;
    }
}


/* ===== MOBİL CİHAZLAR (900px ve altı) - NAVİGASYON DEVRİMİ ===== */
@media (max-width: 900px) {

    /* --- MOBİL NAVİGASYON (HAMBURGER MENÜ) --- */
    .main-nav {
        /* Masaüstü navigasyonu gizle */
        display: none;
    }

    .mobile-nav-toggle {
        /* Mobil menü butonu (hamburger) gösterilsin */
        display: block;
        background: none;
        border: none;
        color: var(--text-color);
        cursor: pointer;
        padding: 0.5rem;
        z-index: 9999; /* Her şeyin üstünde */
    }
    
    .mobile-nav-toggle .icon-hamburger,
    .mobile-nav-toggle.active .icon-close {
        display: block;
    }
    
    .mobile-nav-toggle.active .icon-hamburger,
    .mobile-nav-toggle .icon-close {
        display: none;
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(18, 16, 26, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 9998;
        display: flex;
        align-items: center;
        justify-content: center;
        
        /* Başlangıçta gizli */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-overlay ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .mobile-nav-overlay li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .mobile-nav-overlay.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Menü elemanlarının gecikmeli gelmesi için */
    .mobile-nav-overlay.active li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-nav-overlay.active li:nth-child(2) { transition-delay: 0.15s; }
    .mobile-nav-overlay.active li:nth-child(3) { transition-delay: 0.2s; }
    .mobile-nav-overlay.active li:nth-child(4) { transition-delay: 0.25s; }
    .mobile-nav-overlay.active li:nth-child(5) { transition-delay: 0.3s; }
    .mobile-nav-overlay.active li:nth-child(6) { transition-delay: 0.35s; }
    .mobile-nav-overlay.active li:nth-child(7) { transition-delay: 0.4s; }


    .mobile-nav-overlay a {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-muted);
        text-decoration: none;
        padding: 1rem;
        display: block;
        transition: color 0.3s ease;
    }

    .mobile-nav-overlay a:hover {
        color: var(--accent-color);
    }

    /* Diğer header elemanlarını düzenle */
    .header-actions {
        gap: 1rem;
    }

    .server-status-indicator {
        /* Sunucu durumunu küçültelim */
        padding: 6px 10px;
        gap: 6px;
    }
    .server-status-indicator strong,
    .server-status-indicator .status-text {
        font-size: 0.8rem;
    }
    .server-status-indicator .lang-flag {
        display: none; /* Mobilde bayrağı gizle, yer kazanalım */
    }

    .user-name {
        display: none; /* Mobilde kullanıcı adını gizle, sadece avatar görünsün */
    }
    .user-dropdown-toggle {
        padding: 6px;
    }

}


/* ===== GENEL MOBİL CİHAZLAR (768px ve altı) ===== */
@media (max-width: 768px) {
    /* --- Genel Ayarlar --- */
    body {
        line-height: 1.5;
    }
    .container {
        padding: 0 1rem;
    }
    h1 { font-size: 2.25rem !important; }
    h2 { font-size: 1.75rem !important; }

    /* --- Ana Sayfa --- */
    .welcome-hero {
        padding: 4rem 1rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .monitoring-grid {
        grid-template-columns: 1fr;
    }
    .card-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    .fullness-bar {
        /* Dikey çubuğu yatay yapalım */
        width: 100%;
        height: 8px;
        margin-left: 0;
        flex-direction: row;
    }
    .fullness-bar-inner {
        height: 100%;
    }

    /* --- Market & Skin Changer & Kadro Gridleri --- */
    .market-grid,
    .staff-grid,
    .items-display,
    .privileges-grid,
    .rank-grid {
        grid-template-columns: 1fr;
    }
    .skinchanger-modal .modal-content, .modal-content {
        margin: 2rem 1rem;
        padding: 1.5rem;
        max-height: 90vh;
    }
    .skinchanger-modal .model-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }


    /* --- Kurallar Sayfası --- */
    .rules-tabs {
        gap: 0.5rem;
    }
    .tab-link {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
        flex-grow: 1;
        text-align: center;
    }
    .rule-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr; /* Her şeyi tek sütuna indir */
        text-align: center;
    }
    .footer-column ul {
        align-items: center;
    }
    .footer-logo-column {
        justify-content: center;
    }
    
    /* --- Admin Paneli --- */
    .admin-container {
        flex-direction: column;
    }
    .admin-nav {
        display: flex;
        overflow-x: auto;
        padding: 10px;
        align-self: stretch;
    }
    .admin-nav a {
        flex-shrink: 0;
    }
    .admin-table {
        font-size: 0.8rem;
    }
    .admin-table th, .admin-table td {
        padding: 10px;
    }
    .table-avatar {
        width: 30px;
        height: 30px;
    }
}

/* Menü açıkken sayfanın kaymasını engellemek için body'e eklenecek stil */
body.menu-open {
    overflow: hidden;
}

/* Mobil menü butonunu başlangıçta gizle */
.mobile-nav-toggle {
    display: none; 
}

/* Belirli bir genişliğin altına inildiğinde... */
@media (max-width: 900px) {
    /* Masaüstü menüsünü gizle */
    .main-nav {
        display: none;
    }
    /* Mobil menü butonunu göster */
    .mobile-nav-toggle {
        display: block;
    }
}

/* ==========================================================================
   HEADER & NAVİGASYON GÖRÜNÜRLÜK KURALLARI (MASAÜSTÜ & MOBİL)
   ========================================================================== */

/* --- Varsayılan (Masaüstü) Durum --- */

/* Mobil menü butonunu (hamburger) masaüstünde gizle */
.mobile-nav-toggle {
    display: none;
}

/* Mobil menü panelini (overlay) masaüstünde tamamen gizle */
.mobile-nav-overlay {
    display: none; /* JavaScript ile kontrol edilecek olsa da başlangıçta kapalı olması garanti edilir. */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 16, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* --- Mobil Menü Aktif Olduğunda --- */
.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menü açıkken sayfanın kaymasını engelle */
body.menu-open {
    overflow: hidden;
}


/* --- MOBİL GÖRÜNÜM (900px ve altı) --- */
@media (max-width: 900px) {
    /* Masaüstü için olan ana navigasyonu gizle */
    .main-nav {
        display: none;
    }

    /* Gizlenmiş olan mobil menü butonunu (hamburger) görünür yap */
    .mobile-nav-toggle {
        display: block;
        z-index: 9999;
    }
}

/* Sunucu Kartı Butonları */
.monitoring-card .card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.btn-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-info:hover {
    background-color: #555;
}
.btn-info svg {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

/* Ana değişkenler */
:root {
    --modal-bg-dark: rgba(15, 0, 25, 0.85);
    --modal-purple: #b200ff;
    --modal-purple-soft: #d9b3ff;
    --modal-border: rgba(255, 255, 255, 0.18);
    --modal-glow: rgba(180, 0, 255, 0.45);
    --modal-white-soft: #f2eaff;
}

/* Modal Arka Planı */
#playerModal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 20, 0.75);
    backdrop-filter: blur(0.1px) saturate(160%);
    justify-content: center;
    align-items: center;
    z-index: 3000;
    animation: fadeIn 0.45s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

/* Modal İçerik (Premium Neon Gradient) */
.modal-content {
    background: linear-gradient(
        160deg,
        rgba(40, 0, 75, 0.95),
        rgba(25, 0, 40, 0.88)
    );
    padding: 40px;
    border-radius: 18px;
    width: 92%;
    max-width: 540px;

    border: 1px solid var(--modal-border);
    box-shadow:
        0 0 24px var(--modal-glow),
        0 0 70px rgba(255, 255, 255, 0.06);

    color: var(--modal-white-soft);
    position: relative;
    overflow: hidden;

    transform: scale(0.88);
    animation: modalPop 0.45s cubic-bezier(.25,.46,.45,.94) forwards;
}

@keyframes modalPop {
    to { transform: scale(1); }
}

/* İç Glow Hologram Katmanı */
.modal-content::before {
    content: "";
    position: absolute;
    inset: -5px;
    background: linear-gradient(
        150deg,
        rgba(255, 255, 255, 0.15),
        rgba(170, 0, 255, 0.85),
        rgba(255, 255, 255, 0.08)
    );
    opacity: 0.12;
    filter: blur(30px);
    z-index: -1;
}

/* Kapatma Butonu */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: 700;
    color: var(--modal-white-soft);
    cursor: pointer;
    transition: all 0.25s ease;
    text-shadow: 0 0 14px var(--modal-glow);
}

.modal-close:hover {
    color: #ffdbff;
    transform: rotate(90deg) scale(1.18);
    text-shadow: 0 0 20px rgba(200, 0, 255, 0.9);
}

/* Başlık */
.modal-title {
    font-size: 1.75rem;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--modal-purple-soft);
    text-shadow: 0 0 14px rgba(200, 0, 255, 0.55);
    position: relative;
    padding-bottom: 16px;
}

.modal-title::after {
    content: "";
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--modal-purple), #ffffff44, var(--modal-purple));
    margin: 12px auto 0;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 14px rgba(150, 0, 255, 0.8);
}

/* En Aktif Oyuncu Kutusu */
.most-active-player {
    background: rgba(60, 0, 100, 0.4);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;

    border: 1px solid rgba(200, 0, 255, 0.4);
    box-shadow: inset 0 0 20px rgba(150, 0, 255, 0.25);

    animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
    0% { box-shadow: inset 0 0 12px rgba(150, 0, 255, 0.25); }
    50% { box-shadow: inset 0 0 22px rgba(200, 0, 255, 0.45); }
    100% { box-shadow: inset 0 0 12px rgba(150, 0, 255, 0.25); }
}

.most-active-player h4 {
    color: #e6c8ff;
    margin: 0 0 8px 0;
    font-size: 1.1em;
}

.most-active-player p {
    margin: 0;
    color: #fff;
    opacity: 0.9;
    font-size: 0.92em;
}

/* Loading / Error / Empty */
.loading-text,
.error-text,
.no-players-text {
    background: rgba(60, 0, 90, 0.45);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    color: #ebd4ff;
    font-style: italic;
    box-shadow: inset 0 0 16px rgba(160,0,255,0.25);
}

/* Player List - Premium Purple Style */
.player-list {
    list-style: none; /* Noktaları kaldır */
    margin: 0;
    padding: 0;
}

.player-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    margin-bottom: 8px;
    border-radius: 8px;

    font-size: 1rem;
    color: #f3e6ff;
    letter-spacing: 0.5px;

    border: 1px solid rgba(180, 0, 255, 0.25);
    box-shadow: 0 0 8px rgba(180, 0, 255, 0.2);

    display: flex;
    align-items: center;
    gap: 10px;

    transition: 0.25s ease;
}

/* Hover efekti */
.player-list li:hover {
    background: rgba(180, 0, 255, 0.18);
    transform: translateX(4px);
    border-color: rgba(200, 0, 255, 0.45);
    box-shadow: 0 0 14px rgba(200, 0, 255, 0.4);
}

/* Oyuncu başındaki sıra numarası style */
.player-list li::before {
    content: "⚡";
    color: #d58dff;
    font-size: 0.9rem;
    text-shadow: 0 0 6px rgba(200,0,255,0.7);
}


.modal-subtitle {
    text-align: center;
    color: #d9b3ff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}




/* Sponsorlarımız Bölümü */
.sponsors-section {
    padding: 80px 0;
    background: linear-gradient(
        180deg, 
        var(--bg-color) 0%, 
        var(--bg-light) 100%
    ); /* daha yumuşak degrade */
    border-top: 1px solid var(--border-color); /* üstten hafif çizgi ile ayır */
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.sponsor-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sponsor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-color: var(--accent-color);
}

.sponsor-image {
    width: 100%;
    height: 120px; /* Tüm sponsor logoları için sabit yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.sponsor-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; /* Görseli orantılı şekilde kutuya sığdırır */
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

.sponsor-card:hover .sponsor-image img {
    transform: scale(1.05);
}


.sponsor-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.sponsor-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.status {
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: bold;
}

.status-beklemede { background:#35507a; color:#cfe4ff; }
.status-verilecek { background:#6d4cff; color:white; }
.status-verildi   { background:#3fa63f; color:white; }
.status-iptal     { background:#a63f3f; color:white; }

.admin-modal {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.7);
    display:flex;
    align-items:center;
    justify-content:center;
}

.admin-modal-content {
    background:#1b2233;
    padding:25px;
    border-radius:10px;
    width:350px;
    box-shadow: 0 0 20px #00000055;
    border:1px solid #506080;
}


/* ===========================
   PLAYER LIST FINAL PREMIUM
   =========================== */

/* Modal içindeki scroll container */
#player-list-container {
    max-height: 380px;
    overflow-y: auto;

    scrollbar-width: thin;
    scrollbar-color: #b200ff33 rgba(40,0,60,0.5);
}

#player-list-container::-webkit-scrollbar {
    width: 6px;
}

#player-list-container::-webkit-scrollbar-track {
    background: rgba(40, 0, 60, 0.4);
    border-radius: 10px;
}

#player-list-container::-webkit-scrollbar-thumb {
    background: #b200ff;
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(190, 0, 255, 0.7);
}


/* Liste Kutusu – İsim & Süre kolonları */
.player-list-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.player-list-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#player-names {
    flex: 2;
}

#player-durations {
    flex: 1;
    text-align: right;
}


/* Liste Elemanları – Premium Mor Glow */
.player-list-container li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9em;

    display: flex;
    justify-content: space-between;

    color: #f2eaff;
    transition: background-color 0.25s ease, padding-left 0.25s ease;

    background: rgba(25, 0, 40, 0.25);
    backdrop-filter: blur(2px);
    border-radius: 6px;
}

.player-list-container li:hover {
    background-color: rgba(110, 0, 180, 0.35);
    padding-left: 6px;
}

.player-list-container li:last-child {
    border-bottom: none;
}

.player-list-container li span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
}


/* Durum / Hata / Yükleniyor */
.loading-text,
.error-text,
.no-players-text {
    text-align: center;
    color: #d9b3ff;

    padding: 20px;
    font-style: italic;

    background: rgba(40, 0, 60, 0.4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;

    box-shadow: inset 0 0 12px rgba(190, 0, 255, 0.2);
}
