        :root {
            --primary-color: #dc3545;
            --secondary-color: #6c757d;
            --dark-bg: #0d1117;
            --card-bg: #161b22;
            --border-color: #30363d;
            --text-primary: #f0f6fc;
            --text-secondary: #8b949e;
            --accent-blue: #58a6ff;
            --accent-green: #3fb950;
            --accent-purple: #a5a5ff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1c2128 100%);
            color: var(--text-primary);
            min-height: 100vh;
        }

        /* Modern Gaming Navigation */
        .modern-nav {
            background: linear-gradient(135deg, rgba(22, 27, 34, 0.98), rgba(13, 17, 23, 0.95));
            backdrop-filter: blur(15px);
            border-bottom: 2px solid transparent;
            border-image: linear-gradient(90deg, var(--primary-color), var(--accent-blue), var(--accent-purple)) 1;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-brand {
            font-weight: 900;
            font-size: 1.6rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-brand:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 10px rgba(220, 53, 69, 0.5));
        }

        .nav-brand i {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 600;
            padding: 0.8rem 1.2rem !important;
            border-radius: 12px;
            transition: all 0.4s ease;
            margin: 0 0.3rem;
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .nav-link:hover::before {
            left: 100%;
        }

        .nav-link:hover {
            color: var(--text-primary) !important;
            background: linear-gradient(135deg, rgba(88, 166, 255, 0.15), rgba(165, 165, 255, 0.1));
            border-color: var(--accent-blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3);
        }

        .nav-link.active {
            color: var(--accent-blue) !important;
            background: linear-gradient(135deg, rgba(88, 166, 255, 0.2), rgba(165, 165, 255, 0.15));
            border-color: var(--accent-blue);
            box-shadow: 0 0 20px rgba(88, 166, 255, 0.4);
        }

        .nav-link i {
            transition: all 0.3s ease;
        }

        .nav-link:hover i {
            transform: scale(1.2) rotate(5deg);
        }

        /* Gaming Style Navbar Toggler */
        .navbar-toggler {
            border: 2px solid var(--accent-blue);
            border-radius: 8px;
            padding: 0.5rem;
            background: rgba(88, 166, 255, 0.1);
            transition: all 0.3s ease;
        }

        .navbar-toggler:hover {
            background: rgba(88, 166, 255, 0.2);
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(88, 166, 255, 0.5);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2888, 166, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Navigation Badges & Notifications */
        .nav-badge {
            position: absolute;
            top: 10px;
            right: 5px;
            color: white;
            font-size: 0.4rem;
            font-weight: 900;
            padding: 0.1rem 0.25rem;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.2px;
            text-align: center;
            min-width: 12px;
            z-index: 10;
            animation: pulse-badge 2s infinite;
        }

        .nav-badge-home {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            box-shadow: 0 2px 6px rgba(39, 174, 96, 0.4);
        }

        .nav-badge-servers {
            background: linear-gradient(135deg, #3498db, #2980b9);
            box-shadow: 0 2px 6px rgba(52, 152, 219, 0.4);
        }

        .nav-badge-boosting {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4);
        }

        .nav-badge-panel {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
            box-shadow: 0 2px 6px rgba(155, 89, 182, 0.4);
        }

        .nav-badge-contacts {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            box-shadow: 0 2px 6px rgba(231, 76, 60, 0.4);
        }

        .nav-badge-news {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            box-shadow: 0 2px 6px rgba(243, 156, 18, 0.4);
        }

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

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-3px); }
            60% { transform: translateY(-2px); }
        }

        @keyframes glow {
            from { box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5); }
            to { box-shadow: 0 4px 16px rgba(255, 107, 53, 0.8); }
        }

        .nav-login {
            background: linear-gradient(135deg, var(--primary-color), #c0392b) !important;
            color: white !important;
            border-radius: 20px !important;
            padding: 0.6rem 1.5rem !important;
            margin-left: 0.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
        }

        .nav-login:hover {
            background: linear-gradient(135deg, #c0392b, var(--primary-color)) !important;
            transform: translateY(-2px) scale(1.05) !important;
            box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5) !important;
        }

        /* Responsive Navigation */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: linear-gradient(135deg, rgba(22, 27, 34, 0.98), rgba(13, 17, 23, 0.95));
                border-radius: 12px;
                margin-top: 1rem;
                padding: 1rem;
                border: 1px solid var(--border-color);
            }
            
            .nav-badge {
                position: relative;
                top: auto;
                right: auto;
                margin-left: 0.5rem;
                display: inline-block;
            }
        }

        /* Modern Cards */
        .modern-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .modern-card:hover {
            border-color: var(--accent-blue);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(88, 166, 255, 0.15);
        }

        .card-title {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* CS 1.6 Boost Hero Section */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, rgba(22, 27, 34, 0.95), rgba(13, 17, 23, 0.9));
            border: 2px solid transparent;
            border-image: linear-gradient(135deg, var(--primary-color), var(--accent-blue), var(--accent-green)) 1;
            border-radius: 20px;
            padding: 0;
            margin: 2rem 0;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('img/maps/cs16/de_dust2.jpg') center/cover;
            opacity: 0.15;
            filter: blur(2px);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 3rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(22, 27, 34, 0.8), rgba(13, 17, 23, 0.6));
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), #c0392b);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
            animation: glow-badge 2s ease-in-out infinite alternate;
        }

        @keyframes glow-badge {
            from { box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4); }
            to { box-shadow: 0 6px 25px rgba(220, 53, 69, 0.7); }
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-blue), var(--accent-green));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            text-shadow: 0 0 30px rgba(220, 53, 69, 0.5);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .hero-feature {
            background: rgba(88, 166, 255, 0.1);
            border: 1px solid var(--accent-blue);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            min-width: 150px;
        }

        .hero-feature:hover {
            background: rgba(88, 166, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(88, 166, 255, 0.3);
        }

        .hero-feature-icon {
            font-size: 2rem;
            color: var(--accent-blue);
            margin-bottom: 0.5rem;
        }

        .hero-feature-title {
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .hero-feature-desc {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .hero-cta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .hero-btn-primary {
            background: linear-gradient(135deg, var(--primary-color), #c0392b);
            border: none;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
        }

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

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

        .hero-btn-primary:hover {
            background: linear-gradient(135deg, #c0392b, var(--primary-color));
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(220, 53, 69, 0.5);
            color: white;
        }

        .hero-btn-secondary {
            background: rgba(88, 166, 255, 0.1);
            border: 2px solid var(--accent-blue);
            color: var(--accent-blue);
            padding: 1rem 2.5rem;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .hero-btn-secondary:hover {
            background: var(--accent-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(88, 166, 255, 0.4);
        }

        /* Server Cards */
        .server-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .server-card:hover {
            border-color: var(--accent-green);
            transform: translateY(-1px);
        }

        /* VIP Server Cards with Map Background */
        .vip-server-card {
            position: relative;
            background: var(--card-bg);
            border: 2px solid var(--accent-blue);
            border-radius: 16px;
            padding: 0;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(88, 166, 255, 0.2);
        }

        .vip-server-card:hover {
            border-color: var(--accent-green);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 30px rgba(63, 185, 80, 0.3);
        }

        .vip-server-card:hover .vip-badge {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7), 0 3px 12px rgba(88, 166, 255, 0.8);
        }

        .map-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.7;
            transition: all 0.4s ease;
            filter: brightness(0.8) contrast(1.2) saturate(1.3);
        }

        .vip-server-card:hover .map-background {
            opacity: 0.9;
            transform: scale(1.05) rotate(1deg);
            filter: brightness(1.1) contrast(1.4) saturate(1.5);
        }

        .vip-server-content {
            position: relative;
            z-index: 2;
            padding: 1.2rem;
            background: linear-gradient(135deg, rgba(22, 27, 34, 0.85), rgba(22, 27, 34, 0.6));
            backdrop-filter: blur(3px);
            border-radius: 0 0 14px 14px;
        }

        .vip-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            color: white;
            padding: 0.4rem 0.9rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(88, 166, 255, 0.6);
            border: 2px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        .server-name-vip {
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .server-details-vip {
            color: var(--text-secondary);
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
        }

        .players-indicator {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .player-count-vip {
            background: linear-gradient(135deg, var(--accent-green), #2ea043);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(63, 185, 80, 0.3);
        }

        .copy-btn-vip {
            background: rgba(88, 166, 255, 0.1);
            border: 1px solid var(--accent-blue);
            color: var(--accent-blue);
            padding: 0.3rem 0.6rem;
            border-radius: 12px;
            font-size: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .copy-btn-vip:hover {
            background: var(--accent-blue);
            color: white;
            transform: scale(1.05);
        }

        .server-status {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-green);
            margin-right: 0.5rem;
        }

        .server-players {
            background: rgba(63, 185, 80, 0.1);
            color: var(--accent-green);
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* News Cards - Magic Style */
        .news-card {
            position: relative;
            background: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .news-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 12px 35px rgba(220, 53, 69, 0.3);
        }

        .news-image-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
            filter: brightness(0.8) contrast(1.2);
        }

        .news-card:hover .news-image {
            transform: scale(1.1);
            filter: brightness(1.0) contrast(1.3);
        }

        .news-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(88, 166, 255, 0.1));
            opacity: 0;
            transition: all 0.4s ease;
        }

        .news-card:hover .news-overlay {
            opacity: 1;
        }

        .news-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, var(--primary-color), #c0392b);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
            z-index: 5;
        }

        .news-content {
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(22, 27, 34, 0.95), rgba(22, 27, 34, 0.9));
        }

        .news-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
            background: linear-gradient(135deg, var(--text-primary), var(--accent-blue));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .news-excerpt {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .news-date {
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        .news-read-more {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            border: none;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3);
        }

        .news-read-more:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(88, 166, 255, 0.5);
            color: white;
        }

        /* Fix text-muted for dark theme */
        .text-muted {
            color: #8b949e !important;
        }

        /* Most Played Servers - Unique Leaderboard Style */
        .leaderboard-container {
            position: relative;
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(88, 166, 255, 0.05));
            border-radius: 16px;
            padding: 1.5rem;
            overflow: hidden;
        }

        .leaderboard-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .leaderboard-item {
            position: relative;
            background: linear-gradient(135deg, rgba(22, 27, 34, 0.9), rgba(22, 27, 34, 0.7));
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 1.2rem;
            margin-bottom: 1rem;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 1.2rem;
            backdrop-filter: blur(10px);
            overflow: hidden;
        }

        .leaderboard-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
        }

        .leaderboard-item:hover {
            transform: translateY(-3px) scale(1.02);
            border-color: var(--accent-blue);
            box-shadow: 0 10px 30px rgba(88, 166, 255, 0.3);
        }

        .leaderboard-item:hover::before {
            opacity: 0.1;
        }

        .rank-badge {
            position: relative;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.2rem;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .rank-1 { background: linear-gradient(135deg, #f1c40f, #f39c12); }
        .rank-2 { background: linear-gradient(135deg, #95a5a6, #7f8c8d); }
        .rank-3 { background: linear-gradient(135deg, #e67e22, #d35400); }
        .rank-4 { background: linear-gradient(135deg, #3498db, #2980b9); }
        .rank-5 { background: linear-gradient(135deg, #9b59b6, #8e44ad); }

        .server-avatar {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            object-fit: cover;
            border: 3px solid rgba(255, 255, 255, 0.2);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .leaderboard-item:hover .server-avatar {
            transform: scale(1.1) rotate(5deg);
            border-color: var(--accent-blue);
        }

        .server-info-leader {
            flex: 1;
            min-width: 0;
        }

        .server-name-leader {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 0.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .server-details-leader {
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 0.3rem;
        }

        .progress-fill {
            height: 100%;
            border-radius: 3px;
            transition: width 0.8s ease;
        }

        .players-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .player-count-leader {
            background: linear-gradient(135deg, var(--accent-green), #2ea043);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(63, 185, 80, 0.3);
            flex-shrink: 0;
        }

        .popularity-score {
            font-size: 0.75rem;
            color: var(--text-secondary);
            font-weight: 600;
        }

        /* Gaming Footer */
        .modern-footer {
            position: relative;
            background: linear-gradient(135deg, rgba(22, 27, 34, 0.98), rgba(13, 17, 23, 0.95));
            border-top: 3px solid transparent;
            border-image: linear-gradient(90deg, var(--primary-color), var(--accent-blue), var(--accent-green)) 1;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            overflow: hidden;
        }

        .modern-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footergrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(88,166,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footergrid)"/></svg>');
            opacity: 0.5;
        }

        .footer-content {
            position: relative;
            z-index: 2;
        }

        .footer-brand {
            text-align: center;
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .footer-tagline {
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-style: italic;
        }

        .footer-section {
            margin-bottom: 2rem;
        }

        .footer-title {
            color: var(--text-primary);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--accent-blue);
            transform: translateX(5px);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 12px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-discord {
            background: linear-gradient(135deg, #7289da, #5b6eae);
        }

        .social-steam {
            background: linear-gradient(135deg, #1b2838, #2a475e);
        }

        .social-youtube {
            background: linear-gradient(135deg, #ff0000, #cc0000);
        }

        .social-facebook {
            background: linear-gradient(135deg, #1877f2, #166fe5);
        }

        .social-btn:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(88, 166, 255, 0.2);
            padding-top: 2rem;
            text-align: center;
        }

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

        .footer-info-item {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .footer-info-item a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .footer-info-item a:hover {
            color: var(--accent-blue);
        }

        .footer-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1rem 0;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            background: rgba(88, 166, 255, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(88, 166, 255, 0.2);
            min-width: 120px;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background: rgba(88, 166, 255, 0.2);
            transform: translateY(-2px);
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--accent-blue);
            display: block;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Gaming Login Modal */
        .modal-content {
            background: linear-gradient(135deg, rgba(22, 27, 34, 0.98), rgba(13, 17, 23, 0.95)) !important;
            border: 2px solid transparent !important;
            border-image: linear-gradient(135deg, var(--primary-color), var(--accent-blue), var(--accent-purple)) 1 !important;
            border-radius: 20px !important;
            backdrop-filter: blur(15px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            position: relative;
        }

        .modal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(88,166,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
            z-index: 1;
        }

        .modal-header {
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(88, 166, 255, 0.1));
            border-bottom: 2px solid rgba(88, 166, 255, 0.3) !important;
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .modal-title {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .modal-title i {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            animation: pulse 2s infinite;
        }

        .modal-body {
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .gaming-form-group {
            position: relative;
            margin-bottom: 2rem;
        }

        .gaming-label {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .gaming-input {
            background: rgba(22, 27, 34, 0.8) !important;
            border: 2px solid rgba(88, 166, 255, 0.3) !important;
            border-radius: 12px !important;
            color: var(--text-primary) !important;
            padding: 1rem 1.2rem !important;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .gaming-input:focus {
            background: rgba(22, 27, 34, 0.9) !important;
            border-color: var(--accent-blue) !important;
            box-shadow: 0 0 20px rgba(88, 166, 255, 0.3) !important;
            transform: translateY(-2px);
        }

        .gaming-input::placeholder {
            color: var(--text-secondary);
            font-style: italic;
        }

        .gaming-login-btn {
            background: linear-gradient(135deg, var(--primary-color), #c0392b) !important;
            border: none !important;
            border-radius: 15px !important;
            padding: 1rem 2rem !important;
            font-weight: 700 !important;
            font-size: 1.1rem !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
        }

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

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

        .gaming-login-btn:hover {
            background: linear-gradient(135deg, #c0392b, var(--primary-color)) !important;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 35px rgba(220, 53, 69, 0.5);
        }

        .modal-footer {
            background: rgba(22, 27, 34, 0.5);
            border-top: 2px solid rgba(88, 166, 255, 0.3) !important;
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .gaming-link-btn {
            background: rgba(88, 166, 255, 0.1) !important;
            border: 1px solid var(--accent-blue) !important;
            color: var(--accent-blue) !important;
            border-radius: 10px !important;
            padding: 0.5rem 1rem !important;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .gaming-link-btn:hover {
            background: var(--accent-blue) !important;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(88, 166, 255, 0.4);
        }

        .btn-close-white {
            background: rgba(220, 53, 69, 0.8);
            border-radius: 50%;
            padding: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-close-white:hover {
            background: var(--primary-color);
            transform: scale(1.1) rotate(90deg);
        }

        /* Servers Page Styles */
        .servers-container {
            background: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            overflow-x: auto;
            overflow-y: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .servers-container::-webkit-scrollbar {
            height: 8px;
        }

        .servers-container::-webkit-scrollbar-track {
            background: rgba(22, 27, 34, 0.8);
            border-radius: 4px;
        }

        .servers-container::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            border-radius: 4px;
        }

        .servers-container::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
        }

        .servers-container:hover {
            border-color: var(--accent-blue);
            box-shadow: 0 12px 35px rgba(88, 166, 255, 0.2);
        }

        .servers-table {
            width: 100%;
            min-width: 700px;
            margin: 0;
            background: transparent !important;
            color: var(--text-primary);
        }

        .table {
            background: transparent !important;
            color: var(--text-primary) !important;
        }

        .table > :not(caption) > * > * {
            background: transparent !important;
            color: var(--text-primary) !important;
        }

        /* Bootstrap Table Override */
        .table-striped > tbody > tr:nth-of-type(odd) > * {
            background: rgba(22, 27, 34, 0.4) !important;
        }

        .table-striped > tbody > tr:nth-of-type(even) > * {
            background: rgba(22, 27, 34, 0.6) !important;
        }

        .table > tbody {
            background: transparent !important;
        }

        .table tbody tr {
            background: rgba(22, 27, 34, 0.4) !important;
        }

        .servers-table thead th {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
            color: var(--text-primary);
            padding: 0.7rem 0.5rem;
            font-weight: 600;
            text-align: center;
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.75rem;
            position: relative;
        }

        .servers-table thead th::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
        }

        .servers-table tbody tr {
            background: rgba(22, 27, 34, 0.4);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .servers-table tbody tr:nth-child(even) {
            background: rgba(22, 27, 34, 0.6);
        }

        .servers-table tbody tr:hover {
            background: linear-gradient(135deg, rgba(88, 166, 255, 0.1), rgba(165, 165, 255, 0.05));
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(88, 166, 255, 0.2);
            border-color: var(--accent-blue);
        }

        .servers-table tbody td {
            padding: 0.6rem 0.4rem;
            text-align: center;
            vertical-align: middle;
            border: none;
            color: var(--text-primary);
            font-size: 0.85rem;
        }

        .server-status {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-green), #2ea043);
            color: var(--text-primary);
            font-size: 0.8rem;
            box-shadow: 0 2px 8px rgba(63, 185, 80, 0.3);
        }


        .server-info {
            text-align: left;
        }

        .server-name {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
        }

        .server-ip {
            background: rgba(88, 166, 255, 0.1);
            border: 1px solid var(--accent-blue);
            color: var(--accent-blue);
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            font-size: 0.7rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            font-family: 'Courier New', monospace;
        }

        .server-ip:hover {
            background: var(--accent-blue);
            color: var(--text-primary);
            transform: scale(1.02);
            box-shadow: 0 2px 8px rgba(88, 166, 255, 0.3);
        }

        .players-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
        }

        .players-count {
            background: linear-gradient(135deg, var(--accent-green), #2ea043);
            color: var(--text-primary);
            padding: 0.3rem 0.7rem;
            border-radius: 15px;
            font-weight: 600;
            font-size: 0.75rem;
            box-shadow: 0 2px 8px rgba(63, 185, 80, 0.2);
            min-width: 50px;
        }

        .players-bar {
            width: 80px;
            height: 6px;
            background: rgba(22, 27, 34, 0.8);
            border-radius: 3px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .players-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
            border-radius: 3px;
            transition: width 0.5s ease;
        }

        .map-badge {
            background: rgba(88, 166, 255, 0.1);
            border: 1px solid var(--accent-blue);
            color: var(--accent-blue);
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.7rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            transition: all 0.3s ease;
        }

        .map-badge:hover {
            background: rgba(88, 166, 255, 0.15);
            transform: scale(1.02);
        }

        .country-badge {
            background: rgba(165, 165, 255, 0.1);
            border: 1px solid var(--accent-purple);
            color: var(--accent-purple);
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.7rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .country-badge:hover {
            background: rgba(165, 165, 255, 0.15);
            transform: scale(1.02);
        }

        .view-btn {
            background: linear-gradient(135deg, var(--primary-color), #c0392b);
            color: var(--text-primary);
            border: none;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            font-size: 0.7rem;
            box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
        }

        .view-btn:hover {
            color: var(--text-primary);
            background: linear-gradient(135deg, #c0392b, var(--primary-color));
            transform: translateY(-1px) scale(1.02);
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
        }

        /* Add Server Form */
        .add-server-form {
            background: linear-gradient(135deg, rgba(88, 166, 255, 0.1), rgba(165, 165, 255, 0.05));
            border: 2px solid var(--accent-blue);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .add-server-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="servergrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(88,166,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23servergrid)"/></svg>');
            opacity: 0.3;
        }

        .add-server-form > * {
            position: relative;
            z-index: 2;
        }

        .form-control {
            background: rgba(22, 27, 34, 0.9) !important;
            border: 2px solid var(--border-color) !important;
            color: var(--text-primary) !important;
            border-radius: 12px !important;
            padding: 0.8rem 1rem !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            background: rgba(22, 27, 34, 0.95) !important;
            border-color: var(--accent-blue) !important;
            box-shadow: 0 0 20px rgba(88, 166, 255, 0.3) !important;
            color: var(--text-primary) !important;
            transform: translateY(-2px);
        }

        .form-control::placeholder {
            color: var(--text-secondary) !important;
            font-style: italic;
        }

        .form-label {
            color: var(--text-primary);
            font-weight: 700;
            margin-bottom: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)) !important;
            border: none !important;
            border-radius: 25px !important;
            padding: 1rem 2.5rem !important;
            font-weight: 700 !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(88, 166, 255, 0.3);
        }

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

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

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue)) !important;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(88, 166, 255, 0.5) !important;
        }

        /* Discord Widget */
        .discord-widget {
            border-radius: 16px;
            overflow: hidden;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .discord-widget:hover {
            border-color: var(--accent-blue);
            box-shadow: 0 8px 25px rgba(88, 166, 255, 0.2);
        }

        .discord-widget iframe {
            border-radius: 14px;
        }

        /* Search & Filter Styles */
        .servers-search-section {
            background: linear-gradient(135deg, rgba(88, 166, 255, 0.05), rgba(165, 165, 255, 0.03));
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .servers-search-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="searchgrid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(88,166,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23searchgrid)"/></svg>');
            opacity: 0.3;
        }

        .servers-search-section > * {
            position: relative;
            z-index: 2;
        }

        .search-input-group {
            position: relative;
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent-blue);
            z-index: 3;
        }

        .search-input {
            background: rgba(22, 27, 34, 0.9) !important;
            border: 2px solid var(--border-color) !important;
            color: var(--text-primary) !important;
            border-radius: 12px !important;
            padding: 0.8rem 1rem 0.8rem 3rem !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            background: rgba(22, 27, 34, 0.95) !important;
            border-color: var(--accent-blue) !important;
            box-shadow: 0 0 20px rgba(88, 166, 255, 0.3) !important;
            color: var(--text-primary) !important;
            transform: translateY(-2px);
        }

        .search-input::placeholder {
            color: var(--text-secondary) !important;
            font-style: italic;
        }

        .search-select {
            background: rgba(22, 27, 34, 0.9) !important;
            border: 2px solid var(--border-color) !important;
            color: var(--text-primary) !important;
            border-radius: 12px !important;
            padding: 0.8rem 1rem !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .search-select:focus {
            background: rgba(22, 27, 34, 0.95) !important;
            border-color: var(--accent-blue) !important;
            box-shadow: 0 0 20px rgba(88, 166, 255, 0.3) !important;
            color: var(--text-primary) !important;
            transform: translateY(-2px);
        }

        .search-select option {
            background: var(--card-bg);
            color: var(--text-primary);
        }

        .search-results-info {
            border-top: 1px solid var(--border-color);
            padding-top: 1rem;
        }

        .servers-per-page select {
            background: rgba(22, 27, 34, 0.9) !important;
            border: 1px solid var(--border-color) !important;
            color: var(--text-primary) !important;
            border-radius: 8px !important;
            padding: 0.3rem 0.5rem !important;
            font-size: 0.85rem;
        }

        /* Pagination Styles */
        .servers-pagination {
            background: linear-gradient(135deg, rgba(88, 166, 255, 0.05), rgba(165, 165, 255, 0.03));
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 1.5rem;
        }

        .pagination {
            margin-bottom: 0;
        }

        .page-link {
            background: rgba(22, 27, 34, 0.8) !important;
            border: 1px solid var(--border-color) !important;
            color: var(--text-primary) !important;
            padding: 0.6rem 1rem;
            margin: 0 0.2rem;
            border-radius: 10px !important;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .page-link:hover {
            background: rgba(88, 166, 255, 0.2) !important;
            border-color: var(--accent-blue) !important;
            color: var(--text-primary) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3);
        }

        .page-item.active .page-link {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)) !important;
            border-color: var(--accent-blue) !important;
            color: var(--text-primary) !important;
            box-shadow: 0 4px 15px rgba(88, 166, 255, 0.4);
        }

        .page-item.disabled .page-link {
            background: rgba(22, 27, 34, 0.4) !important;
            border-color: rgba(48, 54, 61, 0.5) !important;
            color: var(--text-secondary) !important;
            opacity: 0.6;
        }

        .pagination-jump input {
            background: rgba(22, 27, 34, 0.9) !important;
            border: 1px solid var(--border-color) !important;
            color: var(--text-primary) !important;
            border-radius: 8px !important;
        }

        .pagination-jump input:focus {
            border-color: var(--accent-blue) !important;
            box-shadow: 0 0 10px rgba(88, 166, 255, 0.3) !important;
        }

        .btn-outline-secondary {
            background: rgba(22, 27, 34, 0.8) !important;
            border: 1px solid var(--border-color) !important;
            color: var(--text-secondary) !important;
            border-radius: 12px !important;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-secondary:hover {
            background: rgba(108, 117, 125, 0.2) !important;
            border-color: #6c757d !important;
            color: var(--text-primary) !important;
            transform: translateY(-2px);
        }

        .btn-outline-primary {
            background: rgba(88, 166, 255, 0.1) !important;
            border: 1px solid var(--accent-blue) !important;
            color: var(--accent-blue) !important;
            border-radius: 8px !important;
            font-weight: 600;
        }

        .btn-outline-primary:hover {
            background: var(--accent-blue) !important;
            border-color: var(--accent-blue) !important;
            color: var(--text-primary) !important;
        }

        /* VIP Hero Section - BRUTAL GAMING STYLE */
        .vip-hero-section {
            position: relative;
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(88, 166, 255, 0.1));
            border: 3px solid transparent;
            border-image: linear-gradient(135deg, var(--primary-color), var(--accent-blue), #f39c12, var(--accent-green)) 1;
            border-radius: 20px;
            padding: 0;
            margin: 2rem 0;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
            animation: vip-glow 3s ease-in-out infinite alternate;
        }

        @keyframes vip-glow {
            from { box-shadow: 0 25px 80px rgba(220, 53, 69, 0.3); }
            to { box-shadow: 0 30px 100px rgba(88, 166, 255, 0.4); }
        }

        .vip-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(220, 53, 69, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(88, 166, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(165, 165, 255, 0.2) 0%, transparent 50%),
                linear-gradient(135deg, rgba(22, 27, 34, 0.95), rgba(13, 17, 23, 0.9));
            animation: vip-bg-pulse 4s ease-in-out infinite alternate;
        }

        @keyframes vip-bg-pulse {
            from { opacity: 0.8; }
            to { opacity: 1; }
        }

        .vip-hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, #f39c12, var(--primary-color), var(--accent-blue));
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 2rem;
            box-shadow: 0 8px 30px rgba(243, 156, 18, 0.5);
            animation: vip-badge-glow 2s ease-in-out infinite alternate;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        @keyframes vip-badge-glow {
            from { 
                box-shadow: 0 8px 30px rgba(243, 156, 18, 0.5);
                transform: scale(1);
            }
            to { 
                box-shadow: 0 12px 40px rgba(243, 156, 18, 0.8);
                transform: scale(1.02);
            }
        }

        .vip-hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-blue), #f39c12, var(--accent-green));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            text-shadow: 0 0 50px rgba(220, 53, 69, 0.8);
            line-height: 1.1;
            animation: vip-title-glow 3s ease-in-out infinite alternate;
        }

        @keyframes vip-title-glow {
            from { filter: drop-shadow(0 0 20px rgba(220, 53, 69, 0.5)); }
            to { filter: drop-shadow(0 0 30px rgba(88, 166, 255, 0.7)); }
        }

        .vip-hero-subtitle {
            font-size: 1.4rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            font-weight: 500;
            line-height: 1.6;
        }

        .vip-hero-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .vip-hero-feature {
            background: rgba(88, 166, 255, 0.1);
            border: 2px solid var(--accent-blue);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.4s ease;
            min-width: 180px;
            position: relative;
            overflow: hidden;
        }

        .vip-hero-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.3), transparent);
            transition: left 0.8s ease;
        }

        .vip-hero-feature:hover::before {
            left: 100%;
        }

        .vip-hero-feature:hover {
            background: rgba(88, 166, 255, 0.2);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(88, 166, 255, 0.4);
            border-color: var(--accent-green);
        }

        .vip-hero-feature-icon {
            font-size: 3rem;
            color: var(--accent-blue);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .vip-hero-feature:hover .vip-hero-feature-icon {
            color: var(--accent-green);
            transform: scale(1.2) rotate(10deg);
        }

        .vip-hero-feature-title {
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .vip-hero-feature-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* VIP Servers Grid */
        .vip-servers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .vip-server-card-hero {
            position: relative;
            background: var(--card-bg);
            border: 3px solid var(--accent-blue);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s ease;
            box-shadow: 0 15px 50px rgba(88, 166, 255, 0.3);
            animation: vip-card-float 6s ease-in-out infinite;
        }

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

        .vip-server-card-hero:hover {
            border-color: var(--accent-green);
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 25px 80px rgba(63, 185, 80, 0.5);
        }

        .vip-map-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: brightness(0.6) contrast(1.3) saturate(1.4);
            transition: all 0.5s ease;
        }

        .vip-server-card-hero:hover .vip-map-bg {
            filter: brightness(0.8) contrast(1.5) saturate(1.6);
            transform: scale(1.1) rotate(2deg);
        }

        .vip-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(220, 53, 69, 0.3) 0%, 
                rgba(88, 166, 255, 0.2) 50%, 
                rgba(165, 165, 255, 0.3) 100%);
            opacity: 0.8;
            transition: all 0.5s ease;
        }

        .vip-server-card-hero:hover .vip-card-overlay {
            opacity: 0.9;
        }

        .vip-premium-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #f39c12, var(--primary-color));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
            border: 2px solid rgba(255, 255, 255, 0.3);
            z-index: 10;
            animation: vip-premium-pulse 2s ease-in-out infinite;
        }

        @keyframes vip-premium-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .vip-card-content {
            position: relative;
            z-index: 5;
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 300px;
        }

        .vip-server-rank {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            box-shadow: 0 8px 25px rgba(88, 166, 255, 0.5);
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .vip-server-name-hero {
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

        .vip-server-map {
            background: rgba(88, 166, 255, 0.2);
            border: 1px solid var(--accent-blue);
            color: var(--accent-blue);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .vip-players-hero {
            margin-bottom: 1.5rem;
        }

        .vip-players-count {
            background: linear-gradient(135deg, var(--accent-green), #2ea043);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 900;
            font-size: 1rem;
            display: inline-block;
            margin-bottom: 0.5rem;
            box-shadow: 0 4px 15px rgba(63, 185, 80, 0.4);
        }

        .vip-players-bar-hero {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .vip-players-fill-hero {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
            border-radius: 4px;
            transition: width 1s ease;
            box-shadow: 0 0 15px rgba(63, 185, 80, 0.8);
        }

        .vip-server-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .vip-join-btn {
            background: linear-gradient(135deg, var(--primary-color), #c0392b);
            border: none;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
            flex: 1;
            font-size: 0.9rem;
            box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
        }

        .vip-join-btn:hover {
            background: linear-gradient(135deg, #c0392b, var(--primary-color));
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(220, 53, 69, 0.6);
            color: white;
        }

        .vip-copy-btn {
            background: rgba(88, 166, 255, 0.2);
            border: 2px solid var(--accent-blue);
            color: var(--accent-blue);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .vip-copy-btn:hover {
            background: var(--accent-blue);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(88, 166, 255, 0.5);
        }

        .vip-hero-cta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .vip-hero-btn-primary {
            background: linear-gradient(135deg, #f39c12, var(--primary-color));
            border: none;
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(243, 156, 18, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

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

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

        .vip-hero-btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-color), #f39c12);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(243, 156, 18, 0.7);
            color: white;
        }

        .vip-hero-btn-secondary {
            background: rgba(88, 166, 255, 0.1);
            border: 3px solid var(--accent-blue);
            color: var(--accent-blue);
            padding: 1.2rem 3rem;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
        }

        .vip-hero-btn-secondary:hover {
            background: var(--accent-blue);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(88, 166, 255, 0.5);
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(88, 166, 255, 0.1), rgba(165, 165, 255, 0.05));
            border: 1px solid var(--accent-blue);
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: linear-gradient(135deg, rgba(88, 166, 255, 0.2), rgba(165, 165, 255, 0.1));
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(88, 166, 255, 0.3);
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .stat-info {
            flex: 1;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--text-primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .modern-card {
                padding: 1rem;
            }
            
            .modal-body {
                padding: 1.5rem;
            }

            .servers-table thead th,
            .servers-table tbody td {
                padding: 0.4rem 0.2rem;
                font-size: 0.7rem;
            }

            .server-name {
                font-size: 0.8rem;
            }

            .server-ip {
                font-size: 0.6rem;
                padding: 0.2rem 0.4rem;
            }

            .players-bar {
                width: 60px;
                height: 4px;
            }

            .view-btn {
                padding: 0.3rem 0.6rem;
                font-size: 0.6rem;
            }

            .server-status {
                width: 20px;
                height: 20px;
                font-size: 0.7rem;
            }

            .players-count {
                font-size: 0.65rem;
                padding: 0.2rem 0.5rem;
            }

            .map-badge,
            .country-badge {
                font-size: 0.6rem;
                padding: 0.15rem 0.3rem;
            }

            /* VIP Hero Mobile */
            .vip-hero-title {
                font-size: 2.5rem;
            }

            .vip-hero-features {
                gap: 1.5rem;
            }

            .vip-hero-feature {
                min-width: 140px;
                padding: 1.5rem 1rem;
            }

            .vip-servers-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .vip-hero-cta {
                gap: 1rem;
            }

            .vip-hero-btn-primary,
            .vip-hero-btn-secondary {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        /* Boost Page Styles */
        .boost-hero-section {
            position: relative;
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(220, 53, 69, 0.1));
            border: 3px solid transparent;
            border-image: linear-gradient(135deg, #ffc107, var(--primary-color), var(--accent-blue), var(--accent-green)) 1;
            border-radius: 20px;
            padding: 0;
            margin: 2rem 0;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
            animation: boost-glow 3s ease-in-out infinite alternate;
        }

        @keyframes boost-glow {
            from { box-shadow: 0 25px 80px rgba(255, 193, 7, 0.3); }
            to { box-shadow: 0 30px 100px rgba(220, 53, 69, 0.4); }
        }

        .boost-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(88, 166, 255, 0.2) 0%, transparent 50%),
                linear-gradient(135deg, rgba(22, 27, 34, 0.95), rgba(13, 17, 23, 0.9));
            animation: boost-bg-pulse 4s ease-in-out infinite alternate;
        }

        @keyframes boost-bg-pulse {
            from { opacity: 0.8; }
            to { opacity: 1; }
        }

        .boost-hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ffc107, var(--primary-color), var(--accent-blue));
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 2rem;
            box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
            animation: boost-badge-glow 2s ease-in-out infinite alternate;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        @keyframes boost-badge-glow {
            from { 
                box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
                transform: scale(1);
            }
            to { 
                box-shadow: 0 12px 40px rgba(255, 193, 7, 0.8);
                transform: scale(1.02);
            }
        }

        .boost-hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffc107, var(--primary-color), var(--accent-blue), var(--accent-green));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            text-shadow: 0 0 50px rgba(255, 193, 7, 0.8);
            line-height: 1.1;
            animation: boost-title-glow 3s ease-in-out infinite alternate;
        }

        @keyframes boost-title-glow {
            from { filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.5)); }
            to { filter: drop-shadow(0 0 30px rgba(220, 53, 69, 0.7)); }
        }

        .boost-hero-subtitle {
            font-size: 1.4rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            font-weight: 500;
            line-height: 1.6;
        }

        .boost-hero-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .boost-hero-feature {
            background: rgba(255, 193, 7, 0.1);
            border: 2px solid #ffc107;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.4s ease;
            min-width: 180px;
            position: relative;
            overflow: hidden;
        }

        .boost-hero-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
            transition: left 0.8s ease;
        }

        .boost-hero-feature:hover::before {
            left: 100%;
        }

        .boost-hero-feature:hover {
            background: rgba(255, 193, 7, 0.2);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
            border-color: var(--primary-color);
        }

        .boost-hero-feature-icon {
            font-size: 3rem;
            color: #ffc107;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .boost-hero-feature:hover .boost-hero-feature-icon {
            color: var(--primary-color);
            transform: scale(1.2) rotate(10deg);
        }

        .boost-hero-feature-title {
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .boost-hero-feature-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .boost-hero-cta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .boost-hero-btn-primary {
            background: linear-gradient(135deg, #ffc107, var(--primary-color));
            border: none;
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(255, 193, 7, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

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

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

        .boost-hero-btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-color), #ffc107);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(255, 193, 7, 0.7);
            color: white;
        }

        .boost-hero-btn-secondary {
            background: rgba(255, 193, 7, 0.1);
            border: 3px solid #ffc107;
            color: #ffc107;
            padding: 1.2rem 3rem;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
        }

        .boost-hero-btn-secondary:hover {
            background: #ffc107;
            color: var(--text-primary);
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(255, 193, 7, 0.5);
        }

        /* Boost Pricing Cards */
        .boost-pricing-info {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(220, 53, 69, 0.03));
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 1.5rem;
        }

        .pricing-card {
            background: rgba(22, 27, 34, 0.6);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            background: rgba(22, 27, 34, 0.8);
            border-color: #ffc107;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
        }

        .pricing-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffc107, var(--primary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .pricing-info {
            flex: 1;
        }

        .pricing-title {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-cost {
            font-size: 1.2rem;
            font-weight: 900;
            color: #ffc107;
            line-height: 1;
        }

        .pricing-time {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        /* Boost Table */
        .boost-container {
            background: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            overflow-x: auto;
            overflow-y: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .boost-container:hover {
            border-color: #ffc107;
            box-shadow: 0 12px 35px rgba(255, 193, 7, 0.2);
        }

        .boost-container::-webkit-scrollbar {
            height: 8px;
        }

        .boost-container::-webkit-scrollbar-track {
            background: rgba(22, 27, 34, 0.8);
            border-radius: 4px;
        }

        .boost-container::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, #ffc107, var(--primary-color));
            border-radius: 4px;
        }

        .boost-container::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, var(--primary-color), #ffc107);
        }

        .boost-table {
            width: 100%;
            min-width: 800px;
            margin: 0;
            background: transparent !important;
            color: var(--text-primary);
        }

        .boost-table thead th {
            background: linear-gradient(135deg, #ffc107, var(--primary-color));
            color: var(--text-primary);
            padding: 0.7rem 0.5rem;
            font-weight: 600;
            text-align: center;
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.75rem;
            position: relative;
        }

        .boost-table thead th::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, var(--primary-color), #ffc107);
        }

        .boost-table tbody tr {
            background: rgba(22, 27, 34, 0.4);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .boost-table tbody tr:nth-child(even) {
            background: rgba(22, 27, 34, 0.6);
        }

        .boost-table tbody tr:hover {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(220, 53, 69, 0.05));
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(255, 193, 7, 0.2);
            border-color: #ffc107;
        }

        .boost-table tbody td {
            padding: 0.6rem 0.4rem;
            text-align: center;
            vertical-align: middle;
            border: none;
            color: var(--text-primary);
            font-size: 0.85rem;
        }

        .boost-status {
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        .boost-status.boost-active {
            background: linear-gradient(135deg, var(--accent-green), #2ea043);
            color: white;
            box-shadow: 0 2px 8px rgba(63, 185, 80, 0.3);
        }

        .boost-status.boost-inactive {
            background: rgba(108, 117, 125, 0.2);
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
        }

        .server-name-boost {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9rem;
            text-align: left;
        }

        .server-ip-boost {
            background: rgba(88, 166, 255, 0.1);
            border: 1px solid var(--accent-blue);
            color: var(--accent-blue);
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 500;
            font-family: 'Courier New', monospace;
        }

        .boost-actions {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            align-items: center;
        }

        .boost-btn {
            border: none;
            border-radius: 12px;
            padding: 0.4rem 0.8rem;
            font-size: 0.7rem;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.3rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .boost-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .boost-btn-rocket {
            background: linear-gradient(135deg, #6f42c1, #5a32a3);
            color: white;
        }

        .boost-btn-crown {
            background: linear-gradient(135deg, #ffc107, #e0a800);
            color: white;
        }

        .boost-btn-gem {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
        }

        .boost-btn-trophy {
            background: linear-gradient(135deg, var(--primary-color), #c0392b);
            color: white;
        }

        /* Credits Display */
        .credits-form {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(220, 53, 69, 0.05));
            border: 2px solid #ffc107;
            border-radius: 16px;
            padding: 1.5rem;
        }

        .credits-display {
            background: rgba(22, 27, 34, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .credits-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffc107, var(--primary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            animation: credits-pulse 2s ease-in-out infinite;
        }

        @keyframes credits-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .credits-amount {
            font-size: 1.8rem;
            font-weight: 900;
            color: #ffc107;
            line-height: 1;
        }

        .credits-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Advertising Form */
        .advertising-form {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
            border: 2px solid #ffc107;
            border-radius: 16px;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .advertising-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="adgrid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,193,7,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23adgrid)"/></svg>');
            opacity: 0.3;
        }

        .advertising-form > * {
            position: relative;
            z-index: 2;
        }

        .info-card {
            background: rgba(22, 27, 34, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffc107, #ff9800);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            animation: ad-pulse 2s ease-in-out infinite;
        }

        @keyframes ad-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .info-content {
            flex: 1;
        }

        .info-cost {
            font-size: 1.5rem;
            font-weight: 900;
            color: #ffc107;
            line-height: 1;
        }

        .info-time {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-warning {
            background: linear-gradient(135deg, #ffc107, #ff9800) !important;
            border: none !important;
            border-radius: 25px !important;
            padding: 1rem 2rem !important;
            font-weight: 700 !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
        }

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

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

        .btn-warning:hover {
            background: linear-gradient(135deg, #ff9800, #ffc107) !important;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5) !important;
            color: white !important;
        }

        .alert-warning {
            background: rgba(255, 193, 7, 0.1) !important;
            border: 1px solid rgba(255, 193, 7, 0.3) !important;
            color: var(--text-primary) !important;
            border-radius: 8px !important;
            font-size: 0.85rem;
        }

        /* Advertisement Image Size Control */
        .modern-card .text-center img,
        .modern-card .text-center a img {
            max-width: 100% !important;
            max-height: 250px !important;
            width: auto !important;
            height: auto !important;
            object-fit: contain !important;
            display: block !important;
            margin: 0 auto !important;
        }

        /* Allow standard banner sizes to display normally */
        .modern-card .text-center a[href*="advert"] img {
            max-width: 100% !important;
            max-height: 250px !important;
        }

        /* Hover effect for ads */
        .img-hover {
            display: block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
        }

        .img-hover:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
        }

        .img-hover img {
            transition: opacity 0.3s ease;
        }

        .img-hover:hover img {
            opacity: 0.9;
        }