:root {
    --bg: #050505; --card: #0d0d0d; --border: #1a1a1a;
    --accent: #ff4d4d; --paradise: #7d5fff;
    --text: #ffffff; --muted: #666666;
    --ht: #ffaa00; --lt: #58a6ff;
}

body { background: var(--bg); color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; margin: 0; }
.container { max-width: 900px; margin: 120px auto; padding: 0 20px; }

/* Navbar */
.navbar { background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: fixed; width: 100%; top: 0; z-index: 1000; }
.nav-container { height: 70px; display: flex; justify-content: space-between; align-items: center; max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.logo { font-size: 22px; font-weight: 800; cursor: pointer; }
.logo span { color: var(--accent); }
.nav-links a { color: var(--muted); text-decoration: none; margin-left: 25px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.nav-links a.active, .nav-links a:hover { color: white; }

/* Kit Butonları */
.kit-selector { display: flex; gap: 10px; margin-bottom: 25px; background: #111; padding: 5px; border-radius: 12px; width: fit-content; }
.kit-btn { background: transparent; border: none; color: var(--muted); padding: 8px 18px; border-radius: 8px; cursor: pointer; font-weight: 700; transition: 0.3s; }
.kit-btn.active { background: #222; color: white; }

/* Oyuncu Kartları */
.player-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 15px 20px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: 0.2s; }
.player-card:hover { border-color: #333; transform: scale(1.01); background: #111; }
.p-info { display: flex; align-items: center; gap: 15px; }
.p-avatar { width: 32px !important; height: 32px !important; border-radius: 6px; }
.p-name { font-weight: 700; font-size: 16px; display: block; }
.p-pts { font-size: 11px; color: var(--muted); font-weight: 700; }

/* Paradise Sunucu Kartı */
.server-card.paradise { background: linear-gradient(160deg, #120d26 0%, #050505 100%); border: 2px solid var(--paradise); border-radius: 24px; padding: 40px; }
.server-header { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
.server-logo { width: 70px !important; height: 70px !important; border-radius: 15px; border: 2px solid var(--paradise); }
.server-title h2 { font-size: 28px; margin: 0; color: var(--paradise); }
.ip-badge { background: var(--paradise); padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 800; }
.highlight { color: var(--paradise); font-weight: 800; margin-top: 15px; }
.dc-button-large { background: #5865F2; color: white; text-decoration: none; display: block; text-align: center; padding: 15px; border-radius: 12px; font-weight: 800; margin-top: 25px; transition: 0.3s; }

/* Modal */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000; }
.modal-content { background: #0a0a0a; border: 1px solid #222; max-width: 400px; margin: 100px auto; border-radius: 24px; padding: 30px; position: relative; text-align: center; }
.close-btn { position: absolute; right: 20px; top: 20px; font-size: 24px; color: var(--muted); cursor: pointer; }
.modal-header img { width: 64px !important; height: 64px !important; border-radius: 12px; margin-bottom: 10px; }
.tier-item { background: #000; padding: 12px; border-radius: 10px; margin-top: 8px; display: flex; justify-content: space-between; align-items: center; border: 1px solid #111; }

/* Tier Renkleri */
.ht1, .ht2, .ht3, .ht4, .ht5 { color: var(--ht); }
.lt1, .lt2, .lt3, .lt4, .lt5 { color: var(--lt); }
