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

        :root {
            --primary: #4c9aff;
            --primary-dark: #2e7ee6;
            --secondary: #f0f8ff;
            --accent: #00d4ff;
            --success: #00d4aa;
            --danger: #ff4757;
            --warning: #ffa502;
            --dark: #0a0a0a;
            --dark-light: #1a1a1a;
            --dark-medium: #2a2a2a;
            --gray: #666666;
            --gray-light: #888888;
            --gray-dark: #333333;
            --white: #ffffff;
            --text-light: #cccccc;
            --border: rgba(255, 255, 255, 0.1);
            --glow: 0 0 20px rgba(76, 154, 255, 0.3);
            --glow-blue: 0 0 20px rgba(116, 185, 255, 0.3);
            --glow-purple: 0 0 20px rgba(162, 155, 254, 0.3);
        }

        body {
            font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark);
            color: var(--text-light);
            min-height: 100vh;
            overflow-x: hidden;
            font-weight: 400;
        }

        .dashboard-container {
            display: grid;
            grid-template-columns: 350px 1fr;
            min-height: 100vh;
            max-width: 100%;
            margin: 0;
            padding: 0;
        }

        /* Sidebar */
        .sidebar {
            background: var(--dark-light);
            border-right: 1px solid var(--border);
            padding: 2rem 2rem;
            position: fixed;
            height: 100vh;
            width: 350px;
            z-index: 100;
            overflow-y: auto;
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(16px);
        }

        .sidebar-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
        }

        .sidebar-header h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            font-weight: bold;
        }

        .sidebar-subtitle {
            color: var(--gray-light);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .sidebar-nav {
            list-style: none;
        }

        .sidebar-nav li {
            margin-bottom: 0.5rem;
        }

        .sidebar-nav a {
            display: flex;
            align-items: center;
            padding: 1.2rem 1.5rem;
            color: var(--gray-light);
            text-decoration: none;
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1.1rem;
        }

        .sidebar-nav a:hover,
        .sidebar-nav a.active {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            transform: translateX(5px);
        }

        .sidebar-nav i {
            margin-right: 1rem;
            font-size: 1.3rem;
            width: 25px;
        }

        /* Main Content */
        .main-content {
            margin-left: 350px;
            padding: 2rem 4rem;
            background: var(--dark);
            min-height: 100vh;
            width: calc(100vw - 350px);
        }

        .header {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(16px);
            padding: 2rem 3rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }

        .header h1 {
            font-size: 2.5rem;
            color: var(--white);
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .header-subtitle {
            color: var(--gray-light);
            font-size: 1.1rem;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        /* Wallet Widget */
        .wallet-widget {
            background: linear-gradient(135deg, var(--success), var(--accent));
            border-radius: 15px;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 212, 170, 0.3);
        }

        .wallet-widget:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
        }

        .wallet-icon {
            font-size: 1.5rem;
            color: white;
        }

        .wallet-info {
            display: flex;
            flex-direction: column;
        }

        .wallet-balance {
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
        }

        .wallet-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .user-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            box-shadow: var(--glow);
            border: 3px solid rgba(255, 255, 255, 0.1);
        }

        .user-details h3 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 0.25rem;
        }

        .user-details small {
            color: var(--gray-light);
            font-size: 0.9rem;
        }

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

        .stat-card {
            background: linear-gradient(145deg, var(--dark-light), var(--dark-medium));
            border: 1px solid var(--border);
            border-radius: 25px;
            padding: 3rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .stat-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
        }

        .stat-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .stat-icon {
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.8;
        }

        .stat-trend {
            font-size: 0.9rem;
            color: var(--success);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .stat-trend.down {
            color: var(--danger);
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--gray-light);
            font-size: 1rem;
            font-weight: 500;
        }

        .stat-description {
            color: var(--gray-light);
            font-size: 0.85rem;
            margin-top: 0.5rem;
            opacity: 0.8;
        }

        /* Game Selection */
        .game-selection {
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .game-card {
            background: linear-gradient(145deg, var(--dark-light), var(--dark-medium));
            border: 2px solid var(--border);
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .game-card.cs2 {
            border-color: var(--cs2-color);
        }

        .game-card.fivem {
            border-color: var(--fivem-color);
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(76, 154, 255, 0.15), transparent);
            transition: left 0.6s;
        }

        .game-card.fivem::before {
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
        }

        .game-card:hover::before,
        .game-card.active::before {
            left: 100%;
        }

        .game-card:hover,
        .game-card.active {
            transform: translateY(-15px) scale(1.02);
        }

        .game-card.cs2:hover,
        .game-card.cs2.active {
            box-shadow: 0 20px 40px rgba(76, 154, 255, 0.3);
        }

        .game-card.fivem:hover,
        .game-card.fivem.active {
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
        }

        .game-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .game-card.fivem .game-icon {
            color: var(--secondary);
        }

        .game-name {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .game-description {
            color: var(--gray-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 1rem;
        }

        .game-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .game-features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            color: var(--gray-light);
        }

        .game-features i {
            color: var(--success);
            margin-right: 1rem;
            width: 20px;
        }

        .game-status {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2rem;
        }

        .status-badge {
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .status-active {
            background: linear-gradient(135deg, var(--success), #00e6b8);
            color: white;
            box-shadow: 0 5px 15px rgba(0, 230, 184, 0.3);
        }

        .status-inactive {
            background: linear-gradient(135deg, var(--danger), #ff6b6b);
            color: white;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        }

        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .content-section {
            background: linear-gradient(145deg, var(--dark-light), var(--dark-medium));
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow);
            border-color: var(--primary);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .section-header h3 {
            font-size: 1.5rem;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .section-icon {
            font-size: 1.3rem;
            color: var(--primary);
        }

        /* Activity Feed */
        .activity-item {
            display: flex;
            align-items: center;
            padding: 1.5rem;
            margin-bottom: 1rem;
            background: var(--dark);
            border-radius: 15px;
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .activity-item:hover {
            transform: translateX(5px);
            background: var(--dark-light);
        }

        .activity-icon {
            font-size: 1.8rem;
            margin-right: 1.5rem;
            color: var(--primary);
            width: 40px;
            text-align: center;
        }

        .activity-content {
            flex: 1;
        }

        .activity-text {
            color: var(--white);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .activity-description {
            color: var(--gray-light);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .activity-time {
            color: var(--gray-light);
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Quick Actions */
        .action-button {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 1.5rem;
            background: var(--dark);
            border: 1px solid var(--border);
            border-radius: 15px;
            color: var(--white);
            text-decoration: none;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .action-button:hover::before {
            left: 100%;
        }

        .action-button:hover {
            background: var(--dark-light);
            border-color: var(--primary);
            transform: translateX(10px);
            box-shadow: var(--glow);
        }

        .action-button i {
            font-size: 1.8rem;
            margin-right: 1.5rem;
            color: var(--primary);
            width: 30px;
        }

        .action-content h4 {
            color: var(--white);
            margin-bottom: 0.25rem;
            font-size: 1.1rem;
        }

        .action-content small {
            color: var(--gray-light);
            font-size: 0.85rem;
        }

        /* Performance Chart */
        .chart-container {
            position: relative;
            height: 300px;
            margin-top: 1rem;
        }

        /* News Feed */
        .news-item {
            display: flex;
            align-items: flex-start;
            padding: 1.5rem;
            margin-bottom: 1rem;
            background: var(--dark);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .news-item:hover {
            background: var(--dark-light);
            transform: translateX(5px);
            border-color: var(--primary);
        }

        .news-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: var(--accent);
            width: 25px;
        }

        .news-content {
            flex: 1;
        }

        .news-title {
            color: var(--white);
            font-weight: bold;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .news-excerpt {
            color: var(--gray-light);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 0.5rem;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--gray-light);
        }

        .news-date {
            color: var(--primary);
        }

        /* Announcements */
        .announcement-item {
            display: flex;
            align-items: flex-start;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            border-left: 4px solid;
            position: relative;
            overflow: hidden;
        }

        .announcement-item.info {
            background: rgba(116, 185, 255, 0.1);
            border-left-color: var(--info);
        }

        .announcement-item.success {
            background: rgba(0, 212, 170, 0.1);
            border-left-color: var(--success);
        }

        .announcement-item.warning {
            background: rgba(255, 165, 2, 0.1);
            border-left-color: var(--warning);
        }

        .announcement-item.danger {
            background: rgba(255, 71, 87, 0.1);
            border-left-color: var(--danger);
        }

        .announcement-item:hover {
            transform: translateX(5px);
        }

        .announcement-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            width: 25px;
            flex-shrink: 0;
        }

        .announcement-icon.info {
            color: var(--info);
        }

        .announcement-icon.success {
            color: var(--success);
        }

        .announcement-icon.warning {
            color: var(--warning);
        }

        .announcement-icon.danger {
            color: var(--danger);
        }

        .announcement-content {
            flex: 1;
        }

        .announcement-title {
            color: var(--white);
            font-weight: bold;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .announcement-text {
            color: var(--gray-light);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 0.5rem;
        }

        .announcement-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--gray-light);
        }

        .announcement-date {
            color: var(--primary);
        }

        .priority-badge {
            padding: 0.25rem 0.5rem;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        .priority-critical {
            background: var(--danger);
            color: white;
        }

        .priority-high {
            background: var(--warning);
            color: white;
        }

        .priority-normal {
            background: var(--info);
            color: white;
        }

        .priority-low {
            background: var(--gray);
            color: white;
        }

        /* Buttons */
        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            box-shadow: var(--glow);
        }

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

        .btn-danger {
            background: linear-gradient(135deg, var(--danger), #ff6b6b);
            color: white;
        }

        .btn-success {
            background: linear-gradient(135deg, var(--success), #00e6b8);
            color: white;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }

        .btn-full {
            width: 100%;
            justify-content: center;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1002;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: none;
            border-radius: 12px;
            padding: 12px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(76, 154, 255, 0.3);
        }

        /* System Status */
        .system-status {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .status-item {
            background: var(--dark);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .status-item:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .status-value {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .status-value.good {
            color: var(--success);
        }

        .status-value.warning {
            color: var(--warning);
        }

        .status-value.danger {
            color: var(--danger);
        }

        .status-label {
            color: var(--gray-light);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .dashboard-container {
                grid-template-columns: 300px 1fr;
            }
            
            .sidebar {
                width: 300px;
            }
            
            .main-content {
                margin-left: 300px;
                padding: 2rem;
                width: calc(100vw - 300px);
            }
            
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .dashboard-container {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                width: 280px;
                position: fixed;
                z-index: 1001;
            }
            
            .sidebar.active {
                transform: translateX(0);
            }
            
            .main-content {
                margin-left: 0;
                padding: 1rem;
                padding-top: 80px;
                width: 100vw;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }

            .header h1 {
                font-size: 2rem;
            }
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark-light);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, var(--accent), var(--primary));
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        .animate-in {
            animation: fadeInUp 0.6s ease-out;
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Loading States */
        .loading {
            position: relative;
            overflow: hidden;
        }

        .loading::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(76, 154, 255, 0.1), transparent);
            animation: loading 1.5s infinite;
        }

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