/* ===========================
   MOBILE2SERVERLER - ANA CSS
   =========================== */

:root {
    --gold:        #E5C97B;
    --gold-dark:   #C9A84C;
    --gold-light:  #F5DFA0;
    --platinum:    #E8E8E8;
    --silver:      #A8A8A8;
    --bg-dark:     #0D0A12;
    --bg-card:     #15101E;
    --bg-card2:    #1A1428;
    --bg-sidebar:  #120E1C;
    --border:      #2A2240;
    --border-gold: rgba(229,201,123,0.3);
    --text:        #C8BFD8;
    --text-muted:  #7B6F90;
    --text-light:  #E8E0F0;
    --accent:      #6B21A8;
    --accent2:     #7C3AED;
    --red:         #EF4444;
    --green:       #22C55E;
    --discord:     #5865F2;
    --radius:      10px;
    --radius-sm:   6px;
    --shadow:      0 4px 24px rgba(0,0,0,0.4);
    --transition:  all 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* Bebas Neue global letter-spacing */
[class*="hero-title"], [class*="reklam-hero"] h1,
[class*="section-header"] h2, [class*="vip-hero"] h1,
[class*="upcoming-label"], [class*="upcoming-name"],
[class*="package-name"], [class*="vip-faq-title"],
[class*="form-title"], [class*="footer-logo-name"],
[class*="th-badge"], [class*="package-badge-icon"] { letter-spacing: 2px; }

/* Bebas Neue genel kural */
.bebas, h1, h2, h3 { letter-spacing: 1.5px; }
body {
    font-family: 'Inter', 'Rajdhani', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    /* Banner geni?li?i kadar i?e ?ek - t?m sayfa 2 banner aras?nda kal?r */
    padding-left: var(--side-banner-w);
    padding-right: var(--side-banner-w);
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1320px; margin: 0 auto; padding: 0 16px; }

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1100; /* Banner (900) ve mobile nav (999) ?st?nde */
    background: rgba(13,10,18,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}
.nav-link i { font-size: 12px; }
.nav-link:hover {
    color: var(--text-light);
    background: rgba(255,255,255,0.05);
}
.nav-link.active {
    color: var(--gold);
    background: rgba(229,201,123,0.1);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Reklam nav link ? subtle gold tint */
.nav-link-ad { color: rgba(229,201,123,0.7); }
.nav-link-ad:hover { color: var(--gold); background: rgba(229,201,123,0.08); }
.nav-link-ad.active { color: var(--gold); }

/* WhatsApp nav link ? green pill */
.nav-link-whatsapp {
    background: rgba(37,211,102,0.12);
    color: #25D366 !important;
    border: 1px solid rgba(37,211,102,0.25);
    padding: 7px 14px;
    border-radius: 20px;
    margin-left: 4px;
}
.nav-link-whatsapp:hover {
    background: rgba(37,211,102,0.22) !important;
    border-color: rgba(37,211,102,0.5);
    color: #2eeb72 !important;
    transform: translateY(-1px);
}
.nav-link-whatsapp::after { display: none !important; }

/* Header CTA */
.header-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.btn-whatsapp-cta:hover { filter: brightness(1.12); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-link.whatsapp-link { color: #25D366; }
.mobile-nav-link.whatsapp-link:hover { color: #2eeb72; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: none;
}
.btn-gold {
    background: linear-gradient(135deg, #C9A84C, #E5C97B, #C9A84C);
    color: #1A1000;
    box-shadow: 0 2px 12px rgba(229,201,123,0.3);
}
.btn-gold:hover { filter: brightness(1.1); box-shadow: 0 4px 20px rgba(229,201,123,0.4); transform: translateY(-1px); }
.btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-detail {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 14px;
    font-size: 11px;
}
.btn-detail:hover { border-color: var(--gold); color: var(--gold); }
.btn-play {
    background: linear-gradient(135deg, #6B21A8, #7C3AED);
    color: #fff;
    padding: 8px 14px;
    font-size: 11px;
    justify-content: center;
}
.btn-play:hover { filter: brightness(1.15); transform: translateY(-1px); }
.btn-discord {
    background: var(--discord);
    color: #fff;
    width: 100%;
    justify-content: center;
    padding: 11px;
    font-size: 13px;
}
.btn-discord:hover { filter: brightness(1.1); }
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    justify-content: center;
    padding: 11px 20px;
    font-size: 13px;
}
.btn-whatsapp:hover { filter: brightness(1.1); }
.btn-load-more {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 32px;
    font-size: 13px;
    border-radius: var(--radius);
}
.btn-load-more:hover { border-color: var(--gold); color: var(--gold); }
.full-width { width: 100%; justify-content: center; }

/* ===== FLASH MESSAGES ===== */
.flash-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.flash-success { background: rgba(34,197,94,0.15); border-bottom: 2px solid #22C55E; color: #86efac; }
.flash-error   { background: rgba(239,68,68,0.15);  border-bottom: 2px solid #EF4444; color: #fca5a5; }
.flash-message button { margin-left: auto; color: inherit; opacity: 0.7; font-size: 16px; }
.flash-message button:hover { opacity: 1; }

.side-banner-right a { justify-content: end; }

/* ===== TOP BANNER BAR (t?m sayfalarda, header alt?nda, container i?inde) ===== */
.top-banner-bar {
    width: 100%;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    margin-top: 15px;
}
.top-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-banner-inner a {
    display: block;
    width: 100%;
    margin: 0 auto;
}
.top-banner-inner img {
    width: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-sm);
}
.top-banner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
}

/* ===== AD BANNERS ===== */
.ad-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px dashed var(--border);
}
.ad-middle { width: 100%; min-height: 90px; border-radius: var(--radius); margin: 16px 0; }
.ad-placeholder {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
}
.ad-mobile-banner { min-height: 50px; margin-top: 16px; border-radius: var(--radius-sm); overflow: hidden; }

/* ===== PAGE LAYOUT ===== */
.page-wrapper { padding: 0; }
.main-layout {
    display: block;
    padding-top: 20px;
}
.content-center { width: 100%; }

/* ===== HERO SECTION ===== */

/* ????????????????????????????????????????
   HERO SECTION ? Premium MMORPG
???????????????????????????????????????? */
.hero-section {
    position: relative;
    margin-bottom: 28px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(229,201,123,0.2);
    background:
        linear-gradient(180deg, rgba(30,18,50,0.93) 0%, rgba(14,10,24,0.96) 60%, rgba(10,8,18,0.99) 100%),
        url('/images/heroback.jpg') center center / cover no-repeat;
    min-height: 260px;
}

/* Arka plan doku */
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(229,201,123,0.08) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23E5C97B' fill-opacity='0.02'%3E%3Cpath d='M40 38v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM40 8V4h-2v4h-4v2h4v4h2V10h4V8h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Alt kenar ?izgi */
.hero-section::after {
    content: '';
    position: absolute; bottom:0; left:10%; right:10%; height:1px;
    background: linear-gradient(90deg, transparent, rgba(229,201,123,0.4), transparent);
}

/* Par?ac?klar */
.hero-particles { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.hero-particle {
    position: absolute;
    left: var(--x);
    bottom: -10px;
    width: var(--s); height: var(--s);
    border-radius: 50%;
    background: rgba(229,201,123,0.55);
    animation: particle-rise var(--d) ease-in var(--del) infinite;
    box-shadow: 0 0 6px rgba(229,201,123,0.4);
}
@keyframes particle-rise {
    0%   { transform:translateY(0) scale(1); opacity:0; }
    10%  { opacity:1; }
    90%  { opacity:.4; }
    100% { transform:translateY(-320px) scale(0.3); opacity:0; }
}

/* K??e dekor */
.hero-corner {
    position: absolute; width:40px; height:40px; pointer-events:none;
}
.hero-corner-tl { top:16px; left:16px; border-top:2px solid rgba(229,201,123,0.4); border-left:2px solid rgba(229,201,123,0.4); border-radius:4px 0 0 0; }
.hero-corner-tr { top:16px; right:16px; border-top:2px solid rgba(229,201,123,0.4); border-right:2px solid rgba(229,201,123,0.4); border-radius:0 4px 0 0; }
.hero-corner-bl { bottom:16px; left:16px; border-bottom:2px solid rgba(229,201,123,0.4); border-left:2px solid rgba(229,201,123,0.4); border-radius:0 0 0 4px; }
.hero-corner-br { bottom:16px; right:16px; border-bottom:2px solid rgba(229,201,123,0.4); border-right:2px solid rgba(229,201,123,0.4); border-radius:0 0 4px 0; }

/* ?? yap? */
.hero-inner {
    position: relative; z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 40px 36px;
}
.hero-left { flex: 1; min-width: 0; }

/* Badge */
.hero-badge-row {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
}
.hero-badge-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(229,201,123,0.7);
    flex-shrink: 0;
}
.hero-badge-text {
    font-size: 9px; font-weight: 800; letter-spacing: 2.5px;
    color: rgba(229,201,123,0.75);
}

/* Ba?l?k */
.hero-title {
    display: flex; flex-direction: column;
    gap: 0; margin: 0 0 14px; line-height: 1;
}
.hero-title-line {
    font-family: 'Bebas Neue','Rajdhani',sans-serif;
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 400; letter-spacing: 5px;
    color: var(--text-light);
    text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.hero-title-gold {
    background: linear-gradient(90deg, #8B6914 0%, #E5C97B 30%, #FFFACD 50%, #E5C97B 70%, #8B6914 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: name-shine 3s linear infinite;
    font-size: clamp(44px,7vw,82px);
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(229,201,123,0.35));
}
.hero-title-sm {
    font-size: clamp(18px, 2.8vw, 34px);
    letter-spacing: 6px;
    color: rgba(255,255,255,0.55);
}

/* A??klama */
.hero-desc {
    font-size: 13px; color: var(--text-muted); line-height: 1.7;
    max-width: 420px; margin: 0 0 22px;
}

/* CTA Butonlar */
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 10px;
    font-size: 12px; font-weight: 800; letter-spacing: 1px;
    transition: all .22s ease; white-space: nowrap;
}
.hero-btn-primary {
    background: linear-gradient(135deg, #C9A84C, #E5C97B);
    color: #0D0A12;
    box-shadow: 0 4px 20px rgba(229,201,123,0.3);
}
.hero-btn-primary:hover { filter:brightness(1.1); transform:translateY(-2px); box-shadow:0 8px 28px rgba(229,201,123,0.45); }
.hero-btn-arrow { animation: bounce-y 1.8s ease-in-out infinite; }
@keyframes bounce-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(3px)} }

.hero-btn-wa {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.hero-btn-wa:hover { filter:brightness(1.1); transform:translateY(-2px); box-shadow:0 8px 24px rgba(37,211,102,0.4); }

/* ?statistikler */
.hero-stats-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(229,201,123,0.15);
    border-radius: 14px;
    padding: 8px 0;
    min-width: 160px;
    flex-shrink: 0;
    backdrop-filter: blur(12px);
}
.hero-stat-item {
    padding: 16px 28px;
    text-align: center;
}
.hero-stat-icon {
    font-size: 16px; color: var(--gold);
    margin-bottom: 6px;
    opacity: 0.8;
}
.hero-stat-val {
    font-family: 'Bebas Neue','Rajdhani',sans-serif;
    font-size: 22px; letter-spacing: 1.5px; color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(229,201,123,0.3);
}
.hero-stat-label {
    font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
    color: var(--text-muted); margin-top: 4px;
}
.hero-stat-sep {
    width: 60%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229,201,123,0.2), transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-inner { flex-direction: column; padding: 32px 20px 28px; gap: 24px; }
    .hero-stats-col { flex-direction: row; width: 100%; min-width: auto; padding: 0; }
    .hero-stat-item { flex: 1; padding: 14px 12px; }
    .hero-stat-sep { width: 1px; height: 40px; background: linear-gradient(180deg, transparent, rgba(229,201,123,0.2), transparent); }
    .hero-title-line { font-size: clamp(28px,8vw,48px); }
    .hero-title-gold { font-size: clamp(36px,10vw,60px); }
    .hero-title-sm { font-size: clamp(14px,4vw,22px); }
    .hero-corner { width: 24px; height: 24px; }
    .header-cta{
        display: none;
    }
}
@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-btn { justify-content: center; }
    .hero-badge-text { font-size: 7px; letter-spacing: 1.5px; }
}

.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong {
    font-family: 'Bebas Neue', 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gold);
    line-height: 1;
}
.hero-stat span { font-size: 10px; font-weight: 600; letter-spacing: 1px; color: var(--text-muted); margin-top: 3px; }
.hero-stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ===== UPCOMING SPOTLIGHT ===== */
.upcoming-spotlight {
    background: linear-gradient(135deg, #1A1428 0%, #0F0D1A 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 20px;
}
.upcoming-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.upcoming-server-info { display: flex; align-items: center; gap: 16px; }
.upcoming-logo {
    position: relative;
    width: 60px; height: 60px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-gold);
}
.upcoming-logo img { width: 100%; height: 100%; object-fit: cover; }
.logo-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #2A1A4A, #1A1428);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 24px;
}
.upcoming-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.upcoming-name {
    font-family: 'Bebas Neue', 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

/* Countdown */
.countdown-wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    min-width: 80px;
}
.countdown-num {
    font-family: 'Bebas Neue', 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.countdown-label { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; color: var(--text-muted); margin-top: 4px; }

/* ===== FILTER TABS ROW ===== */
.filter-tabs-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Inline search */
.inline-search-form { flex-shrink: 0; }
.inline-search-wrap {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: 200px;
}
.inline-search-wrap input {
    flex: 1;
    background: none;
    border: none;
    padding: 9px 12px;
    color: var(--text-light);
    font-size: 13px;
    outline: none;
    width: 100%;
}
.inline-search-wrap input::placeholder { color: var(--text-muted); }
.inline-search-wrap button {
    padding: 9px 12px;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
}
.inline-search-wrap button:hover { color: var(--gold); }

/* ===== FILTER TABS ===== */
.filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
}
.filter-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}
.filter-tab:hover { color: var(--gold); background: rgba(229,201,123,0.08); }
.filter-tab.active { background: linear-gradient(135deg, #C9A84C, #E5C97B); color: #1A1000; }
.filter-tab i { font-size: 12px; }

/* ==============================================
   SERVER ROWS ? Metin2PVP Stili Premium Liste
============================================== */

.srv-list { display:flex; flex-direction:column; gap:10px; }

/* ??? Temel sat?r ??? */
.sr {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(135deg, rgba(14,11,20,0.97) 0%, rgba(10,8,16,0.99) 100%);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    cursor: pointer;
}
.sr:hover { transform: translateY(-2px) scale(1.002); }

/* T?klama overlay */
.sr-link {
    position: absolute; inset: 0; z-index: 1;
}

/* Shimmer (platinum) */
.sr-shimmer {
    position: absolute; top:0; left:-120%; width:50%; height:100%;
    background: linear-gradient(90deg,transparent,rgba(229,201,123,0.07),transparent);
    animation: sr-sh 4s ease-in-out infinite;
    pointer-events: none; z-index:0;
}
@keyframes sr-sh { 0%{left:-120%} 60%{left:150%} 100%{left:150%} }

/* ??? Tier stilleri ??? */
.sr-free   { border-color:rgba(255,255,255,0.07); }
.sr-free:hover { border-color:rgba(229,201,123,0.25); box-shadow:0 6px 28px rgba(0,0,0,0.5); }

.sr-silver {
    border-color: rgba(168,168,168,0.2);
    border-left: 3px solid rgba(168,168,168,0.5);
    background: linear-gradient(135deg,rgba(18,14,24,0.97),rgba(10,8,16,0.99));
}
.sr-silver:hover { border-color:rgba(168,168,168,0.45); box-shadow:0 6px 28px rgba(0,0,0,0.55),0 0 20px rgba(168,168,168,0.06); }

.sr-gold {
    border-color: rgba(240,165,0,0.28);
    border-left: 3px solid rgba(240,165,0,0.7);
    background: linear-gradient(135deg,rgba(22,16,8,0.97),rgba(10,8,16,0.99));
}
.sr-gold:hover { border-color:rgba(240,165,0,0.55); box-shadow:0 8px 36px rgba(0,0,0,0.6),0 0 28px rgba(240,165,0,0.1); }

.sr-platinum {
    border-color: rgba(229,201,123,0.35);
    border-left: 3px solid var(--gold);
    background: linear-gradient(135deg,rgba(30,22,46,0.98),rgba(20,14,32,0.98),rgba(10,8,16,0.99));
    box-shadow: 0 0 0 1px rgba(229,201,123,0.07), inset 0 0 60px rgba(229,201,123,0.03);
}
.sr-platinum:hover {
    border-color: rgba(229,201,123,0.6);
    box-shadow: 0 10px 44px rgba(0,0,0,0.65), 0 0 36px rgba(229,201,123,0.14), 0 0 0 1px rgba(229,201,123,0.18);
}
.sr-featured.sr-platinum { box-shadow:0 0 0 1px rgba(229,201,123,0.13), 0 6px 30px rgba(229,201,123,0.1); }

/* ??? ?? d?zen ??? */
.sr-inner {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 2;
}


/* Sol panel: logo + isim birlikte banner genisligi */
.sr-left-panel {
    flex-shrink: 0;
    width: 380px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(90deg, rgba(229,201,123,0.04) 0%, transparent 100%);
    position: relative;
}
.sr-left-panel::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.sr-hot-badge {
    display: inline-flex; align-items:center; gap:4px;
    font-size: 9px; font-weight:800; letter-spacing:1px;
    color:#EF4444; margin-top:2px;
    animation: hot-pulse 1.5s ease-in-out infinite;
}
/* == LOGO MODU == */
.sr-inner-logo {
    min-height: 100px;
}

/* Logo s?tunu */
.sr-logo-col {
    flex-shrink: 0;
    width: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 30px 8px;
    position: relative;
}
.sr-logo-img {
    width: 68px; height: 68px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.sr-logo-img img { width:100%; height:100%; object-fit:contain; display:block; }
.sr-logo-fallback {
    width: 68px; height: 68px;
    border-radius: 12px;
    background: linear-gradient(135deg,#1A0D2E,#2A1A4A);
    display: flex; align-items:center; justify-content:center;
    font-size: 22px; color: var(--gold);
}
.sr-hot-inline {
    position: absolute; top:6px; right:4px;
    font-size: 10px; color:#EF4444;
    animation: hot-pulse 1.5s ease-in-out infinite;
}
@keyframes hot-pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* Tier chip */
.sr-tier-chip {
    font-size: 8px; font-weight:800; letter-spacing:1.2px;
    padding: 2px 8px; border-radius:3px;
    display: flex; align-items:center; gap:3px;
    white-space: nowrap;
}
.sr-tier-chip i { font-size:7px; }
.sr-chip-platinum { background:linear-gradient(90deg,#8B6914,#E5C97B,#8B6914); color:#1A0D00; }
.sr-chip-gold     { background:linear-gradient(90deg,#B8700A,#F0A500); color:#1A0D00; }
.sr-chip-silver   { background:linear-gradient(90deg,#555,#A8A8A8); color:#fff; }
.sr-chip-free     { background:rgba(255,255,255,0.07); color:var(--text-muted); border:1px solid rgba(255,255,255,0.1); }

/* Isim sutunu */
.sr-name-col {
    flex-shrink: 0;
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    border-right: 1px solid rgba(229,201,123,0.09);
    position: relative;
    overflow: hidden;
}
.sr-name-colll::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.sr-name {
    font-family: 'Bebas Neue','Rajdhani',sans-serif;
    font-size: 24px; font-weight:400; letter-spacing:2.5px;
    line-height:1.1; margin:0;
    white-space: nowrap; overflow:hidden; text-overflow:ellipsis;
    background: linear-gradient(90deg, #B8860B 0%, #E5C97B 30%, #FFF8DC 50%, #E5C97B 70%, #B8860B 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: name-shine 4s linear infinite;
}
@keyframes name-shine {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}
.sr-platinum .sr-name {
    font-size: 30px; letter-spacing:3px;
    background: linear-gradient(90deg, #8B6914 0%, #E5C97B 25%, #FFFACD 50%, #E5C97B 75%, #8B6914 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: name-shine 2.5s linear infinite;
    filter: drop-shadow(0 0 8px rgba(229,201,123,0.5));
}
.sr-gold .sr-name { font-size:27px; animation-duration:3s; }
.sr-desc {
    font-size: 12px; color:#ffffff; line-height:1.4;
    white-space: nowrap; overflow:hidden; text-overflow:ellipsis;
    margin: 0; letter-spacing:0.3px;
}

/* Meta s?tunlar */
.sr-cols {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 8px;
    border-left: 1px solid rgba(255,255,255,0.04);
}
.sr-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 14px;
    min-width: 100px;
    border-right: 1px solid rgba(255,255,255,0.04);
}
.sr-col:last-child { border-right:none; }
.sr-col-label {
    font-size: 8px; font-weight:700; letter-spacing:1.2px;
    color: var(--text-muted); text-transform:uppercase;
}
.sr-col-val {
    font-size: 13px; font-weight:700;
    color: var(--text-light); line-height:1.2;
}
.sr-col-sub { font-size:11px; color:var(--text-muted); }
.sr-col-val.upcoming { color:#F59E0B; }
.sr-col-val.online   { color:#4ade80; }
.sr-online-big {
    font-family: 'Bebas Neue', monospace;
    font-size: 22px !important;
    letter-spacing: 1px;
    color: #4ade80 !important;
    text-shadow: 0 0 16px rgba(74,222,128,0.35);
}

/* Geri say?m */
.sr-col-cd { min-width: 160px; }
.sr-cd {
    display: flex; align-items:center; gap:2px;
}
.sr-cd-item { display:flex; flex-direction:column; align-items:center; }
.sr-cd-n {
    font-family:'Bebas Neue',monospace; font-size:20px; letter-spacing:1px;
    color:var(--gold); line-height:1;
    background:rgba(229,201,123,0.1);
    border:1px solid rgba(229,201,123,0.22);
    border-radius:4px; padding:1px 5px; min-width:28px; text-align:center;
}
.sr-cd-u { font-size:7px; color:var(--text-muted); letter-spacing:0.5px; margin-top:2px; text-align:center; }
.sr-cd-sep {
    font-size:14px; color:rgba(229,201,123,0.4);
    font-weight:700; margin-bottom:12px; padding:0 1px;
}

/* Sosyal ikonlar (genel) */
.sr-icons {
    display: none; /* art?k sr-icons-below kullan?l?yor */
}
.sr-icon {
    width: 28px; height:28px; border-radius:6px;
    display:flex; align-items:center; justify-content:center;
    font-size:12px; color:var(--text-muted);
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.07);
    transition: all .18s ease;
    position: relative; z-index:2;
}
.sr-icon:hover { transform:scale(1.18) translateY(-1px); color:#fff; }
.sr-icon-web:hover      { background:#6B21A8; border-color:#6B21A8; }
.sr-icon-discord:hover  { background:#5865F2; border-color:#5865F2; }
.sr-icon-ig:hover       { background:linear-gradient(135deg,#833AB4,#E1306C); border-color:#E1306C; }
.sr-icon-yt:hover       { background:#FF0000; border-color:#FF0000; }

/* Butonlar */
.sr-btns {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 12px 14px;
    justify-content: center;
    align-items: stretch;
    border-left: 1px solid rgba(255,255,255,0.06);
    position: relative; z-index:2;
    min-width: 110px;
}
.sr-btn {
    display: flex; align-items:center; justify-content:center; gap:6px;
    padding: 8px 18px; border-radius:7px;
    font-size: 11px; font-weight:700; letter-spacing:.8px;
    transition: all .18s ease; white-space:nowrap;
    min-width: 86px;
}
.sr-btn-detail {
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.11);
    color:var(--text-light);
}
.sr-btn-detail:hover { border-color:rgba(229,201,123,0.35); color:var(--gold); background:rgba(229,201,123,0.06); }
.sr-btn-play {
    background: linear-gradient(135deg,#C9A84C,#E5C97B);
    color: #0D0A12; font-weight:800;
    box-shadow: 0 2px 10px rgba(229,201,123,0.22);
}
.sr-btn-play:hover { filter:brightness(1.1); transform:translateY(-1px); box-shadow:0 4px 18px rgba(229,201,123,0.4); }
.sr-btn-discord {
    background: #5865F2;
    color: #fff; font-weight:700;
    box-shadow: 0 2px 10px rgba(88,101,242,0.3);
}
.sr-btn-discord:hover { filter:brightness(1.12); transform:translateY(-1px); box-shadow:0 4px 16px rgba(88,101,242,0.5); }

/* == BANNER MODU == */
.sr-inner-banner { min-height:130px; }

/* Banner s?tunu */
.sr-banner-col {
    flex-shrink: 0;
    width: 380px;
    position: relative;
    overflow: hidden;
}
.sr-banner-col img {
    width:100%; height:100%;
    object-fit:cover; display:block;
    transition: transform .3s ease;
}
.sr:hover .sr-banner-col img { transform:scale(1.04); }

.sr-tier-chip { position:absolute; top:8px; left:8px; z-index:3; }
.sr-hot-chip {
    position: absolute; top:8px; right:8px; z-index:3;
    background:linear-gradient(135deg,#DC2626,#EF4444);
    color:#fff; font-size:9px; font-weight:800; letter-spacing:1px;
    padding:3px 10px; border-radius:20px;
    display:flex; align-items:center; gap:4px;
    box-shadow:0 2px 10px rgba(220,38,38,0.5);
    animation: hot-chip 2s ease-in-out infinite;
}
.sr-hot-chip i { font-size:8px; }
@keyframes hot-chip { 0%,100%{box-shadow:0 2px 10px rgba(220,38,38,0.5)} 50%{box-shadow:0 2px 20px rgba(220,38,38,0.8)} }

/* Banner i?erik sa? */
.sr-banner-content {
    flex:1; display:flex; flex-direction:column;
    padding: 14px 0 10px 0;
    border-left:1px solid rgba(255,255,255,0.05);
}
.sr-banner-top {
    padding:0 16px 10px;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

/* ??? Reklam sat?r? ??? */
.srv-ad { border-radius:10px; overflow:hidden; }
.srv-ad img { width:100%; display:block; }
.srv-ad-placeholder {
    height:90px;
    background:rgba(255,255,255,0.02);
    border:1px dashed rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center;
    color:var(--text-muted); font-size:11px; font-weight:600; letter-spacing:1px; gap:8px;
}

/* No Servers */
.no-servers {
    display:flex; flex-direction:column; align-items:center; gap:14px;
    padding:64px 20px; text-align:center;
    background:rgba(14,11,20,0.7);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:12px;
}
.no-servers i { font-size:44px; color:var(--gold); opacity:.35; }
.no-servers h3 { font-size:18px; color:var(--text-light); }
.no-servers p { color:var(--text-muted); }

/* ??? Responsive ??? */
@media (max-width:1000px) {
    .sr-banner-col { width:280px; }
    .sr-name-col { width:160px; }
    .sr-col { padding:12px 10px; min-width:80px; }
}
@media (max-width:768px) {
    .sr-inner-logo, .sr-inner-banner { flex-wrap:wrap; }
    .sr-logo-col { width:80px; padding:8px 6px; }
    .sr-logo-img, .sr-logo-img img { width:58px; height:58px; }
    .sr-name-col { flex:1; width:auto; padding:12px 8px; }
    .sr-name { font-size:17px; }
    .sr-cols { width:100%; order:3; border-left:none; border-top:1px solid rgba(255,255,255,0.05); overflow-x:auto; flex-wrap:nowrap; }
    .sr-col { min-width:auto; padding:10px; }
    .sr-icons { flex-direction:row; order:4; width:100%; padding:8px 12px; border-left:none; border-top:1px solid rgba(255,255,255,0.05); }
    .sr-btns { order:5; width:100%; flex-direction:row; border-left:none; border-top:1px solid rgba(255,255,255,0.05); padding:10px 12px; }
    .sr-btn { flex:1; }
    .sr-banner-col { width:100%; height:140px; }
    .sr-banner-content { padding-top:10px; }
    .sr-online-big { font-size:18px !important; }
    .sr-cd-n { font-size:16px; }
}
@media (max-width:480px) {
    .sr-name { font-size:15px; letter-spacing:1.5px; }
    .sr-col-label { font-size:7px; }
    .sr-col-val { font-size:11px; }
    .sr-tier-chip { font-size:7px; padding:2px 6px; }
}
/* ===== PAGINATION ===== */
.pagination-wrapper { margin-top: 24px; display: flex; justify-content: center; }
.load-more-wrapper { display: flex; justify-content: center; margin-top: 16px; }

/* ===== RIGHT SIDEBAR ===== */
.sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 80px;
}

/* Search */
.sidebar-search { }
.search-input-wrap {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.search-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 14px;
    color: var(--text-light);
    font-size: 13px;
    outline: none;
}
.search-input-wrap input::placeholder { color: var(--text-muted); }
.search-input-wrap button {
    padding: 10px 14px;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}
.search-input-wrap button:hover { color: var(--gold); }

/* Widgets */
.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.widget-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
}
.widget-header i { color: var(--gold); font-size: 14px; }
.widget-header h3 { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--text-light); }
.widget-list { display: flex; flex-direction: column; }
.widget-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.widget-list-item:last-child { border-bottom: none; }
.widget-list-item:hover { background: rgba(255,255,255,0.03); }
.rank-num { font-size: 12px; font-weight: 700; min-width: 20px; color: var(--text-muted); }
.rank-1 { color: var(--gold); }
.rank-2 { color: var(--silver); }
.rank-3 { color: #CD7F32; }
.widget-server-logo {
    width: 30px; height: 30px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}
.widget-server-logo-ph {
    width: 30px; height: 30px;
    border-radius: 6px;
    background: var(--bg-card2);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    flex-shrink: 0;
}
.widget-server-name { flex: 1; font-size: 12px; font-weight: 600; color: var(--text-light); }
.widget-server-count { font-size: 11px; font-weight: 700; color: var(--green); }
.widget-server-count.small { font-size: 10px; }
.widget-server-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.widget-server-date { font-size: 10px; color: var(--text-muted); }

/* Discord Widget */
.discord-widget {
    background: linear-gradient(135deg, #3B3F9A, #5865F2);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.discord-icon { font-size: 36px; color: #fff; }
.discord-widget h3 { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: 0.5px; }
.discord-widget p { font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* Add Server Box */
.sidebar-add-server {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-add-server h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--gold); }
.sidebar-add-server p { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 32px;
    margin-bottom: 32px;
}
.footer-brand { }
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.footer-logo-img:hover { opacity: 1; }
.footer-logo-sub { font-size: 12px; color: var(--text-muted); line-height: 1.5; max-width: 260px; }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: var(--transition);
    opacity: 0.85;
}
.footer-socials a:hover { opacity: 1; transform: translateY(-2px); }
.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--text-light); }
.footer-newsletter p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
.newsletter-input-group {
    display: flex;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.newsletter-input-group input {
    flex: 1;
    background: none;
    border: none;
    padding: 9px 12px;
    color: var(--text-light);
    font-size: 12px;
    outline: none;
}
.newsletter-input-group input::placeholder { color: var(--text-muted); }
.newsletter-input-group button {
    background: linear-gradient(135deg, #C9A84C, #E5C97B);
    color: #1A1000;
    padding: 9px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.newsletter-input-group button:hover { filter: brightness(1.1); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-disclaimer { color: var(--text-muted); font-size: 11px; }

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(21,16,30,0.97);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(10px);
    justify-content: space-around;
    padding: 8px 0 env(safe-area-inset-bottom, 8px);
}
.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 10px;
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    min-width: 50px;
    text-align: center;
}
.mob-nav-item i { font-size: 18px; }
.mob-nav-item.active, .mob-nav-item:hover { color: var(--gold); }
.mob-nav-top i { color: var(--text-muted); }

/* ===== SERVER DETAIL PAGE ===== */
.server-detail-hero {
    width: 100%;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}
.server-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.server-detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,10,18,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.server-detail-info { }
.server-detail-name {
    font-family: 'Bebas Neue', 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}
.server-detail-type { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.server-detail-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
}
.server-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
}
.stat-card-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 6px; }
.stat-card-value { font-size: 20px; font-weight: 700; color: var(--gold); }

/* Vote Box */
.vote-box {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 16px;
}
.vote-count-display { font-size: 32px; font-weight: 700; color: var(--gold); }
.vote-label { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 12px; }
.btn-vote {
    background: linear-gradient(135deg, #6B21A8, #7C3AED);
    color: #fff;
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
}
.btn-vote:hover { filter: brightness(1.1); }

/* ===== FORMS ===== */
.form-page { padding: 32px 0 80px; }
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
}
.form-title {
    font-family: 'Bebas Neue', 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--text-muted); }
.form-label .required { color: var(--red); }
.form-input, .form-select, .form-textarea {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--text-light);
    font-size: 13px;
    outline: none;
    transition: var(--transition);
    width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
    background: rgba(229,201,123,0.03);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-select option { background: var(--bg-card); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-help { font-size: 11px; color: var(--text-muted); }
.form-error { font-size: 11px; color: var(--red); }
.form-submit { margin-top: 24px; text-align: center; }
.form-submit .btn { padding: 14px 40px; font-size: 14px; }

/* ===== VIP PAGE ===== */
.vip-page { padding: 32px 0 80px; }
.vip-hero {
    text-align: center;
    padding: 48px 0;
    margin-bottom: 40px;
}
.vip-hero h1 { font-family: 'Bebas Neue', 'Rajdhani', sans-serif; font-size: 36px; font-weight: 400; letter-spacing: 4px; color: var(--gold); margin-bottom: 12px; }
.vip-hero p { font-size: 16px; color: var(--text-muted); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 48px; }
.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.package-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #1E1830, #15101E);
}
.package-featured-tag {
    position: absolute;
    top: 12px; right: -24px;
    background: linear-gradient(135deg, #C9A84C, #E5C97B);
    color: #1A1000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 32px;
    transform: rotate(45deg);
}
.package-badge-icon { font-size: 40px; margin-bottom: 12px; }
.package-name { font-family: 'Bebas Neue', 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: var(--text-light); margin-bottom: 8px; }
.package-price { font-size: 32px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.package-period { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.package-features { text-align: left; margin-bottom: 20px; }
.package-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}
.package-features li:last-child { border-bottom: none; }
.package-features li i { color: var(--green); font-size: 11px; }

/* ===== BADGES (inline) ===== */
.badge {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 3px;
    position: absolute;
    bottom: 4px; right: 4px;
}
.badge-platinum { background: linear-gradient(135deg, #C9A84C, #E5C97B); color: #1A1000; }
.badge-gold     { background: linear-gradient(135deg, #D4860A, #F0A500); color: #1A1000; }
.badge-silver   { background: linear-gradient(135deg, #7A7A7A, #A8A8A8); color: #fff; }

/* ===== UTILITIES ===== */
.hide-mobile { }
.show-mobile { display: none; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-4 { margin-top: 16px; }

/* ===== PAGINATION CUSTOM ===== */
nav[role="navigation"] .flex { justify-content: center; gap: 4px; flex-wrap: wrap; }
nav[role="navigation"] a,
nav[role="navigation"] span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px; height: 36px;
    padding: 0 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text);
    transition: var(--transition);
}
nav[role="navigation"] a:hover { border-color: var(--gold); color: var(--gold); }
nav[role="navigation"] [aria-current="page"] { background: linear-gradient(135deg, #C9A84C, #E5C97B); color: #1A1000; border-color: transparent; }

/* ===== FIXED SIDE BANNERS (230?950, t?m sayfalarda sabit) ===== */
:root {
    --side-banner-w: 230px;
    --side-banner-h: 950px;
}

.side-banner {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 900;
    width: var(--side-banner-w);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    pointer-events: auto;
}

.side-banner-left  { left: 0; }
.side-banner-right { right: 0; }

/* G?rselli banner */
.side-banner a {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.side-banner img {
    height: 100vh;
    object-position: top center;
    display: block;
}

/* Placeholder (ger?ek g?rsel yokken) */
.side-banner-placeholder {
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #120E1C 0%, #0D0A12 50%, #120E1C 100%);
    border-right: 1px solid rgba(229,201,123,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 24px 16px;
    position: relative;
}
.side-banner-right .side-banner-placeholder {
    border-right: none;
    border-left: 1px solid rgba(229,201,123,0.1);
}

/* ??erik k?sm?na ?izgi efekti */
.side-banner-placeholder::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(229,201,123,0.15) 30%, rgba(229,201,123,0.15) 70%, transparent);
}
.side-banner-left  .side-banner-placeholder::before { right: 0; }
.side-banner-right .side-banner-placeholder::before { left: 0; }

.side-banner-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    line-height: 1.8;
    text-transform: uppercase;
}

.side-banner-size {
    font-size: 13px;
    font-weight: 700;
    color: rgba(229,201,123,0.25);
    font-family: 'Bebas Neue', 'Rajdhani', sans-serif;
    letter-spacing: 2px;
}

.side-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #C9A84C, #E5C97B);
    color: #1A1000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: var(--transition);
    text-transform: uppercase;
}
.side-banner-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(229,201,123,0.3);
}


/* ?? Konumland?rma ??
   Body zaten banner geni?li?i kadar padding ald???ndan,
   bannerlar daima viewport kenarlar?nda (left:0 / right:0) durur.
   Sayfa i?eri?i hi? bir zaman bannerlar?n alt?na girmez.
*/
.side-banner-left  { left: 0; }
.side-banner-right { right: 0; }

/* 1199px alt?nda bannerlar? gizle ve body padding'i s?f?rla */
@media (max-width: 1199px) {
    .side-banner { display: none !important; }
    body {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Placeholder soluk titreme */
@keyframes side-shimmer {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1;   }
}
.side-banner-placeholder { animation: side-shimmer 4s ease-in-out infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .footer-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .server-card-inner { grid-template-columns: 200px 1fr; }
    .server-actions { flex-direction: row; grid-column: 1 / -1; justify-content: flex-end; }
    .filter-tabs-row { flex-direction: column; align-items: stretch; }
    .inline-search-wrap { width: 100%; }
    .header-inner {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .header-cta .btn span { display: none; }
    .hide-mobile { display: none !important; }
    .show-mobile { display: flex !important; }
    .mobile-bottom-nav { display: flex; }
    body { padding-bottom: 70px; }
    .hero-bg { padding: 28px 20px; }
    .hero-stats { gap: 16px; }
    .upcoming-header { flex-direction: column; text-align: center; }
    .filter-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .filter-tabs::-webkit-scrollbar { display: none; }
    .server-card-inner { grid-template-columns: 1fr; }
    .server-banner { width: 100%; height: 140px; }
    .server-actions { flex-direction: row; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .countdown-wrapper { gap: 10px; }
    .countdown-item { padding: 10px 14px; min-width: 64px; }
    .countdown-num { font-size: 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .server-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .logo-sub { display: none; }
    .header-cta { gap: 6px; }
    .header-cta .btn { padding: 8px 12px; }
    .hero-title { font-size: 22px; }
    .hero-stats { gap: 12px; }
    .hero-stat strong { font-size: 18px; }
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229,201,123,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(229,201,123,0); }
}
.server-card-platinum { animation: none; }
.server-card-platinum:hover { animation: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
