/* ========================================
   NOX GAMING - CS2 BRUTAL THEME
   ======================================== */

/* === ROOT VARIABLES === */
:root {
    --nox-dark: #0a0e27;
    --nox-darker: #050816;
    --nox-accent: #00ff88;
    --nox-red: #ff0044;
    --nox-white: #ffffff;
    --nox-green: #00d563;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s ease;
}

.server-status-badge.offline {
    background: rgba(255, 0, 68, 0.1);
    border-color: rgba(255, 0, 68, 0.3);
    color: #ff5f87;
}

.server-status-badge.offline .status-dot {
    background: #ff5f87;
    box-shadow: 0 0 10px rgba(255, 0, 68, 0.7);
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--nox-darker);
    color: var(--nox-white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* === NAVIGATION STYLES === */
.nav-blur {
    background: rgba(5, 8, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    transition: all var(--transition-normal);
    position: relative;
}

.nav-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--nox-accent) 50%, 
        transparent 100%
    );
    opacity: 0.5;
}

/* Logo Styles */
.logo-container {
    position: relative;
    z-index: 10;
}

.logo-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    border-radius: 12px;
    transition: transform var(--transition-normal);
}

.logo-icon i {
    color: var(--nox-darker);
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

.logo-container:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
    animation: pulse 1s infinite;
}

.logo-container:hover .logo-icon i {
    color: var(--nox-white);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--nox-accent);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.logo-container:hover .logo-glow {
    opacity: 0.6;
    animation: pulse-glow 2s infinite;
}

.logo-text {
    position: relative;
    margin-left: 1rem;
}

.logo-underline {
    display: none;
}

/* Navigation Links */
.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
    display: inline-block;
}

.nav-link span {
    position: relative;
    z-index: 2;
}

.nav-link-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--nox-accent), var(--nox-red));
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--nox-white);
}

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

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1));
    transition: width var(--transition-normal);
    z-index: 1;
}

.nav-link:hover::before {
    width: calc(100% + 20px);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    position: relative;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    overflow: hidden;
    font-family: 'Rajdhani', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    color: var(--nox-darker);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(0, 255, 136, 0.5);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--nox-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--nox-accent);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    width: 40px;
    height: 30px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100;
}

.mobile-menu-btn .line {
    width: 100%;
    height: 3px;
    background: var(--nox-accent);
    border-radius: 2px;
    transition: all var(--transition-normal);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.mobile-menu-btn.active .line-1 {
    transform: translateY(13.5px) rotate(45deg);
}

.mobile-menu-btn.active .line-2 {
    opacity: 0;
}

.mobile-menu-btn.active .line-3 {
    transform: translateY(-13.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(5, 8, 22, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    transition: right var(--transition-slow);
    overflow-y: auto;
    border-left: 1px solid rgba(0, 255, 136, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 100px 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    color: var(--nox-accent);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 100;
}

.mobile-menu-close:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--nox-accent);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    border-left: 3px solid transparent;
    transition: all var(--transition-normal);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(0, 255, 136, 0.1);
    border-left-color: var(--nox-accent);
    color: var(--nox-white);
    transform: translateX(5px);
}

.mobile-nav-link i {
    font-size: 1.5rem;
    color: var(--nox-accent);
}

.mobile-menu-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.2);
}

/* Bulgarian Flag Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 20%,
        rgba(0, 213, 99, 0.25) 40%,
        rgba(0, 213, 99, 0.15) 50%,
        rgba(255, 0, 68, 0.25) 70%,
        rgba(255, 0, 68, 0.35) 100%
    );
    mix-blend-mode: overlay;
    z-index: 2;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(5, 8, 22, 0.7) 100%
    );
    z-index: 3;
}

/* Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    overflow: hidden;
}

/* Geometric Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 2px solid;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-color: var(--nox-accent);
    top: 10%;
    right: 10%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: rotate-shape 20s linear infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    border-color: var(--nox-red);
    bottom: 20%;
    left: 5%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: rotate-shape-reverse 15s linear infinite;
}

.shape-3 {
    width: 150px;
    height: 150px;
    border-color: var(--nox-white);
    top: 40%;
    left: 15%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: float-shape 10s ease-in-out infinite;
}

.shape-4 {
    width: 250px;
    height: 250px;
    border-color: var(--nox-green);
    bottom: 10%;
    right: 20%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: pulse-shape 8s ease-in-out infinite;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 4rem 0;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 2rem;
    color: var(--nox-accent);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-badge i {
    font-size: 1.2rem;
    animation: lightning 2s infinite;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    animation: slide-glow 3s infinite;
}

/* Title */
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
}

.title-line {
    display: block;
    font-size: clamp(2rem, 8vw, 4rem);
    color: rgba(255, 255, 255, 0.9);
}

.title-main {
    font-size: clamp(3rem, 12vw, 7rem);
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-white), var(--nox-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(0, 255, 136, 0.5);
    letter-spacing: 0.05em;
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(90deg, var(--nox-accent), var(--nox-red));
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse-glow 3s infinite;
}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--nox-red);
    animation: glitch-anim-1 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--nox-accent);
    animation: glitch-anim-2 2.5s infinite linear alternate-reverse;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    font-weight: 400;
}

/* Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border-radius: 1rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--nox-accent);
    z-index: 2;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
}

.stat-item:hover .stat-icon::before {
    transform: translateX(100%);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--nox-white);
    line-height: 1;
}

.stat-number-nan,
.stat-number-static {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--nox-white);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.cta-primary,
.cta-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    overflow: hidden;
    text-transform: uppercase;
    text-decoration: none;
}

.cta-primary {
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    color: var(--nox-darker);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
    border: 2px solid var(--nox-accent);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(0, 255, 136, 0.6);
}

.cta-primary i {
    font-size: 1.5rem;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: slide-glow-fast 2s infinite;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--nox-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--nox-accent);
    transform: translateY(-5px);
}

.cta-secondary i {
    font-size: 1.3rem;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--nox-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

/* Diagonal Cut */
.hero-cut {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, transparent, var(--nox-darker));
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 8;
}

/* === ANIMATIONS === */

/* Pulse */
@keyframes pulse {
    0%, 100% { transform: rotate(15deg) scale(1.1); }
    50% { transform: rotate(15deg) scale(1.15); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

@keyframes pulse-shape {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

/* Rotate */
@keyframes rotate-shape {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-shape-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Float */
@keyframes float-shape {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Glitch */
@keyframes glitch-anim-1 {
    0% { transform: translate(0); }
    10% { transform: translate(-5px, 5px); }
    20% { transform: translate(5px, -5px); }
    30% { transform: translate(-3px, 3px); }
    40% { transform: translate(3px, -3px); }
    50% { transform: translate(-5px, 3px); }
    60% { transform: translate(5px, -3px); }
    70% { transform: translate(-3px, 5px); }
    80% { transform: translate(3px, -5px); }
    90% { transform: translate(-5px, 0); }
    100% { transform: translate(0); }
}

@keyframes glitch-anim-2 {
    0% { transform: translate(0); }
    10% { transform: translate(5px, -5px); }
    20% { transform: translate(-5px, 5px); }
    30% { transform: translate(3px, -3px); }
    40% { transform: translate(-3px, 3px); }
    50% { transform: translate(5px, -3px); }
    60% { transform: translate(-5px, 3px); }
    70% { transform: translate(3px, 5px); }
    80% { transform: translate(-3px, -5px); }
    90% { transform: translate(5px, 0); }
    100% { transform: translate(0); }
}

/* Lightning */
@keyframes lightning {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Slide Glow */
@keyframes slide-glow {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes slide-glow-fast {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Bounce */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Wheel */
@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

/* === RESPONSIVE DESIGN === */

/* Extra Large Screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 8rem;
    }
}

/* Large Tablets & Desktops */
@media (max-width: 1024px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 150px;
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .shape-3 {
        width: 100px;
        height: 100px;
    }
    
    .shape-4 {
        width: 180px;
        height: 180px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Navigation */
    .nav-blur {
        padding: 0.5rem 0;
    }
    
    /* Hero Section */
    .hero-section {
        padding-top: 100px;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 3rem 0 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        width: 100%;
        padding: 1rem;
        background: rgba(0, 255, 136, 0.05);
        border-radius: 0.75rem;
        border: 1px solid rgba(0, 255, 136, 0.1);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .hero-cut {
        height: 80px;
    }
    
    /* Shapes */
    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4 {
        opacity: 0.05;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    /* Hero Section */
    .hero-section {
        padding-top: 110px;
    }
    
    .hero-content {
        padding: 3.5rem 0 2rem;
    }
    
    /* Typography */
    .title-line {
        font-size: 1.75rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Stats */
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 1.25rem;
    }
    
    .stat-number,
    .stat-number-nan,
    .stat-number-static {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Buttons */
    .cta-primary,
    .cta-secondary {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    /* Hero Badge */
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        max-width: 100%;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .title-line {
        font-size: 1.5rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .hero-badge span {
        display: none;
    }
    
    .hero-badge::after {
        content: 'ELITE CS2';
    }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-shapes {
        display: none;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .glitch::before,
    .glitch::after {
        display: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --nox-darker: #000000;
    }
}

/* Print Styles */
@media print {
    .nav-blur,
    .mobile-menu,
    .hero-shapes,
    .scroll-indicator {
        display: none;
    }
    
    .hero-overlay {
        opacity: 0.3;
    }
}

/* === SERVER STATUS SECTION === */
.server-status-section {
    padding: 6rem 0;
    background: var(--nox-darker);
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.server-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.server-bg-shape {
    position: absolute;
    border: 2px solid;
    opacity: 0.08;
}

.server-shape-1 {
    width: 400px;
    height: 400px;
    border-color: var(--nox-accent);
    top: -100px;
    right: 5%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: rotate-float 20s ease-in-out infinite;
}

.server-shape-2 {
    width: 300px;
    height: 300px;
    border-color: var(--nox-red);
    bottom: -80px;
    left: 10%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: rotate-reverse 25s linear infinite;
}

.server-shape-3 {
    width: 250px;
    height: 250px;
    border-color: var(--nox-white);
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: float-pulse 15s ease-in-out infinite;
}

/* Glowing Orbs */
.server-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: pulse-move 10s ease-in-out infinite;
}

.server-glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--nox-accent), transparent);
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.server-glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--nox-red), transparent);
    bottom: 20%;
    left: 10%;
    animation-delay: 5s;
}

/* Animations */
@keyframes rotate-float {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }
    25% {
        transform: rotate(90deg) translateY(-20px);
    }
    50% {
        transform: rotate(180deg) translateY(0);
    }
    75% {
        transform: rotate(270deg) translateY(20px);
    }
}

@keyframes rotate-reverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes float-pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.08;
    }
    50% {
        transform: translateY(-50%) scale(1.1);
        opacity: 0.12;
    }
}

@keyframes pulse-move {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.2);
    }
}

.container {
    position: relative;
    z-index: 1;
}

.server-status-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-normal);
}

.server-status-wrapper:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 20px 80px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

/* Background */
.server-status-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.server-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.1) saturate(1.2);
}

.server-status-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(5, 8, 22, 0.95) 0%,
        rgba(10, 14, 39, 0.9) 50%,
        rgba(5, 8, 22, 0.95) 100%
    );
    backdrop-filter: blur(2px);
}

/* Content */
.server-status-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
}

/* Header */
.server-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.server-title-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.server-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--nox-accent);
    width: fit-content;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--nox-accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 10px var(--nox-accent);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.server-name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--nox-white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.2;
}

.server-name i {
    color: var(--nox-accent);
    font-size: 0.9em;
}

/* Server IP */
.server-ip-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.server-update-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 0.75rem;
    backdrop-filter: blur(12px);
}

.update-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.update-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 600;
}

.update-value {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--nox-white);
}

.update-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.4), transparent);
}

.server-ip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 0.75rem;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--nox-accent);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.server-ip i {
    font-size: 1.5rem;
}

.btn-copy-ip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    border: none;
    border-radius: 0.75rem;
    color: var(--nox-darker);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: 'Rajdhani', sans-serif;
}

.btn-copy-ip:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

.btn-copy-ip.copied {
    background: linear-gradient(135deg, var(--nox-green), var(--nox-accent));
}

.btn-copy-ip i {
    font-size: 1.2rem;
}

/* Stats Grid */
.server-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.server-stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 1rem;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.server-stat-card:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-3px);
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border-radius: 1rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
    flex-shrink: 0;
}

.stat-card-icon i {
    font-size: 1.75rem;
    color: inherit;
}

.stat-card-content {
    flex: 1;
}

.stat-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.stat-card-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--nox-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card-subtext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Progress Bar */
.stat-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.75rem;
}

.stat-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--nox-accent), var(--nox-green));
    border-radius: 4px;
    transition: width var(--transition-slow);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: progress-glow 2s infinite;
}

@keyframes progress-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.8); }
}

/* Players List Toggle */
.players-list-toggle {
    margin-bottom: 1.5rem;
}

.btn-show-players {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: var(--nox-white);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: 'Rajdhani', sans-serif;
}

.btn-show-players:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--nox-accent);
}

.btn-show-players.active {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--nox-accent);
}

.btn-show-players .arrow-icon {
    transition: transform var(--transition-normal);
}

.btn-show-players.active .arrow-icon {
    transform: rotate(180deg);
}

/* Players List */
.players-list-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    border: 1px solid transparent;
}

.players-list-container.active {
    max-height: 600px;
    border-color: rgba(0, 255, 136, 0.2);
}

.players-list-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--nox-accent);
}

.players-list-body {
    max-height: 480px;
    overflow-y: auto;
    padding: 0.5rem;
}

.players-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.05em;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    border: 1px dashed rgba(0, 255, 136, 0.2);
}

.players-empty i {
    font-size: 1.5rem;
    color: var(--nox-accent);
}

.players-list-body::-webkit-scrollbar {
    width: 8px;
}

.players-list-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.players-list-body::-webkit-scrollbar-thumb {
    background: var(--nox-accent);
    border-radius: 4px;
}

.players-list-body::-webkit-scrollbar-thumb:hover {
    background: var(--nox-green);
}

.player-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.player-row:hover {
    background: rgba(0, 255, 136, 0.05);
    border-left: 3px solid var(--nox-accent);
    padding-left: calc(1rem - 3px);
}

.player-row:last-child {
    border-bottom: none;
}

.player-col-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--nox-white);
    font-weight: 600;
}

.player-rank-badge {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.35));
    border: 1px solid rgba(0, 255, 136, 0.4);
    font-weight: 700;
    font-size: 1rem;
    color: var(--nox-white);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.25);
}

.player-name-text {
    font-weight: 700;
    color: var(--nox-white);
    letter-spacing: 0.03em;
    word-break: break-word;
    max-width: 100%;
}

.player-col-score {
    display: flex;
    align-items: center;
    color: var(--nox-accent);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
}

.player-col-time {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Courier New', monospace;
}

.player-avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    color: var(--nox-darker);
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.player-col-score {
    display: flex;
    align-items: center;
    color: var(--nox-accent);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
}

.player-col-time {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Courier New', monospace;
}

/* === RESPONSIVE - SERVER STATUS === */

/* Tablets */
@media (max-width: 768px) {
    .server-status-section {
        padding: 4rem 0;
    }
    
    .server-bg-shape,
    .server-bg-glow {
        opacity: 0.04;
    }
    
    .server-status-content {
        padding: 2rem 1.5rem;
    }
    
    .server-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .server-ip-group {
        width: 100%;
    }
    
    .server-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .players-list-header,
    .player-row {
        grid-template-columns: 2fr 0.8fr 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .player-rank-badge {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .player-name-text {
        font-size: 0.9rem;
    }
    
    .player-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .server-bg-effects {
        display: none;
    }
    
    .server-status-content {
        padding: 1.5rem 1rem;
    }
    
    .server-name {
        font-size: 1.25rem;
    }
    
    .server-ip {
        font-size: 0.85rem;
        padding: 0.875rem 1rem;
    }
    
    .server-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .server-stat-card {
        padding: 1.25rem;
    }
    
    .stat-card-value {
        font-size: 1.5rem;
    }
    
    .players-list-header {
        font-size: 0.75rem;
        padding: 1rem;
    }
    
    .player-row {
        padding: 0.875rem 0.75rem;
    }
    
    .player-col-name {
        gap: 0.5rem;
    }
    
    .player-rank-badge {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .player-name-text {
        font-size: 0.85rem;
    }
    
    .player-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .player-col-score {
        font-size: 1rem;
    }
    
    .player-col-time {
        font-size: 0.85rem;
    }
    
    .btn-show-players {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }
}

/* === NEWS SECTION === */
.news-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--nox-darker) 0%, #0d1128 50%, var(--nox-dark) 100%);
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.05), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 213, 99, 0.05), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.news-section > .container {
    position: relative;
    z-index: 1;
}

/* News Header */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.news-header-content {
    flex: 1;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 2rem;
    color: var(--nox-accent);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.news-badge i {
    font-size: 1.1rem;
}

.news-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--nox-white), var(--nox-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.news-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: var(--nox-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all var(--transition-normal);
}

.btn-view-all:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--nox-accent);
    transform: translateX(5px);
}

.btn-view-all i {
    transition: transform var(--transition-normal);
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Featured News */
.featured-news {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 4rem;
    transition: all var(--transition-normal);
}

.featured-news:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
    transform: translateY(-5px);
}

.featured-news-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.featured-news:hover .featured-news-image img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(5, 8, 22, 0.6) 0%,
        rgba(0, 255, 136, 0.2) 100%
    );
}

.featured-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--nox-accent);
    color: var(--nox-darker);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border-radius: 0.5rem;
    z-index: 2;
}

.featured-news-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.news-date,
.news-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
}

.news-date i,
.news-author i {
    color: var(--nox-accent);
    font-size: 1rem;
}

.featured-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--nox-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-excerpt {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.featured-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    border: none;
    border-radius: 0.75rem;
    color: var(--nox-darker);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all var(--transition-normal);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
}

.btn-read-more i {
    font-size: 1.3rem;
}

.news-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.news-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 600;
}

.news-stats i {
    color: var(--nox-accent);
    font-size: 1rem;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.news-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
}

.news-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(5, 8, 22, 0.7) 100%
    );
}

.news-card-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 255, 136, 0.9);
    color: var(--nox-darker);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    border-radius: 0.375rem;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.news-card-content {
    padding: 1.75rem;
}

.news-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nox-white);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-card-excerpt {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--nox-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.news-card-link:hover {
    gap: 0.75rem;
    color: var(--nox-green);
}

.news-card-link i {
    transition: transform var(--transition-fast);
}

.news-card-link:hover i {
    transform: translateX(3px);
}

/* === RESPONSIVE - NEWS SECTION === */

/* Tablets */
@media (max-width: 768px) {
    .news-section {
        padding: 5rem 0;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-view-all {
        width: 100%;
        justify-content: center;
    }
    
    .featured-news {
        grid-template-columns: 1fr;
    }
    
    .featured-news-image {
        min-height: 280px;
    }
    
    .featured-news-content {
        padding: 2rem 1.5rem;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .news-section {
        padding: 4rem 0;
    }
    
    .news-header {
        margin-bottom: 2.5rem;
    }
    
    .news-title {
        font-size: 2rem;
    }
    
    .featured-news-image {
        min-height: 240px;
    }
    
    .featured-news-content {
        padding: 1.5rem 1.25rem;
    }
    
    .featured-title {
        font-size: 1.375rem;
    }
    
    .featured-excerpt {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-read-more {
        width: 100%;
        justify-content: center;
    }
    
    .news-stats {
        justify-content: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .news-card-image {
        height: 200px;
    }
    
    .news-card-content {
        padding: 1.5rem 1.25rem;
    }
    
    .news-card-title {
        font-size: 1.125rem;
    }
}

/* === PARTNER SECTION === */
.partner-section {
    padding: 6rem 0;
    background: var(--nox-darker);
    position: relative;
    overflow: hidden;
}

.partner-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 68, 0, 0.05), rgba(0, 255, 136, 0.05));
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--nox-red), var(--nox-accent)) 1;
    border-radius: 2rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.partner-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(255, 68, 0, 0.2), 0 25px 70px rgba(0, 255, 136, 0.2);
}

.partner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 68, 0, 0.15), transparent 70%);
    filter: blur(60px);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    z-index: 1;
}

/* Image Side */
.partner-image-side {
    position: relative;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    min-height: 400px;
}

.partner-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-image {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 500px;
    display: block;
    border-radius: 1rem;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.partner-wrapper:hover .partner-image {
    transform: scale(1.05) rotate(-2deg);
}

.partner-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 70%
    );
    animation: shine-sweep 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shine-sweep {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

/* Text Side */
.partner-text-side {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--nox-red), rgba(255, 68, 0, 0.8));
    border-radius: 2rem;
    color: var(--nox-white);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    width: fit-content;
    box-shadow: 0 0 20px rgba(255, 68, 0, 0.4);
}

.partner-badge i {
    font-size: 1rem;
}

.partner-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--nox-white);
    line-height: 1.2;
}

.partner-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

.partner-description strong {
    color: var(--nox-accent);
    font-weight: 700;
    padding: 0 0.25rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 0.25rem;
}

/* Promo Section */
.partner-promo-section {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-code-box {
    flex: 1;
    min-width: 200px;
}

.promo-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.promo-code-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--nox-accent);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

.promo-code-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--nox-accent);
    letter-spacing: 0.15em;
    flex: 1;
}

.btn-copy-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--nox-accent);
    border: none;
    border-radius: 0.5rem;
    color: var(--nox-darker);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-copy-promo:hover {
    background: var(--nox-green);
    transform: scale(1.1);
}

.btn-copy-promo.copied {
    background: var(--nox-green);
}

.btn-copy-promo i {
    font-size: 1.25rem;
}

.btn-partner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--nox-red), #ff2244);
    border: none;
    border-radius: 0.75rem;
    color: var(--nox-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(255, 68, 0, 0.4);
    white-space: nowrap;
}

.btn-partner-cta:hover {
    background: linear-gradient(135deg, #ff2244, var(--nox-red));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 68, 0, 0.6);
}

.btn-partner-cta i {
    font-size: 1.2rem;
}

/* Features */
.partner-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.partner-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.partner-feature i {
    color: var(--nox-accent);
    font-size: 1.25rem;
}

/* === RESPONSIVE - PARTNER === */

/* Tablets */
@media (max-width: 768px) {
    .partner-section {
        padding: 4rem 0;
    }
    
    .partner-content {
        grid-template-columns: 1fr;
    }
    
    .partner-image-side {
        padding: 2rem;
        order: 2;
    }
    
    .partner-text-side {
        padding: 2rem;
        order: 1;
    }
    
    .partner-promo-section {
        flex-direction: column;
    }
    
    .btn-partner-cta {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .partner-section {
        padding: 3rem 0;
    }
    
    .partner-wrapper {
        border-radius: 1.5rem;
    }
    
    .partner-image-side,
    .partner-text-side {
        padding: 1.5rem;
    }
    
    .partner-title {
        font-size: 1.5rem;
    }
    
    .partner-description {
        font-size: 0.95rem;
    }
    
    .promo-code-display {
        padding: 0.875rem 1.25rem;
    }
    
    .promo-code-text {
        font-size: 1.5rem;
    }
    
    .btn-copy-promo {
        width: 40px;
        height: 40px;
    }
    
    .btn-partner-cta {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* === FOOTER === */
.footer {
    position: relative;
    background: linear-gradient(180deg, var(--nox-dark) 0%, #0a0f24 50%, var(--nox-darker) 100%);
    padding: 4rem 0 0;
    overflow: hidden;
}

.footer-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 255, 136, 0.03) 50%,
        transparent 100%
    );
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.footer-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--nox-accent), transparent);
    top: 20%;
    left: 10%;
    animation: pulse-slow 8s ease-in-out infinite;
}

.footer-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--nox-green), transparent);
    bottom: 10%;
    right: 15%;
    animation: pulse-slow 10s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.08;
        transform: scale(1);
    }
    50% {
        opacity: 0.15;
        transform: scale(1.1);
    }
}

.footer > .container {
    position: relative;
    z-index: 1;
}

/* Footer Main */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 136, 0.3) 20%,
        rgba(0, 255, 136, 0.3) 80%,
        transparent 100%
    ) 1;
}

/* Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    border-radius: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--nox-darker);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--nox-white), var(--nox-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--nox-accent);
    border-color: var(--nox-accent);
    color: var(--nox-darker);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--nox-white);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--nox-accent), transparent);
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-list li a i {
    font-size: 0.7rem;
    color: var(--nox-accent);
    transition: transform var(--transition-fast);
}

.footer-list li a:hover {
    color: var(--nox-accent);
    padding-left: 0.5rem;
}

.footer-list li a:hover i {
    transform: translateX(3px);
}

/* Server Info */
.footer-server {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-server-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all var(--transition-fast);
}

.footer-info-item:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.3);
}

.footer-info-item > i {
    font-size: 1.25rem;
    color: var(--nox-accent);
    margin-top: 0.125rem;
}

.footer-info-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.info-value {
    color: var(--nox-white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-copyright .highlight {
    color: var(--nox-accent);
    font-weight: 700;
}

.footer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.credit-link {
    color: var(--nox-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
}

.credit-link:hover {
    color: var(--nox-green);
    text-decoration: underline;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.payment-icons i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all var(--transition-fast);
}

.payment-icons i:hover {
    color: var(--nox-accent);
    transform: translateY(-2px);
}

/* === RESPONSIVE - FOOTER === */

/* Tablets */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 3;
    }
    
    .footer-server {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding-bottom: 2rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-server {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .footer-copyright {
        align-items: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand,
    .footer-links,
    .footer-server {
        grid-column: span 1;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-list {
        align-items: center;
    }
    
    .footer-list li a:hover {
        padding-left: 0;
    }
    
    .footer-server-info {
        gap: 0.75rem;
    }
    
    .footer-info-item {
        padding: 0.875rem;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .footer-copyright {
        align-items: center;
    }
    
    .footer-credit {
        font-size: 0.8rem;
    }
}

/* === STORE PAGE === */

/* Store Hero */
.store-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, var(--nox-darker) 0%, var(--nox-dark) 100%);
    overflow: hidden;
}

.store-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1), transparent 70%);
    pointer-events: none;
}

.store-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    border-radius: 2rem;
    color: var(--nox-darker);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.store-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--nox-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.store-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Store Section */
.store-section {
    padding: 4rem 0 6rem;
    background: 
        linear-gradient(180deg, rgba(5, 8, 22, 0.95) 0%, rgba(15, 20, 32, 0.92) 50%, rgba(5, 8, 22, 0.95) 100%),
        url('../img/contentbg.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 68, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    animation: gradient-shift 15s ease infinite;
    pointer-events: none;
}

@keyframes gradient-shift {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) rotate(5deg);
    }
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Store Card */
.store-card {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 15, 35, 0.8), rgba(15, 20, 45, 0.8));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.store-card:hover {
    transform: translateY(-10px);
    border-color: var(--nox-accent);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.store-card-featured {
    border-color: var(--nox-accent);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(15, 20, 45, 0.9));
}

.store-card-featured:hover {
    box-shadow: 0 25px 70px rgba(0, 255, 136, 0.4);
}

.store-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--nox-red), #ff2244);
    border-radius: 2rem;
    color: var(--nox-white);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(255, 68, 0, 0.4);
}

.store-badge-featured {
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    color: var(--nox-darker);
}

.store-badge-premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--nox-darker);
}

.store-badge-service {
    background: linear-gradient(135deg, #9333ea, #c026d3);
    color: var(--nox-white);
}

.store-card-image {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.store-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-normal);
}

.store-card:hover .store-card-image img {
    transform: scale(1.1) rotate(-5deg);
}

.store-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3), transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.store-card:hover .store-card-glow {
    opacity: 1;
}

.store-glow-emerald {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4), transparent 70%);
}

.store-glow-admin {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent 70%);
}

.store-glow-unban {
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3), transparent 70%);
}

.store-card-content {
    padding: 2rem;
}

.store-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--nox-white);
    margin-bottom: 1rem;
    text-align: center;
}

.store-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nox-accent);
}

.price-duration {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.store-card-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--nox-accent), transparent);
    margin-bottom: 1.5rem;
}

.store-card-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--nox-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.store-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.store-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.store-card-features li i {
    color: var(--nox-accent);
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.store-features-admin li i {
    color: #FFD700;
}

.store-features-admin li strong {
    color: var(--nox-white);
}

.store-card-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    border: none;
    border-radius: 0.75rem;
    color: var(--nox-darker);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.store-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.5);
}

.store-btn-featured {
    background: linear-gradient(135deg, var(--nox-green), #10b981);
}

/* Payment Info */
.store-payment-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.payment-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    border-radius: 50%;
    flex-shrink: 0;
}

.payment-info-icon i {
    font-size: 1.75rem;
    color: var(--nox-darker);
}

.payment-info-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nox-white);
    margin-bottom: 0.25rem;
}

.payment-info-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* === ACTIVE SERVICES SECTION (BRUTAL DESIGN) === */

.store-active-services-wrapper {
    margin-bottom: 3rem;
    position: relative;
}

.store-active-services-container {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.08) 0%,
        rgba(0, 213, 99, 0.05) 50%,
        rgba(56, 189, 248, 0.08) 100%);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 60px rgba(0, 255, 136, 0.15),
        inset 0 1px 0 rgba(0, 255, 136, 0.2);
    animation: services-glow-pulse 4s ease-in-out infinite;
}

@keyframes services-glow-pulse {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(0, 255, 136, 0.15),
            inset 0 1px 0 rgba(0, 255, 136, 0.2);
    }
    50% {
        box-shadow: 
            0 25px 80px rgba(0, 255, 136, 0.25),
            inset 0 1px 0 rgba(0, 255, 136, 0.3);
    }
}

.store-active-services-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--nox-accent) 50%,
        transparent 100%);
    opacity: 0.6;
}

.store-active-services-container::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.1), transparent 70%);
    pointer-events: none;
}

.store-active-services-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.store-active-services-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    border-radius: 1rem;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.store-active-services-icon i {
    font-size: 2rem;
    color: var(--nox-darker);
}

.store-active-services-title-block {
    flex: 1;
}

.store-active-services-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--nox-white);
    margin: 0 0 0.25rem 0;
    letter-spacing: 0.05em;
}

.store-active-services-subtitle {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.95);
    margin: 0;
}

.store-active-services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.store-active-service-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.store-active-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%);
}

.store-active-service-vip {
    border-color: rgba(56, 189, 248, 0.3);
    background: linear-gradient(135deg, 
        rgba(56, 189, 248, 0.05) 0%,
        rgba(255, 255, 255, 0.01) 100%);
}

.store-active-service-vip:hover {
    border-color: rgba(56, 189, 248, 0.6);
    background: linear-gradient(135deg, 
        rgba(56, 189, 248, 0.1) 0%,
        rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
    transform: translateY(-3px);
}

.store-active-service-admin {
    border-color: rgba(248, 113, 113, 0.3);
    background: linear-gradient(135deg, 
        rgba(248, 113, 113, 0.05) 0%,
        rgba(255, 255, 255, 0.01) 100%);
}

.store-active-service-admin:hover {
    border-color: rgba(248, 113, 113, 0.6);
    background: linear-gradient(135deg, 
        rgba(248, 113, 113, 0.1) 0%,
        rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(248, 113, 113, 0.2);
    transform: translateY(-3px);
}

.store-active-service-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 0.75rem;
    flex-shrink: 0;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.store-active-service-badge-vip {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: var(--nox-darker);
}

.store-active-service-item.store-active-service-vip:hover .store-active-service-badge-vip {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(56, 189, 248, 0.5);
}

.store-active-service-badge-admin {
    background: linear-gradient(135deg, #f87171, #ef4444);
    color: var(--nox-white);
}

.store-active-service-item.store-active-service-admin:hover .store-active-service-badge-admin {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(248, 113, 113, 0.5);
}

.store-active-service-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.store-active-service-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--nox-white);
    letter-spacing: 0.05em;
}

.store-active-service-date {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.85);
    font-weight: 600;
}

.store-active-service-server {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.8);
    font-style: italic;
}

.store-active-service-days {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.1) 0%,
        rgba(0, 213, 99, 0.05) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 0.75rem;
    min-width: 80px;
    text-align: center;
}

.store-active-service-days-label {
    font-size: 0.7rem;
    color: rgba(148, 163, 184, 0.8);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.store-active-service-days-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--nox-accent);
    line-height: 1;
}

/* === RESPONSIVE - ACTIVE SERVICES === */

@media (max-width: 1024px) {
    .store-active-services-container {
        padding: 2rem;
    }

    .store-active-services-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .store-active-services-icon {
        width: 60px;
        height: 60px;
    }

    .store-active-services-icon i {
        font-size: 1.75rem;
    }

    .store-active-services-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .store-active-services-wrapper {
        margin-bottom: 2rem;
    }

    .store-active-services-container {
        padding: 1.5rem;
    }

    .store-active-services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .store-active-services-icon {
        width: 50px;
        height: 50px;
    }

    .store-active-services-icon i {
        font-size: 1.5rem;
    }

    .store-active-services-title {
        font-size: 1.1rem;
    }

    .store-active-services-subtitle {
        font-size: 0.85rem;
    }

    .store-active-service-item {
        grid-template-columns: auto 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }

    .store-active-service-days {
        grid-column: 1 / -1;
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .store-active-service-days-label {
        order: 2;
    }

    .store-active-service-days-value {
        order: 1;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .store-active-services-container {
        padding: 1rem;
        border-radius: 1rem;
    }

    .store-active-services-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .store-active-services-icon {
        width: 45px;
        height: 45px;
    }

    .store-active-services-icon i {
        font-size: 1.25rem;
    }

    .store-active-services-title {
        font-size: 1rem;
    }

    .store-active-services-subtitle {
        font-size: 0.8rem;
    }

    .store-active-service-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    .store-active-service-badge {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .store-active-service-name {
        font-size: 1rem;
    }

    .store-active-service-date {
        font-size: 0.85rem;
    }

    .store-active-service-server {
        font-size: 0.75rem;
    }

    .store-active-service-days {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        padding: 0.75rem;
        margin-top: 0.5rem;
    }

    .store-active-service-days-value {
        font-size: 1.1rem;
    }
}

/* === RESPONSIVE - STORE === */

@media (max-width: 768px) {
    .store-hero {
        padding: 8rem 0 4rem;
    }
    
    .store-section {
        padding: 3rem 0 4rem;
    }
    
    .store-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .store-payment-info {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .store-hero {
        padding: 7rem 0 3rem;
    }
    
    .store-card-content {
        padding: 1.5rem;
    }
    
    .store-card-image {
        height: 200px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

/* === TRANSACTIONS PAGE === */

/* Keyframe Animations */
@keyframes tx-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes tx-glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes tx-shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes tx-card-enter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tx-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
}

/* Hero Section */
.transactions-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background: linear-gradient(180deg, var(--nox-darker) 0%, #0a0e27 50%, #050816 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.transactions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
}

.transactions-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.12), transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.08), transparent 60%);
    pointer-events: none;
    animation: tx-glow-pulse 4s ease-in-out infinite;
}

.transactions-hero-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
}

.transactions-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.65rem 1.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(56, 189, 248, 0.15));
    border: 1.5px solid rgba(0, 255, 136, 0.4);
    color: rgba(0, 255, 136, 0.95);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    animation: tx-badge-pulse 2s ease-in-out infinite;
}

.transactions-badge i {
    font-size: 1.1rem;
}

.transactions-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--nox-white);
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--nox-white) 0%, rgba(226, 232, 240, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.transactions-subtitle {
    font-size: 1rem;
    max-width: 600px;
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.6;
}

.transactions-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, rgba(5, 8, 22, 1) 0%, rgba(3, 7, 18, 1) 100%);
    position: relative;
    overflow: hidden;
}

.transactions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(0, 255, 136, 0.05), transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(56, 189, 248, 0.05), transparent 40%);
    pointer-events: none;
}

.transactions-grid {
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 1.8fr);
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.transactions-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.transactions-stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem;
    border-radius: 1.3rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(20, 30, 48, 0.85));
    border: 1.5px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    animation: tx-card-enter 600ms ease-out backwards;
}

.transactions-stat-card:nth-child(1) { animation-delay: 100ms; }
.transactions-stat-card:nth-child(2) { animation-delay: 200ms; }
.transactions-stat-card:nth-child(3) { animation-delay: 300ms; }

.transactions-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
}

.transactions-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 30px 70px rgba(0, 255, 136, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.transactions-stat-card:hover::before {
    opacity: 1;
}

.transactions-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.transactions-stat-icon-primary {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
    color: #60a5fa;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.transactions-stat-icon-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.1));
    color: #4ade80;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.transactions-stat-icon-accent {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.3), rgba(234, 179, 8, 0.1));
    color: #facc15;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}

.transactions-stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
    z-index: 2;
}

.transactions-stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.85);
    font-weight: 600;
}

.transactions-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--nox-white);
    line-height: 1;
}

.transactions-list-wrapper {
    position: relative;
    padding: 2rem 2rem 2.2rem;
    border-radius: 1.6rem;
    border: 1.5px solid rgba(0, 255, 136, 0.2);
    background:
        radial-gradient(circle at top left, rgba(0, 255, 136, 0.08), transparent 50%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.08), transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(20, 30, 48, 0.95));
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.transactions-list-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
}

.transactions-list-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.transactions-list-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--nox-white);
}

.transactions-list-subtitle {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.9);
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transaction-card {
    position: relative;
    border-radius: 1.2rem;
    padding: 1.5rem 1.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(20, 30, 48, 0.92));
    border: 1.5px solid rgba(30, 64, 175, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    animation: tx-card-enter 600ms ease-out backwards;
}

.transaction-card:nth-child(1) { animation-delay: 100ms; }
.transaction-card:nth-child(2) { animation-delay: 150ms; }
.transaction-card:nth-child(3) { animation-delay: 200ms; }
.transaction-card:nth-child(4) { animation-delay: 250ms; }
.transaction-card:nth-child(5) { animation-delay: 300ms; }

.transaction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), transparent);
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
}

.transaction-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.transaction-card:hover::before {
    opacity: 1;
}

.transaction-card-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.transaction-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.transaction-product {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.transaction-product-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: rgba(148, 163, 184, 0.9);
}

.transaction-product-type-vip {
    border-color: rgba(56, 189, 248, 0.7);
    color: #7dd3fc;
    background: rgba(15, 23, 42, 0.9);
}

.transaction-product-type-admin {
    border-color: rgba(250, 204, 21, 0.8);
    color: #facc15;
    background: rgba(15, 23, 42, 0.9);
}

.transaction-product-type-unban {
    border-color: rgba(244, 114, 182, 0.8);
    color: #f9a8d4;
    background: rgba(15, 23, 42, 0.9);
}

.transaction-product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--nox-white);
}

.transaction-status {
    flex-shrink: 0;
}

.transaction-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tx-status-success {
    background: rgba(16, 185, 129, 0.2);
    color: #4ade80;
    border: 1.5px solid rgba(16, 185, 129, 0.6);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.tx-status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1.5px solid rgba(245, 158, 11, 0.6);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.tx-status-failed {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
    border: 1.5px solid rgba(248, 113, 113, 0.6);
    box-shadow: 0 0 15px rgba(248, 113, 113, 0.15);
}

.tx-status-neutral {
    background: rgba(51, 65, 85, 0.5);
    color: rgba(226, 232, 240, 0.95);
    border: 1.5px solid rgba(148, 163, 184, 0.5);
}

.transaction-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.transaction-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
}

.transaction-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.transaction-meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.9);
}

.transaction-meta-value {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.96);
}

.tx-effect-applied {
    color: #6ee7b7;
}

.tx-effect-pending {
    color: rgba(248, 250, 252, 0.8);
}

.transaction-target {
    margin-top: 0.25rem;
}

.transaction-target-value {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.92);
}

.transaction-target-steam {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.9);
    margin-left: 0.25rem;
}

.transaction-paypal {
    margin-top: 0.25rem;
}

.transaction-paypal-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.95);
}

.transaction-card-footer {
    margin-top: 0.7rem;
    display: flex;
    justify-content: flex-end;
    font-size: 0.7rem;
    color: rgba(148, 163, 184, 0.8);
}

.transaction-id {
    font-family: 'Rajdhani', sans-serif;
}

.transactions-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.75rem 1.75rem;
    border-radius: 1.4rem;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(3, 7, 18, 1));
    border: 1px dashed rgba(148, 163, 184, 0.5);
}

.transactions-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: radial-gradient(circle at top, rgba(148, 163, 184, 0.35), rgba(15, 23, 42, 1));
    color: rgba(15, 23, 42, 1);
}

.transactions-empty-icon i {
    font-size: 2rem;
}

.transactions-empty h3 {
    font-size: 1.1rem;
    color: var(--nox-white);
    margin-bottom: 0.5rem;
}

.transactions-empty p {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 1.25rem;
}

.transactions-empty-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    color: var(--nox-darker);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.transactions-empty-cta i {
    font-size: 1rem;
}

.transactions-empty-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 255, 136, 0.6);
}

/* Responsive - Transactions */

@media (max-width: 1024px) {
    .transactions-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .transactions-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .transactions-hero {
        padding: 7rem 0 3rem;
    }

    .transactions-grid {
        gap: 1.75rem;
    }

    .transactions-stats {
        grid-template-columns: 1fr;
    }

    .transactions-list-wrapper {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .transaction-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .transactions-hero {
        padding: 6.5rem 0 2.75rem;
    }

    .transactions-hero-content {
        text-align: left;
    }

    .transaction-card {
        padding: 1rem 1rem 0.85rem;
    }

    .transactions-list-wrapper {
        padding: 1.1rem 1.1rem 1.4rem;
    }
}

/* === BANS PAGE === */

/* Bans Hero */
.bans-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, var(--nox-darker) 0%, #0a0a15 100%);
    overflow: hidden;
}

.bans-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 68, 0, 0.1), transparent 70%);
    pointer-events: none;
}

.bans-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bans-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--nox-red), #ff2244);
    border-radius: 2rem;
    color: var(--nox-white);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.bans-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--nox-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bans-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Bans Stats Section */
.bans-stats-section {
    padding: 4rem 0;
    background: 
        linear-gradient(180deg, rgba(5, 8, 22, 0.95) 0%, rgba(15, 20, 32, 0.9) 100%),
        url('../img/contentbg.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.bans-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(239, 68, 68, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(250, 204, 21, 0.08) 0%, transparent 40%);
    animation: gradient-shift 12s ease infinite;
    pointer-events: none;
}

.bans-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.bans-stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 15, 35, 0.8), rgba(15, 20, 45, 0.8));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.bans-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--nox-accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    font-size: 1.75rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.stat-icon-ban {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: #0a0a15 !important;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.4);
}

.stat-icon-ban i {
    color: #0a0a15 !important;
}

.stat-icon-mute {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #0a0a15 !important;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

.stat-icon-mute i {
    color: #0a0a15 !important;
}

.stat-icon-gag {
    background: linear-gradient(135deg, #facc15, #fde047);
    color: #0a0a15 !important;
    box-shadow: 0 5px 20px rgba(250, 204, 21, 0.4);
}

.stat-icon-gag i {
    color: #0a0a15 !important;
}

.stat-icon-kick {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #0a0a15 !important;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.stat-icon-kick i {
    color: #0a0a15 !important;
}

.stat-icon-warning {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #0a0a15 !important;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

.stat-icon-warning i {
    color: #0a0a15 !important;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--nox-white);
}

.stat-glow {
    position: absolute;
    top: 50%;
    right: -20%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.2;
    pointer-events: none;
}

.stat-glow-red {
    background: radial-gradient(circle, var(--nox-red), transparent);
}

.stat-glow-orange {
    background: radial-gradient(circle, #f97316, transparent);
}

.stat-glow-yellow {
    background: radial-gradient(circle, #eab308, transparent);
}

.stat-glow-blue {
    background: radial-gradient(circle, #3b82f6, transparent);
}

.stat-glow-green {
    background: radial-gradient(circle, var(--nox-accent), transparent);
}

/* Bans Table Section */
.bans-table-section {
    padding: 2rem 0 6rem;
    background: 
        linear-gradient(180deg, rgba(15, 20, 32, 0.9) 0%, rgba(5, 8, 22, 0.95) 100%),
        url('../img/contentbg.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.bans-table-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(249, 115, 22, 0.08) 0%, transparent 40%);
    animation: gradient-shift 18s ease infinite;
    pointer-events: none;
}

.bans-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.table-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--nox-white);
}

.table-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--nox-accent);
    color: var(--nox-white);
}

.filter-btn.active {
    background: var(--nox-accent);
    border-color: var(--nox-accent);
    color: var(--nox-darker);
}

.filter-btn i {
    font-size: 1rem;
}

/* Table Wrapper */
.bans-table-wrapper {
    background: linear-gradient(135deg, rgba(10, 15, 35, 0.6), rgba(15, 20, 45, 0.6));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
}

.bans-table {
    width: 100%;
    border-collapse: collapse;
}

.bans-table thead {
    background: rgba(0, 0, 0, 0.3);
}

.bans-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--nox-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.bans-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.bans-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.05);
}

.bans-table td {
    padding: 1.25rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Player Info */
/* Bans Table - Player Info */
.bans-player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bans-player-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.bans-player-avatar i {
    font-size: 1.5rem;
    color: var(--nox-accent);
}

.table-row:hover .bans-player-avatar {
    border-color: var(--nox-accent);
    background: rgba(0, 255, 136, 0.1);
    transform: scale(1.05);
}

.bans-player-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.bans-player-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--nox-white);
    white-space: nowrap;
}

.bans-player-steam {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

/* Punishment Badge */
.punishment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.badge-ban {
    background: linear-gradient(135deg, var(--nox-red), #ff2244);
    color: var(--nox-white);
}

.badge-mute {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: var(--nox-white);
}

.badge-gag {
    background: linear-gradient(135deg, #eab308, #fbbf24);
    color: var(--nox-darker);
}

.badge-kick {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: var(--nox-white);
}

.badge-warn {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: var(--nox-white);
}

.badge-silence {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: var(--nox-white);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.75rem;
    white-space: nowrap;
}

.status-badge i {
    font-size: 0.5rem;
    animation: pulse 2s infinite;
}

.status-active {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-expired {
    background: rgba(107, 114, 128, 0.2);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.status-removed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-warning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.reason-cell {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-cell {
    font-weight: 600;
    color: var(--nox-accent);
}

/* ========================================
   PROFILE PROGRESS BAR
   ======================================== */
.level-progress-container {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(15, 20, 45, 0.8), rgba(20, 25, 55, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.level-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.current-level {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.level-badge {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.level-points {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.next-level {
    text-align: right;
}

.next-level-text {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.points-needed {
    display: block;
    color: var(--nox-accent);
    font-weight: 600;
    font-size: 0.85rem;
}

.progress-bar-container {
    position: relative;
    margin-bottom: 0.5rem;
    width: 100%;
}

.progress-bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 6px;
    position: relative;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 2;
    width: 100%;
    text-align: center;
}

@keyframes shimmer {
    0% { 
        left: -100%;
    }
    100% { 
        left: 100%;
    }
}

/* Progress info styling */
.progress-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.stat-item i {
    color: var(--nox-accent);
    font-size: 1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .level-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .next-level {
        text-align: left;
    }
    
    .level-progress-container {
        padding: 1rem;
    }
}

.duration-cell {
    font-weight: 600;
    white-space: nowrap;
}

.date-cell {
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

/* Pagination */
.bans-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--nox-accent);
    color: var(--nox-white);
}

.pagination-btn.active {
    background: var(--nox-accent);
    border-color: var(--nox-accent);
    color: var(--nox-darker);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* === RESPONSIVE - BANS === */

@media (max-width: 1024px) {
    .bans-table-wrapper {
        overflow-x: scroll;
    }
    
    .bans-table {
        min-width: 900px;
    }
}

@media (max-width: 768px) {
    .bans-hero {
        padding: 8rem 0 4rem;
    }
    
    .bans-stats-section {
        padding: 3rem 0;
    }
    
    .bans-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bans-table-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .table-filters {
        width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .bans-hero {
        padding: 7rem 0 3rem;
    }
    
    .bans-stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .table-title {
        font-size: 1.5rem;
    }
}

/* === LEADERBOARD PAGE === */

/* Leaderboard Hero */
.leaderboard-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, var(--nox-darker) 0%, #0a0a15 100%);
    overflow: hidden;
}

.leaderboard-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1), transparent 70%);
    pointer-events: none;
}

.leaderboard-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.leaderboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 2rem;
    color: var(--nox-darker);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
}

.leaderboard-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--nox-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.leaderboard-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Top Players Section */
.top-players-section {
    padding: 4rem 0 6rem;
    background: 
        linear-gradient(180deg, rgba(10, 10, 21, 0.95) 0%, rgba(5, 8, 22, 0.95) 100%),
        url('../img/contentbg.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.top-players-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(0, 255, 136, 0.06) 0%, transparent 40%);
    animation: gradient-shift 20s ease infinite;
    pointer-events: none;
}

/* Podium */
.podium-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: end;
}

.podium-player {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.podium-first {
    order: 2;
}

.podium-second {
    order: 1;
}

.podium-third {
    order: 3;
}

/* Podium Rank */
.podium-rank {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    border-radius: 50%;
    margin-bottom: -40px;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.4);
}

.podium-rank-first {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
    margin-bottom: -50px;
    animation: pulse-gold 3s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 60px rgba(255, 215, 0, 0.8);
    }
}

.rank-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--nox-darker);
    position: relative;
    z-index: 2;
}

.podium-rank-first .rank-number {
    font-size: 2.5rem;
}

.podium-rank i {
    position: absolute;
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.1);
    animation: rotate 20s linear infinite;
}

.crown-icon {
    position: absolute;
    top: -25px;
    font-size: 2rem;
    color: #FFD700;
    animation: float 3s ease-in-out infinite;
}

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

/* Player Card */
.player-card {
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 45, 0.9), rgba(10, 15, 35, 0.9));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem 2rem 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #c0c0c0, transparent);
}

.player-card-first::before {
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    height: 6px;
}

.player-card:hover {
    transform: translateY(-10px);
    border-color: var(--nox-accent);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.player-card-first:hover {
    box-shadow: 0 25px 70px rgba(255, 215, 0, 0.4);
}

/* Player Avatar */
.player-avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.player-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 2s ease-in-out infinite;
}

.avatar-glow-gold {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.5), transparent 70%);
}

.rank-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #cd7f32, #b87333);
    border-radius: 50%;
    border: 3px solid var(--nox-darker);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--nox-white);
    z-index: 3;
}

.rank-badge-1 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    width: 50px;
    height: 50px;
    font-size: 1rem;
}

.rank-badge-2 {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: var(--nox-darker);
}

.rank-badge-3 {
    background: linear-gradient(135deg, #cd7f32, #b87333);
}

/* Player Info */
.player-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.player-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--nox-white);
    margin-bottom: 0.5rem;
}

/* Player Stats */
.player-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-item > i {
    font-size: 1.5rem;
    color: var(--nox-accent);
}

.stat-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--nox-white);
}

/* Player Details Grid */
.player-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.detail-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 0.75rem;
    transition: all var(--transition-fast);
}

.detail-box:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
}

.detail-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--nox-accent);
}

/* === RESPONSIVE - LEADERBOARD === */

@media (max-width: 1024px) {
    .podium-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .podium-first {
        order: 1;
    }
    
    .podium-second {
        order: 2;
    }
    
    .podium-third {
        order: 3;
    }
}

@media (max-width: 768px) {
    .leaderboard-hero {
        padding: 8rem 0 4rem;
    }
    
    .top-players-section {
        padding: 3rem 0 4rem;
    }
}

@media (max-width: 480px) {
    .player-details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-value {
        font-size: 1.125rem;
    }
}

/* Leaderboard Table Section */
.leaderboard-table-section {
    padding: 4rem 0 6rem;
    background: 
        linear-gradient(180deg, rgba(5, 8, 22, 0.95) 0%, rgba(10, 10, 21, 0.95) 100%),
        url('../img/contentbg.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.leaderboard-table-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 30%, rgba(255, 215, 0, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 70%, rgba(147, 51, 234, 0.05) 0%, transparent 40%);
    animation: gradient-shift 25s ease infinite;
    pointer-events: none;
}

.leaderboard-table-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.leaderboard-table-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--nox-white);
    text-align: center;
}

.leaderboard-table-wrapper {
    background: linear-gradient(135deg, rgba(10, 15, 35, 0.6), rgba(15, 20, 45, 0.6));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow-x: auto;
    position: relative;
    z-index: 1;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table thead {
    background: rgba(0, 0, 0, 0.3);
}

.leaderboard-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--nox-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.leaderboard-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.leaderboard-row:hover {
    background: rgba(0, 255, 136, 0.05);
}

.leaderboard-table td {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.rank-cell {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--nox-accent);
    text-align: center;
    width: 60px;
}

/* Player Cell */
.player-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.player-mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 136, 0.3);
    object-fit: cover;
}

.player-mini-name {
    font-weight: 700;
    color: var(--nox-white);
    white-space: nowrap;
}

/* Points Display */
.points-display {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 45px;
    padding: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.points-stripes {
    display: none;
}

.points-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Points Colors with Images */
.points-gray {
    background-image: url('../img/premier_points/gray.png');
    color: #9ca3af;
}

.points-lightblue {
    background-image: url('../img/premier_points/lightblue.png');
    color: #60a5fa;
}

.points-blue {
    background-image: url('../img/premier_points/blue.png');
    color: #3b82f6;
}

.points-purple {
    background-image: url('../img/premier_points/purple.png');
    color: #a78bfa;
}

.points-pink {
    background-image: url('../img/premier_points/pink.png');
    color: #f472b6;
}

.points-red {
    background-image: url('../img/premier_points/red.png');
    color: #ef4444;
}

.points-gold {
    background-image: url('../img/premier_points/yellow.png');
    color: #fbbf24;
}

/* Faceit Mini */
.faceit-mini {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faceit-mini img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Table Cells */
.stat-cell {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.kd-cell {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    color: var(--nox-accent);
    font-size: 1.125rem;
}

.time-cell {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Leaderboard Pagination */
.leaderboard-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* === RESPONSIVE - LEADERBOARD TABLE === */

@media (max-width: 1024px) {
    .leaderboard-table-wrapper {
        overflow-x: scroll;
    }
    
    .leaderboard-table {
        min-width: 900px;
    }
}

@media (max-width: 768px) {
    .leaderboard-table-section {
        padding: 3rem 0 4rem;
    }
    
    .leaderboard-table-title {
        font-size: 1.5rem;
    }
}

/* === PROFILE PAGE === */

/* Profile Hero */
.profile-hero {
    position: relative;
    padding: 10rem 0 4rem;
    background: 
        linear-gradient(180deg, rgba(5, 8, 22, 0.95) 0%, rgba(10, 10, 21, 0.95) 100%),
        url('../img/contentbg.jpg') center/cover no-repeat fixed;
    overflow: hidden;
}

.profile-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(0, 255, 136, 0.08), transparent 60%);
    pointer-events: none;
}

/* Profile Header */
.profile-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 20, 45, 0.8), rgba(10, 15, 35, 0.8));
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--nox-accent), transparent);
}

.profile-header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Profile Avatar Section */
.profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.profile-avatar-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--nox-accent);
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.profile-avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4), transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    animation: pulse 3s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.profile-rank-badge {
    display: flex;
    justify-content: center;
}

/* Profile Info */
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nox-white);
    margin: 0;
}

.profile-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    position: relative;
    z-index: 10;
}

.profile-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--nox-accent);
    color: var(--nox-white);
    transform: translateY(-2px);
}

.profile-link-steam:hover {
    border-color: #1b2838;
    background: rgba(27, 40, 56, 0.3);
}

.profile-link-faceit:hover {
    border-color: #ff5500;
    background: rgba(255, 85, 0, 0.1);
}

.profile-link i {
    font-size: 1.25rem;
}

.faceit-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Profile Progress */
.profile-header-right {
    flex: 1;
}

.profile-progress-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.progress-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--nox-accent);
    letter-spacing: 0.1em;
}

.progress-label i {
    font-size: 1.25rem;
}

.progress-stats {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.progress-current {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--nox-accent);
}

.progress-separator {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
}

.progress-target {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

/* Progress Bar */
.progress-bar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar-bg {
    flex: 1;
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--nox-accent), var(--nox-green));
    border-radius: 0.875rem;
    position: relative;
    transition: width 1s ease-out;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.progress-bar-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-percentage {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--nox-accent);
    min-width: 70px;
    text-align: right;
}

.progress-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

.progress-info i {
    color: #FFD700;
    font-size: 1.125rem;
}

/* Profile Stats Section */
.profile-stats-section {
    padding: 4rem 0 6rem;
    background: 
        linear-gradient(180deg, rgba(10, 10, 21, 0.95) 0%, rgba(5, 8, 22, 0.95) 100%),
        url('../img/contentbg.jpg') center/cover no-repeat fixed;
    position: relative;
}

.stats-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--nox-white);
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Stat Card */
.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(15, 20, 45, 0.8), rgba(10, 15, 35, 0.8));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--nox-accent);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.stat-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.stat-icon-kills {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.stat-icon-deaths {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.stat-icon-kd {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.stat-icon-headshot {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.stat-icon-time {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.stat-icon-rank {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.stat-icon-assists {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.stat-icon-accuracy {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.stat-icon-hs-percent {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.stat-icon-wins {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.stat-icon-losses {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.stat-icon-rounds {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 213, 99, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.stat-card-content {
    flex: 1;
}

.stat-card-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.stat-card-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--nox-white);
}

/* === RESPONSIVE - PROFILE === */

@media (max-width: 1024px) {
    .profile-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-header-left {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .profile-avatar-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .profile-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .profile-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .profile-hero {
        padding: 8rem 0 3rem;
    }
    
    .profile-header {
        padding: 2rem 1.5rem;
    }
    
    .profile-avatar-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .profile-header-left {
        gap: 1.5rem;
    }
    
    .profile-avatar-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .progress-stats {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .progress-label {
        font-size: 0.75rem;
    }
    
    .progress-xp {
        font-size: 0.75rem;
    }
    
    .progress-bar-wrapper {
        width: 100%;
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .progress-bar-bg {
        height: 24px;
    }
    
    .current-points,
    .next-level-points {
        font-size: 0.85rem;
    }
    
    .progress-percentage {
        text-align: center;
    }
}

/* === NEWS PAGINATION === */

.news-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem 2rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 0.75rem;
    color: var(--nox-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.pagination-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.pagination-number:hover {
    color: var(--nox-accent);
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

.pagination-number.active {
    color: var(--nox-darker);
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    border-color: var(--nox-accent);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .pagination-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .pagination-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* === NEWS ARTICLE PAGE === */

.news-article-section {
    padding: 8rem 0 4rem;
    background: var(--nox-darker);
    min-height: 100vh;
}

.article-header {
    text-align: center;
    margin-bottom: 4rem;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.article-breadcrumb a {
    color: var(--nox-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.article-breadcrumb a:hover {
    color: var(--nox-green);
}

.article-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.article-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    color: var(--nox-darker);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    border-radius: 2rem;
    text-transform: uppercase;
}

.article-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.article-date,
.article-author,
.article-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.article-date i,
.article-author i,
.article-views i {
    color: var(--nox-accent);
}

.article-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--nox-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.article-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.article-main {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-text {
    padding: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-text p {
    margin-bottom: 1.5rem;
}

.article-text h1,
.article-text h2,
.article-text h3,
.article-text h4 {
    color: var(--nox-white);
    margin: 2rem 0 1rem;
    font-family: 'Orbitron', sans-serif;
}

.article-text b,
.article-text strong {
    color: var(--nox-accent);
    font-weight: 700;
}

.article-text i,
.article-text em {
    color: var(--nox-green);
}

.article-footer {
    padding: 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 1rem;
    color: var(--nox-accent);
    font-size: 0.8rem;
    font-weight: 600;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.discord {
    background: #5865f2;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.widget-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nox-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-news-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.related-news-item:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.related-image {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    flex: 1;
}

.related-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    color: var(--nox-accent);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
}

.related-title {
    color: var(--nox-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.related-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.btn-back-to-news {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    color: var(--nox-darker);
    text-decoration: none;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all var(--transition-fast);
}

.btn-back-to-news:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .article-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-info {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .news-article-section {
        padding: 6rem 0 3rem;
    }
    
    .article-text {
        padding: 2rem;
    }
    
    .article-footer {
        padding: 1.5rem 2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .article-breadcrumb {
        font-size: 0.8rem;
    }
    
    .article-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* === BANS FILTERS === */

.bans-filters {
    margin-bottom: 3rem;
}

.filters-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--nox-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-label i {
    color: var(--nox-accent);
}

.filter-input,
.filter-select {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--nox-white);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--nox-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.filter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.filter-select option {
    background: var(--nox-darker);
    color: var(--nox-white);
}

.filter-btn-search,
.filter-btn-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.filter-btn-search {
    background: linear-gradient(135deg, var(--nox-accent), var(--nox-green));
    color: var(--nox-darker);
}

.filter-btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

.filter-btn-reset {
    background: rgba(255, 255, 255, 0.1);
    color: var(--nox-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 0.5rem;
}

.filter-btn-reset:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--nox-white);
    transform: translateY(-2px);
}

.pagination-info {
    text-align: center;
    margin-top: 2rem;
}

.pagination-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.pagination-info strong {
    color: var(--nox-accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .filters-form {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .filter-group:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .filters-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-group:first-child {
        grid-column: 1;
    }
    
    .filter-group:last-child {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .filter-btn-search,
    .filter-btn-reset {
        flex: 1;
        margin-left: 0;
    }
}

/* === MAPS STATS SECTION === */

.maps-stats-section {
    padding: 4rem 0 6rem;
    background: 
        linear-gradient(180deg, rgba(10, 10, 21, 0.95) 0%, rgba(5, 8, 22, 0.95) 100%),
        url('../img/contentbg.jpg') center/cover no-repeat fixed;
    position: relative;
}

.maps-stats-section .container {
    position: relative;
}

.maps-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--nox-white);
    margin-bottom: 2rem;
}

.maps-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
}

.maps-scroll-wrapper::-webkit-scrollbar {
    height: 10px;
}

.maps-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.maps-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--nox-accent);
    border-radius: 5px;
}

.maps-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--nox-green);
}

.maps-grid {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem;
}

/* Map Card */
.map-card {
    position: relative;
    width: 240px;
    height: 135px;
    flex-shrink: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.map-card:hover {
    transform: translateY(-5px);
    border-color: var(--nox-accent);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
    z-index: 100;
    overflow: hidden;
}

.map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
    border-radius: 0.75rem;
    z-index: 1;
}

.map-card:hover .map-image {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
    border-radius: 0 0 0.75rem 0.75rem;
    pointer-events: none;
}

.map-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--nox-white);
    margin-bottom: 0.25rem;
}

.map-rounds {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Map Tooltip - Hide old ones */
.map-tooltip {
    display: none !important;
}

/* Global Map Tooltip */
.map-tooltip-global {
    position: absolute;
    width: 400px;
    background: linear-gradient(135deg, rgba(10, 15, 35, 0.98), rgba(15, 20, 45, 0.98));
    border: 2px solid var(--nox-accent);
    border-radius: 0.75rem;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
}

.map-tooltip-global.show {
    opacity: 1;
    visibility: visible;
}

.tooltip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tooltip-stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tooltip-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.tooltip-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--nox-accent);
}

/* === RESPONSIVE - MAPS === */

@media (max-width: 768px) {
    .maps-stats-section {
        padding: 3rem 0 4rem;
    }
    
    .maps-section-title {
        font-size: 1.5rem;
    }
    
    .map-tooltip {
        width: 300px;
    }
    
    .map-tooltip-global {
        width: 90vw;
        max-width: 350px;
        padding: 1rem;
        left: 50% !important;
        transform: translateX(-50%) translateY(calc(-100% - 10px)) !important;
    }
    
    .tooltip-grid {
        gap: 0.75rem;
    }
    
    .tooltip-label {
        font-size: 0.7rem;
    }
    
    .tooltip-value {
        font-size: 1rem;
    }
}

/* === PLAYER STATISTICS SECTION === */

.player-statistics-section {
    padding: 6rem 0;
    background: 
        linear-gradient(180deg, rgba(5, 8, 22, 0.95) 0%, rgba(10, 10, 21, 0.95) 100%),
        url('../img/contentbg.jpg') center/cover no-repeat fixed;
    position: relative;
}

.player-statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.05), transparent 70%);
    pointer-events: none;
}

.player-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Stat Card */
.player-stat-card {
    background: linear-gradient(135deg, rgba(15, 20, 45, 0.8), rgba(10, 15, 35, 0.8));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.player-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.player-stat-card:hover::before {
    left: 100%;
}

.player-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--nox-accent);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

/* Featured Stats - Larger cards (2x2) */
.featured-stat {
    grid-column: span 2;
    grid-row: span 2;
    padding: 3rem 2rem;
}

/* Wide Stats - Span 2 columns */
.wide-stat {
    grid-column: span 2;
}

/* Accent Stats - Highlighted */
.accent-stat {
    border-color: rgba(0, 255, 136, 0.3);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(10, 15, 35, 0.8));
}

.accent-stat:hover {
    border-color: var(--nox-accent);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

/* Stat Values */
.stat-value-large {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--nox-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: glow-pulse 2s ease-in-out infinite;
}

.stat-value-medium {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--nox-white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-small {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stat-ratio {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Progress Bar */
.stat-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    margin-top: 1rem;
    overflow: hidden;
}

/* Stat Icons - Unified Style (Only for player statistics) */
.player-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
    transition: all var(--transition-normal);
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 136, 0.2);
    color: var(--nox-accent);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.player-stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--nox-accent);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.4);
    background: rgba(0, 255, 136, 0.1);
}

/* Accent stat icons glow more */
.player-stat-card.accent-stat .stat-icon {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.3);
}

.player-stat-card.accent-stat:hover .stat-icon {
    box-shadow: 0 5px 30px rgba(0, 255, 136, 0.5);
}

.stat-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--nox-accent), var(--nox-green));
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: progress-fill 1.5s ease-out;
}

.stat-progress-accent {
    background: linear-gradient(90deg, #fbbf24, var(--nox-accent));
}

@keyframes progress-fill {
    from {
        width: 0 !important;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    }
}

/* === RESPONSIVE - PLAYER STATS === */

@media (max-width: 1024px) {
    .player-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-stat {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .player-statistics-section {
        padding: 4rem 0;
    }
    
    .player-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .player-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .featured-stat {
        grid-column: span 2;
        grid-row: span 1;
        padding: 2rem 1.5rem;
    }
    
    .wide-stat {
        grid-column: span 2;
    }
    
    .stat-value-large {
        font-size: 2.5rem;
    }
    
    .stat-value-medium {
        font-size: 1.5rem;
    }
    
    .player-stat-card .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-label-small {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .player-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-stat,
    .wide-stat {
        grid-column: span 1;
    }
}

/* === USER PROFILE DROPDOWN === */

.user-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
    border: 1.5px solid rgba(0, 255, 136, 0.2);
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.user-profile-btn:hover {
    border-color: rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, rgba(15, 23, 42, 1), rgba(30, 41, 59, 1));
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15), inset 0 1px 0 rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

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

.user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.3);
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.user-profile-btn:hover .user-avatar {
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

.user-avatar i {
    font-size: 1.25rem;
    color: var(--nox-accent);
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
}

.user-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
    font-weight: 600;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: 0.02em;
}

.user-chevron {
    font-size: 0.75rem;
    color: #64748b;
    transition: all 0.3s ease;
    margin-left: 0.25rem;
}

.user-profile-btn:hover .user-chevron {
    color: var(--nox-accent);
    transform: rotate(180deg);
}

/* User Dropdown Menu */
.user-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: 280px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(20, 30, 48, 0.95));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Dropdown Header */
.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.user-dropdown-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(0, 255, 136, 0.3);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
}

.user-dropdown-avatar i {
    font-size: 1.5rem;
    color: var(--nox-accent);
}

.user-dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.user-dropdown-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-steam {
    font-size: 0.7rem;
    color: #94a3b8;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Dropdown Divider */
.user-dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
}

/* Dropdown Items */
.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.user-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--nox-accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease;
}

.user-dropdown-item:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--nox-accent);
    padding-left: 1.25rem;
}

.user-dropdown-item:hover::before {
    transform: scaleY(1);
}

.user-dropdown-item i:first-child {
    font-size: 1rem;
    color: inherit;
    transition: all 0.2s ease;
}

.user-dropdown-item i:last-child {
    margin-left: auto;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}

.user-dropdown-item:hover i:last-child {
    opacity: 1;
    transform: translateX(0);
}

/* Logout Item - Special Styling */
.user-dropdown-logout {
    color: #fca5a5;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.user-dropdown-logout:hover {
    background: rgba(220, 38, 38, 0.15);
    color: #fecaca;
}

.user-dropdown-logout:hover::before {
    background: #dc2626;
}

/* === MOBILE USER PROFILE === */

.mobile-user-profile {
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(20, 30, 48, 0.9));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.mobile-user-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.mobile-user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(0, 255, 136, 0.3);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
}

.mobile-user-avatar i {
    font-size: 1.75rem;
    color: var(--nox-accent);
}

.mobile-user-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.mobile-user-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
    font-weight: 600;
}

.mobile-user-name {
    font-size: 1rem;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-user-steamid {
    font-size: 0.7rem;
    color: #94a3b8;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-user-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
}

.mobile-user-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 255, 136, 0.05);
}

.mobile-user-action:last-child {
    border-bottom: none;
}

.mobile-user-action::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--nox-accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease;
}

.mobile-user-action:active {
    background: rgba(0, 255, 136, 0.1);
    color: var(--nox-accent);
    padding-left: 1.25rem;
}

.mobile-user-action:active::before {
    transform: scaleY(1);
}

.mobile-user-action i:first-child {
    font-size: 1.1rem;
    color: inherit;
    transition: all 0.2s ease;
}

.mobile-user-action i:last-child {
    margin-left: auto;
    font-size: 0.85rem;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.mobile-user-action:active i:last-child {
    opacity: 1;
    transform: translateX(4px);
}

/* Logout Item - Special Styling */
.mobile-user-logout {
    color: #fca5a5;
}

.mobile-user-logout:active {
    background: rgba(220, 38, 38, 0.15);
    color: #fecaca;
}

.mobile-user-logout:active::before {
    background: #dc2626;
}

/* === LAYOUT SAFEGUARD: CONTAINER CENTERING === */
/* Уверяваме се, че .container остава центриран елемент с max-width,
   дори ако Tailwind контейнерът не се зареди коректно. */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

/* === MINIMAL UTILITY CLASSES FOR LAYOUT (NAVIGATION FALLBACK) === */
/* Тези класове имитират най-важните Tailwind utility-та, които
   се ползват в навигацията и основния layout. Ако Tailwind CDN
   по някаква причина не подаде стиловете, тези правила пазят
   дизайна работещ. */

.fixed { position: fixed; }
.w-full { width: 100%; }
.z-50 { z-index: 50; }

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

.h-20 { height: 5rem; }

.hidden { display: none; }

.space-x-8 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 2rem; /* 8 * 0.25rem */
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 1rem; /* 4 * 0.25rem */
}

.mr-2 { margin-right: 0.5rem; }

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:h-24 { height: 6rem; }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}