/*
Theme Name: Nexus Global Master
Theme URI: https://pvptakvimi.com.tr/
Author: Gemini Partner
Description: High-performance listing, raffle architecture & Dark Mode.
Version: 1.4.0 (Auth & Animations Fixed)
Text Domain: nexus-global
*/

/* --------------------------------------------------------------------------
   1. GENEL AYARLAR (Karanlık Zemin)
   -------------------------------------------------------------------------- */
body {
    background-color: #121212 !important; /* Koyu zemin */
    color: #e0e0e0; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: #00d1b2; /* Neon turkuaz linkler */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover { color: #fff; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --------------------------------------------------------------------------
   2. HEADER (ÜST MENÜ) & ANİMASYONLU BUTONLAR
   -------------------------------------------------------------------------- */
.site-header {
    background-color: #1e1e1e;
    border-bottom: 1px solid #333;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.user-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.welcome-text { color: #bbb; font-size: 14px; }
.welcome-text strong { color: #fff; }

/* -- HEADER BUTONLARI (Hareketli) -- */
.btn-login {
    border: 1px solid #555;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease; /* Hareket Kodu */
}
.btn-login:hover { 
    background: #333; 
    border-color: #777; 
    transform: translateY(-3px); /* Zıplama Efekti */
}

.btn-register {
    background-color: #00d1b2; 
    color: #000; 
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease; /* Hareket Kodu */
}
.btn-register:hover { 
    background-color: #00b89c; 
    color: #000; 
    transform: translateY(-3px); /* Zıplama Efekti */
    box-shadow: 0 5px 15px rgba(0, 209, 178, 0.3); /* Gölge */
}

.btn-logout {
    background: #c0392b;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   3. GİRİŞ VE KAYIT SAYFALARI (AUTH PAGES - DÜZELTİLDİ!)
   -------------------------------------------------------------------------- */
.auth-card {
    max-width: 400px;
    margin: 60px auto; /* Ortala ve yukarıdan boşluk ver */
    background: #1e1e1e; /* Koyu Kart Rengi */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
    text-align: center;
}

.auth-card h2 {
    margin-bottom: 25px;
    color: #fff;
    font-size: 24px;
}

.auth-card label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    color: #ccc;
    font-weight: 600;
    font-size: 14px;
}

.auth-card input[type="text"], 
.auth-card input[type="password"],
.auth-card input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: #121212; /* Input içi koyu */
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    box-sizing: border-box; /* Taşmayı önler */
}

.auth-card input:focus {
    border-color: #00d1b2;
    outline: none;
}

/* Form Butonları (Giriş/Kayıt Gönder) */
.view-button {
    display: inline-block;
    width: auto !important; /* Genişliği içeriğe göre ayarla */
    padding: 8px 30px !important; /* Butonu biraz yatay genişlet */
    margin: 15px auto 0 auto !important; /* Ortala ve üstten boşluk ver */
    background-color: #00d1b2;
    color: #000;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

/* Ortak Hover (Üzerine Gelme) Efekti */
.view-button:hover, button[type="submit"]:hover {
    background-color: #00b89c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 209, 178, 0.3);
}

/* Form Butonları (Giriş Yap / Kayıt Ol) - Tam Genişlik Kalmalı */
button[type="submit"] {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: #00d1b2;
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-footer {
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 13px;
    color: #888;
}

/* --------------------------------------------------------------------------
   4. SUNUCU DETAY KARTI (Tekli Sayfa)
   -------------------------------------------------------------------------- */
.main-content { padding: 40px 0; }

.server-detail-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 800px;
    margin: 0 auto;
}

.server-header h1 {
    color: #fff;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 32px;
}

.server-info-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-box {
    flex: 1;
    background-color: #252525;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.info-box strong {
    display: block;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-box span {
    color: #00d1b2;
    font-size: 18px;
    font-weight: bold;
}

.server-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #333;
}

.content-text { color: #ccc; line-height: 1.7; }

/* --------------------------------------------------------------------------
   5. ÇEKİLİŞ KUTUSU (Raffle Box)
   -------------------------------------------------------------------------- */
.raffle-box {
    margin-top: 40px;
    background-color: #252525;
    border: 2px solid #e74c3c;
    border-radius: 12px;
    overflow: hidden;
}

.raffle-header {
    background-color: #c0392b;
    color: #fff;
    padding: 15px;
    text-align: center;
}
.raffle-header h3 { margin: 0; font-size: 22px; font-weight: 800; }

.raffle-content { padding: 30px; text-align: center; }

.raffle-prize-title { color: #fff; font-size: 26px; font-weight: 700; }

#nexus-countdown {
    background-color: #330000;
    color: #ff5252;
    border: 1px solid #5a0000;
    padding: 10px;
    border-radius: 5px;
    margin: 15px 0;
    font-weight: bold;
}

.raffle-conditions {
    background-color: #2a1a1a;
    color: #ff8a80;
    border: 1px dashed #e74c3c;
    padding: 10px;
    margin: 15px 0;
    border-radius: 6px;
    font-size: 13px;
    display: inline-block;
}

.raffle-input {
    background-color: #121212;
    border: 1px solid #444;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    width: 80%;
    text-align: center;
    margin-bottom: 15px;
}

.btn-join-raffle {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
}
.btn-join-raffle:hover { 
    background-color: #c0392b; 
    transform: translateY(-2px);
}

.raffle-success-msg {
    background-color: #1b5e20;
    color: #a5d6a7;
    border: 1px solid #2e7d32;
    padding: 15px;
    border-radius: 6px;
    font-weight: bold;
}

.btn-login-dark {
    background-color: #fff;
    color: #000;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

/* --------------------------------------------------------------------------
   6. RÜTBE ROZETLERİ (User Badges)
   -------------------------------------------------------------------------- */
.user-badge {
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-right: 5px;
}
.badge-rank_neutral { background: #7f8c8d; }
.badge-rank_friendly { background: #3498db; }
.badge-rank_good { background: #2ecc71; }
.badge-rank_noble { background: #e67e22; }
.badge-rank_hero { background: #2980b9; box-shadow: 0 0 8px rgba(52, 152, 219, 0.6); }
.badge-owner_basic { background: #8e44ad; }
.badge-owner_senior { background: #f1c40f; color: #000; }
.badge-administrator { background: #c0392b; }

/* --------------------------------------------------------------------------
   7. ANASAYFA LİSTELEME (GRID SİSTEMİ)
   -------------------------------------------------------------------------- */
.server-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 25px !important;
    margin-top: 40px !important;
}

.server-card {
    background-color: #1e1e1e !important;
    border: 1px solid #333 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.3s ease !important;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: #00d1b2;
}

.server-card-image img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
}

.server-card-body {
    padding: 20px !important;
    text-align: center !important;
}

.server-card-body h3 a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.server-card-meta {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
}

/* =========================================
   NEXUS GLOBAL - PROFİL VE SİSTEM STİLLERİ
   ========================================= */

/* --- Kullanıcı Profil Kartı --- */
.nexus-profile-wrapper {
    background: #1e1e1e;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
    font-family: sans-serif;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nexus-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.nexus-avatar-frame {
    border: 3px solid #c0392b;
    border-radius: 50%;
    padding: 3px;
    display: inline-block;
}

.nexus-user-info h2 {
    margin: 0;
    font-size: 20px !important;  /* Aşırı büyük olmasın */
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px; /* Harflerin arasını açarak lüks hava katar */
    line-height: 1.2;
}

/* 2. Rütbe Etiketi: İnce, Oval ve Minimalist */
.nexus-user-role {
    padding: 3px 10px !important; /* Daha az boşluk (Slim yapı) */
    border-radius: 20px !important; /* Tam oval (Pill shape) */
    font-size: 10px !important; /* Küçük ve kibar yazı */
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px !important; /* İsimle arasına hafif boşluk */
    box-shadow: none !important; /* Gölgeyi kaldır (Flat tasarım) */
    display: inline-block;
    vertical-align: middle;
    opacity: 0.9; /* Çok hafif şeffaflık modern durur */
}

.nexus-exp-display {
    text-align: right;
    font-size: 28px;
    font-weight: bold;
    color: #f39c12;
}

.nexus-exp-label {
    font-size: 14px;
    color: #888;
}

/* --- Progress Bar --- */
.nexus-progress-container {
    margin-bottom: 30px;
    background: #252525;
    padding: 15px;
    border-radius: 8px;
}

.nexus-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 8px;
}

.nexus-progress-track {
    background: #444;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
}

.nexus-progress-fill {
    background: linear-gradient(90deg, #e74c3c, #f1c40f);
    height: 100%;
    transition: width 0.5s ease;
}

.nexus-progress-stats {
    text-align: right;
    font-size: 11px;
    color: #666;
    margin-top: 5px;
}

/* --- Tablolar ve Listeler --- */
.nexus-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .nexus-profile-grid { grid-template-columns: 1fr; }
    .nexus-profile-header { flex-direction: column; text-align: center; }
    .nexus-exp-display { text-align: center; margin-top: 10px; }
}

.nexus-section-title {
    border-bottom: 2px solid #c0392b;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #ddd;
}
.nexus-section-title.gold { border-color: #f39c12; }

.nexus-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.nexus-table tr { border-bottom: 1px solid #2a2a2a; }
.nexus-table td { padding: 8px 5px; }
.nexus-date { color: #888; }
.nexus-amount-plus { color: #2ecc71; font-weight: bold; text-align: right; }
.nexus-amount-minus { color: #e74c3c; font-weight: bold; text-align: right; }

.nexus-list { list-style: none; padding: 0; margin: 0; font-size: 13px; }
.nexus-list-item {
    padding: 10px;
    background: #252525;
    margin-bottom: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nexus-char-name { color: #f39c12; font-size: 12px; }

/* --- Avatar Düzeltmesi (Tam Yuvarlak) --- */
.nexus-avatar-frame {
    border: 3px solid #c0392b;
    border-radius: 50%;
    padding: 3px;
    display: inline-block;
    width: 80px;  /* Genişlik sabit */
    height: 80px; /* Yükseklik sabit */
    overflow: hidden; /* Dışarı taşan kısımları kes */
    background: #000;
}

.nexus-avatar-frame img {
    border-radius: 50%; /* Resmin kendisini de yuvarla */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi ezmeden çerçeveye doldur */
    display: block;
}

/* --- Kaydırılabilir Liste Kutusu (Scroll Box) --- */
.nexus-scroll-box {
    max-height: 250px; /* Kutunun maksimum boyu */
    overflow-y: auto;  /* Boyu geçerse scroll çubuğu çıkar */
    padding-right: 5px;
    margin-top: 10px;
}

/* Scroll Çubuğu Tasarımı (Chrome/Safari için şık gri çubuk) */
.nexus-scroll-box::-webkit-scrollbar {
    width: 6px;
}
.nexus-scroll-box::-webkit-scrollbar-track {
    background: #1a1a1a; 
}
.nexus-scroll-box::-webkit-scrollbar-thumb {
    background: #444; 
    border-radius: 3px;
}
.nexus-scroll-box::-webkit-scrollbar-thumb:hover {
    background: #c0392b; 
}

/* --- Çekiliş Durum Etiketleri --- */
.nexus-raffle-item {
    padding: 12px;
    background: #252525;
    margin-bottom: 8px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #444; /* Varsayılan gri çizgi */
}

/* Duruma göre kenar renkleri */
.nexus-status-ongoing { border-left-color: #f39c12; } /* Turuncu */
.nexus-status-won { border-left-color: #2ecc71; }     /* Yeşil */
.nexus-status-lost { border-left-color: #e74c3c; }    /* Kırmızı */

.nexus-server-info {
    display: flex;
    flex-direction: column;
}

.nexus-server-name {
    font-weight: bold;
    color: #fff;
    font-size: 14px;
}

.nexus-char-label {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.nexus-result-badge {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(0,0,0,0.3);
}

/* --- Rütbe Renkleri (Badge Sistemi) --- */
.nexus-user-role {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #fff !important; /* Yazı her zaman beyaz olsun */
    display: inline-block;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Rütbe Sınıfları */
.role-admin { background-color: #c0392b; }      /* Yönetici: Kırmızı */
.role-owner { background-color: #8e44ad; }      /* Sunucu Sahibi: Mor */
.role-hero { background-color: #2980b9; }       /* Kahraman: Mavi (Header ile uyumlu) */
.role-noble { background-color: #e67e22; }      /* Soylu: Turuncu */
.role-good { background-color: #27ae60; }       /* İyi: Yeşil */
.role-friendly { background-color: #16a085; }   /* Arkadaşça: Turkuaz */
.role-neutral { background-color: #7f8c8d; }    /* Tarafsız: Gri */

/* --- YENİ: Timeline (Bölünmüş) İlerleme Çubuğu --- */
.nexus-timeline-container {
    margin-bottom: 40px; /* Alttaki yazılar için yer açalım */
    padding: 10px 0;
    position: relative;
}

.nexus-timeline-track {
    background: #333;
    height: 12px;
    border-radius: 6px;
    position: relative;
    width: 100%;
}

.nexus-timeline-fill {
    background: linear-gradient(90deg, #e74c3c, #f1c40f);
    height: 100%;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.8s ease-in-out;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
}

/* Durak Noktaları (Çentikler) */
.nexus-timeline-marker {
    position: absolute;
    top: -4px; /* Çubuğun biraz üstüne taşsın */
    bottom: -4px;
    width: 2px;
    background: rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

/* Durak Yazıları (1K, 4K vb.) */
.nexus-timeline-label {
    position: absolute;
    top: 20px; /* Çubuğun altına itelim */
    font-size: 10px;
    color: #666;
    font-weight: bold;
    white-space: nowrap;
    transform: translateX(-50%); /* Ortalamak için */
}

/* Aktif (Geçilmiş) Duraklar Parlasın */
.nexus-timeline-marker.active {
    background: #fff;
    box-shadow: 0 0 5px #fff;
}
.nexus-timeline-marker.active .nexus-timeline-label {
    color: #f39c12; /* Altın rengi olsun */
}

/* --- NEXUS TAKVİM TASARIMI --- */
.nexus-calendar-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* GRUP BAŞLIKLARI */
.nexus-cal-group {
    margin-bottom: 40px;
}

.nexus-cal-header {
    background: #222;
    padding: 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #333;
}

/* Bu Hafta (Özel Tasarım - Altın) */
.active-week .nexus-cal-header {
    background: linear-gradient(90deg, #b7892b 0%, #f39c12 100%);
    border-bottom: none;
}
.active-week .nexus-cal-title { color: #000; text-shadow:none; }
.active-week .nexus-cal-date-badge { background: rgba(0,0,0,0.2); color: #fff; }
.active-week .nexus-cal-list { border: 2px solid #f39c12; border-top: none; }

/* Gelecek Haftalar */
.future-week .nexus-cal-header { border-left: 5px solid #fff; }

.nexus-cal-title {
    margin: 0;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.nexus-cal-date-badge {
    background: #333;
    color: #ccc;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

/* KART TASARIMI (Yatay Liste) */
.nexus-cal-list {
    background: #151515;
    border-radius: 0 0 8px 8px;
    padding: 10px;
}

.nexus-cal-card {
    display: flex;
    align-items: center;
    background: #1e1e1e;
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.nexus-cal-card:hover {
    transform: translateY(-2px);
    border-color: #555;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Logo */
.nexus-card-logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 15px;
    position: relative;
}
.nexus-card-logo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid #333; }
.no-img { width: 100%; height: 100%; background: #333; border-radius: 50%; display:flex; align-items:center; justify-content:center; color:#555; font-weight:bold;}

/* Bilgi */
.nexus-card-info { flex: 1; }
.nexus-card-name {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 5px;
}
.nexus-card-name:hover { color: #f39c12; }

.nexus-card-tags { display: flex; gap: 8px; }
.tag-type { background: #f39c12; color: #000; padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: bold; }
.tag-open { background: #333; color: #aaa; padding: 2px 8px; border-radius: 3px; font-size: 11px; }

/* Aksiyonlar */
.nexus-card-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 15px;
}

.nexus-vote-box {
    display: flex;
    gap: 5px;
    background: #252525;
    padding: 4px;
    border-radius: 4px;
}

.vote-btn {
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 12px;
    padding: 2px 6px;
    transition: 0.2s;
}
.vote-btn.up:hover { color: #2ecc71; }
.vote-btn.down:hover { color: #e74c3c; }

.p2w-btn {
    background: #2c3e50;
    color: #bdc3c7;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    cursor: help;
}
.p2w-btn:hover { background: #f1c40f; color: #000; }

/* Git Butonu */
.nexus-go-btn {
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
    transition: 0.2s;
}
.nexus-go-btn:hover { background: #c0392b; box-shadow: 0 0 10px rgba(231, 76, 60, 0.4); }

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .nexus-cal-card { flex-wrap: wrap; text-align: center; justify-content: center; }
    .nexus-card-logo { margin: 0 auto 10px auto; }
    .nexus-card-info { width: 100%; margin-bottom: 15px; }
    .nexus-card-tags { justify-content: center; }
    .nexus-card-actions { width: 100%; justify-content: space-around; margin: 0 0 15px 0; border-top:1px solid #333; border-bottom:1px solid #333; padding:10px 0; }
    .nexus-go-btn { width: 100%; text-align: center; }
}

/* Server Listesi Oylama Grubu Tasarımı */
.nexus-vote-group {
    display: flex;
    background: #1a1a1a; /* Koyu arka plan */
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #333;
    width: fit-content;
}

.n-btn {
    background: transparent;
    border: none;
    color: #efefef;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    outline: none;
}

.n-btn:hover {
    background: #252525;
}

/* Buton Arasındaki Çizgiler */
.n-up { border-right: 1px solid #333; }
.n-down { border-left: 1px solid #333; }

/* P2W İkonu (Orta Bölüm) */
.n-p2w {
    background: #222;
    color: #ffd700; /* Altın sarısı para simgesi */
    cursor: default;
    font-size: 16px;
}

.n-p2w.active {
    color: #ff4d4d; /* Eğer sunucu P2W ise para simgesi kırmızımsı yanar */
}

/* Oy Verildikten Sonraki Durumlar */
.n-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.n-up.voted {
    background: #1b5e20 !important; /* Beğenince yeşil */
    color: #fff;
}

.n-down.voted {
    background: #b71c1c !important; /* Beğenmeyince kırmızı */
    color: #fff;
}

.count {
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

/* P2W Buton Tasarımı */
.p2w-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #e74c3c; /* Kırmızı tonu */
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Üzerine gelince parlama efekti */
.p2w-badge:hover {
    background-color: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}