/* ============================================
   NOVA GUNZ - ULTRA MODERN THEME 2026
   Stunning Cyberpunk Gaming Experience
   ============================================ */

/* === CSS VARIABLES === */
:root {
    /* Primary Colors */
    --primary: #0D65FF;
    --primary-light: #3d8bff;
    --primary-dark: #0a4fc7;
    --secondary: #FF5500;
    --secondary-light: #ff7733;
    --accent: #00f0ff;
    --accent-pink: #ff00ff;
    
    /* Background Colors */
    --bg-darker: #030508;
    --bg-dark: #0a0e17;
    --bg-card: rgba(10, 14, 23, 0.9);
    --bg-glass: rgba(13, 101, 255, 0.05);
    
    /* Neon Colors */
    --neon-cyan: #00f0ff;
    --neon-magenta: #ff00ff;
    --neon-green: #39ff14;
    --neon-orange: #ff6600;
    --neon-pink: #ff0088;
    
    /* Status */
    --success: #00ff88;
    --danger: #ff2255;
    --warning: #ffaa00;
    
    /* Glass Effect */
    --glass-bg: rgba(10, 14, 23, 0.75);
    --glass-border: rgba(0, 240, 255, 0.15);
    --glass-blur: 20px;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0D65FF 0%, #00f0ff 100%);
    --gradient-accent: linear-gradient(135deg, #FF5500 0%, #ff00ff 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #030508 100%);
    --gradient-cyber: linear-gradient(135deg, #0D65FF 0%, #ff00ff 50%, #00f0ff 100%);
    --gradient-rainbow: linear-gradient(90deg, #ff0000, #ff7700, #ffff00, #00ff00, #00ffff, #0000ff, #8b00ff);
    
    /* Shadows & Glows */
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(13, 101, 255, 0.3);
    --glow-cyan: 0 0 40px rgba(0, 240, 255, 0.6);
    --glow-magenta: 0 0 40px rgba(255, 0, 255, 0.6);
    --glow-primary: 0 0 40px rgba(13, 101, 255, 0.6);
    
    /* Typography */
    --font-display: 'Orbitron', 'Rajdhani', monospace;
    --font-heading: 'Rajdhani', 'Poppins', sans-serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-darker);
    color: #e0e8f0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* === ANIMATED BACKGROUND === */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 10%, rgba(13, 101, 255, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 90%, rgba(255, 0, 136, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 60%);
    z-index: -3;
    animation: bgPulse 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    pointer-events: none;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* === PARTICLES CONTAINER === */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent);
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* === LOADING SCREEN === */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    animation: loaderFadeOut 0.3s ease 0.8s forwards;
}

/* Force hide after animation */
.loading-overlay[style*="display:none"],
.loading-overlay[style*="display: none"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

@keyframes loaderFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    display: none !important;
}

.cyber-loader {
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.cyber-loader::before,
.cyber-loader::after {
    content: '';
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
}

.cyber-loader::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: var(--accent-pink);
    animation: spin 2s linear reverse infinite;
}

.cyber-loader::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: var(--primary);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.loader-text {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 3px;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* === EPIC HERO SECTION === */
.epic-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s ease-out;
    transform: scale(1.1);
}

.hero-slideshow .slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(1.3) contrast(1.1);
}

/* Hero Overlays */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.gradient-overlay {
    background: 
        linear-gradient(180deg, rgba(3, 5, 8, 0.4) 0%, transparent 30%, transparent 60%, rgba(3, 5, 8, 0.98) 100%),
        linear-gradient(90deg, rgba(3, 5, 8, 0.6) 0%, transparent 20%, transparent 80%, rgba(3, 5, 8, 0.6) 100%);
}

.scanlines-overlay {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.vignette-overlay {
    background: radial-gradient(ellipse at center, transparent 40%, rgba(3, 5, 8, 0.8) 100%);
}

.noise-overlay {
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='https://upload.wikimedia.org/wikipedia/commons/9/9a/512x512_Dissolve_Noise_Texture.png id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Hero Content */
.hero-center {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-logo-nova {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(13, 101, 255, 0.8)) 
            drop-shadow(0 0 100px rgba(255, 0, 136, 0.4));
    animation: logoFloat 4s ease-in-out infinite, logoPulse 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 50px rgba(13, 101, 255, 0.8)) drop-shadow(0 0 100px rgba(255, 0, 136, 0.4)); }
    50% { filter: drop-shadow(0 0 80px rgba(13, 101, 255, 1)) drop-shadow(0 0 150px rgba(255, 0, 136, 0.6)); }
}

.hero-tagline {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tagline-word {
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: wordGlow 3s ease-in-out infinite;
}

.tagline-word.accent {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordGlow 3s ease-in-out infinite, rainbowShift 5s linear infinite;
}

@keyframes wordGlow {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

@keyframes rainbowShift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Slide Navigation */
.slide-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slide-arrow {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.slide-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: var(--glow-primary);
}

.slide-dots {
    display: flex;
    gap: 10px;
}

.slide-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
}

.slide-dots .dot.active {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
    transform: scale(1.3);
}

.slide-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* === NAVIGATION === */
.nova-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0 20px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 25px;
    color: #9aa5b5;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link.active {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent);
}

.nav-link i {
    font-size: 1rem;
    transition: var(--transition-base);
}

.nav-link:hover i {
    transform: scale(1.2);
    color: var(--accent);
}

/* === STATUS BAR === */
.status-bar {
    background: linear-gradient(90deg, rgba(13, 101, 255, 0.1) 0%, rgba(255, 0, 136, 0.1) 50%, rgba(0, 240, 255, 0.1) 100%);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 20px;
}

.status-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #9aa5b5;
}

.status-item strong {
    color: #fff;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--danger);
}

.status-indicator.online {
    background: var(--success);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
}

.glow-text {
    color: var(--accent) !important;
    text-shadow: 0 0 20px var(--accent);
}

/* === MAIN CONTENT === */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 30px;
}

@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* === GLASS CARD === */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.glass-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(13, 101, 255, 0.1);
    transform: translateY(-5px);
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-header i {
    color: var(--accent);
    font-size: 1.2rem;
}

.card-body {
    padding: 20px;
}

/* === LOGIN PANEL === */
.login-panel {
    margin-bottom: 30px;
}

.login-form .form-group {
    margin-bottom: 15px;
}

.login-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.login-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.login-form input::placeholder {
    color: #5a6577;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 5px 20px rgba(13, 101, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(13, 101, 255, 0.6);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
}

.btn-accent {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 5px 20px rgba(255, 85, 0, 0.4);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 85, 0, 0.6);
}

.btn-full {
    width: 100%;
}

/* === USER PANEL (Logged In) === */
.user-panel {
    text-align: center;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: var(--glow-primary);
    border: 3px solid rgba(0, 255, 136, 0.3);
}

.user-avatar i {
    font-size: 2.5rem;
    color: #fff;
}

.user-avatar.has-photo {
    padding: 0;
    overflow: hidden;
    border: 3px solid var(--accent);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
}

.user-avatar .profile-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-clan-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: #ffd700;
}

.user-clan-badge:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 140, 0, 0.25));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.user-clan-badge i {
    font-size: 0.9rem;
}

.user-clan-badge .clan-emblem-mini {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: contain;
    image-rendering: pixelated;
}

.user-clan-badge span {
    font-weight: 600;
}

.user-welcome {
    color: #9aa5b5;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.user-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.user-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.user-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.stat-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.stat-label {
    font-size: 0.75rem;
    color: #6a7485;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-value.cash {
    color: var(--neon-orange);
}

.stat-value.event {
    color: var(--neon-green);
}

.user-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* === NEWS SECTION === */
.news-card {
    margin-bottom: 20px;
}

.news-item {
    padding: 15px;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-base);
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: rgba(13, 101, 255, 0.1);
}

.news-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-badge.importante {
    background: linear-gradient(135deg, #ff2255, #ff0088);
    color: #fff;
}

.news-badge.actualizacion {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #000;
}

.news-badge.evento {
    background: linear-gradient(135deg, #ffaa00, #ff6600);
    color: #000;
}

.news-badge.noticia {
    background: linear-gradient(135deg, #0D65FF, #00f0ff);
    color: #fff;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.news-date {
    font-size: 0.8rem;
    color: var(--accent);
}

.news-date i {
    margin-right: 5px;
}

/* === RANKING MINI === */
.ranking-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: #9aa5b5;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-base);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--glow-primary);
}

.ranking-list {
    list-style: none;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition-base);
}

.ranking-item:hover {
    background: rgba(13, 101, 255, 0.15);
    transform: translateX(5px);
}

.rank-position {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
}

.rank-position.gold {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.rank-position.silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #000;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

.rank-position.bronze {
    background: linear-gradient(135deg, #cd7f32, #b8860b);
    color: #fff;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
}

.rank-position.normal {
    background: rgba(255, 255, 255, 0.1);
    color: #9aa5b5;
}

.rank-info {
    flex: 1;
}

.rank-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.rank-level {
    font-size: 0.8rem;
    color: var(--accent);
}

.rank-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}


.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.5);
}

.discord-btn i {
    font-size: 1.5rem;
}

/* === FEATURED ITEMS === */
.featured-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.featured-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 15px;
    text-align: center;
    transition: var(--transition-base);
}

.featured-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.item-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-accent);
    font-size: 1.5rem;
    color: #fff;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.item-price {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--neon-orange);
}

.item-price i {
    margin-right: 5px;
}

/* === CENTER SLIDESHOW (Character Gallery) === */
.gallery-slideshow {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(1.2);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.gallery-nav.prev { left: 15px; }
.gallery-nav.next { right: 15px; }

.gallery-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: #fff;
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-nav button:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-dot.active {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

/* === ADMIN NEWS FORM === */
.admin-panel {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.admin-panel h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--warning);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-form .form-group {
    margin-bottom: 12px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.admin-form textarea {
    min-height: 80px;
    resize: vertical;
}

.admin-form select {
    cursor: pointer;
}

/* === FOOTER === */
.nova-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand img {
    width: 60px;
    height: auto;
}

.footer-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent);
}

.footer-info p {
    font-size: 0.85rem;
    color: #6a7485;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #9aa5b5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #9aa5b5;
    text-decoration: none;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* === ERROR/SUCCESS MESSAGES === */
.alert {
    padding: 12px 15px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: rgba(255, 34, 85, 0.15);
    border: 1px solid rgba(255, 34, 85, 0.3);
    color: var(--danger);
}

.alert-success {
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--success);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .sidebar-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .hero-logo-nova {
        width: 200px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 12px 15px;
        font-size: 0.8rem;
    }
    
    .status-container {
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* === SELECTION === */
::selection {
    background: var(--primary);
    color: #fff;
}

/* === CROWN ICONS === */
.crown-icon {
    font-size: 1rem;
}

.crown-icon.gold { color: #ffd700; }
.crown-icon.silver { color: #c0c0c0; }
.crown-icon.bronze { color: #cd7f32; }
