:root {
            --primary-color: #1E201E;
            --secondary-color: #3C3D37;
            --accent-color: #FF0000;
            --accent-hover: #C7253E;
            --background-color: #121212;
            --card-background: #3C3D37;
            --text-color: #ffffff;
            --text-muted: #cccccc;
            --success-color: #00ff88;
            --warning-color: #ff9500;
            --error-color: #ff4757;
            
            --radius-sm: clamp(6px, 1vw, 8px);
            --radius-md: clamp(8px, 1.5vw, 12px);
            --radius-lg: clamp(12px, 2vw, 16px);
            --radius-xl: clamp(16px, 2.5vw, 20px);
            --radius-2xl: clamp(20px, 3vw, 24px);
            
            --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
            --space-sm: clamp(0.5rem, 1vw, 0.75rem);
            --space-md: clamp(0.75rem, 1.5vw, 1rem);
            --space-lg: clamp(1rem, 2vw, 1.5rem);
            --space-xl: clamp(1.5rem, 3vw, 2rem);
            --space-2xl: clamp(2rem, 4vw, 3rem);
            --space-3xl: clamp(2.5rem, 5vw, 4rem);
            
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
            --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.25);
            --shadow-glow: 0 0 20px rgba(255, 0, 0, 0.3);
            --shadow-glow-intense: 0 0 40px rgba(255, 0, 0, 0.5);
            
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            
            --gradient-primary: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
            --gradient-secondary: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
            --gradient-rainbow: linear-gradient(45deg, #ff0000, #ff9500, #ffff00, #00ff00, #0099ff, #6600ff);
            
            --sidebar-width: clamp(260px, 25vw, 300px);
            --footer-height: clamp(200px, 25vh, 280px);
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 60px;
            font-size: clamp(14px, 2vw, 16px);
        }

        body {
            font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: var(--background-color);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            font-size: clamp(14px, 2vw, 16px);
        }

        /* Responsive Images */
        img {
            max-width: 100%;
            height: auto;
            display: block;
            loading: lazy;
            decoding: async;
        }

        /* Focus Management */
        *:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }

        /* Skip Link for Accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--accent-color);
            color: white;
            padding: 8px;
            text-decoration: none;
            border-radius: 4px;
            z-index: 10000;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 6px;
        }

        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--background-color);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 1;
            visibility: visible;
            transition: all 0.5s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-spinner {
            width: clamp(40px, 8vw, 60px);
            height: clamp(40px, 8vw, 60px);
            border: 4px solid rgba(255, 0, 0, 0.3);
            border-top: 4px solid var(--accent-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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

        .background-effects {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            pointer-events: none;
        }

        .background-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(199, 37, 62, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(200, 0, 54, 0.03) 0%, transparent 50%);
            animation: backgroundShift 20s ease-in-out infinite alternate;
        }

        @keyframes backgroundShift {
            0% { transform: scale(1) rotate(0deg); }
            100% { transform: scale(1.1) rotate(2deg); }
        }

        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: clamp(2px, 0.5vw, 4px);
            height: clamp(2px, 0.5vw, 4px);
            background: var(--accent-color);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; animation-duration: 25s; }
        .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 5s; animation-duration: 30s; }
        .particle:nth-child(3) { top: 80%; left: 40%; animation-delay: 10s; animation-duration: 22s; }
        .particle:nth-child(4) { top: 40%; left: 70%; animation-delay: 15s; animation-duration: 28s; }
        .particle:nth-child(5) { top: 10%; left: 60%; animation-delay: 20s; animation-duration: 26s; }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) translateX(0px); 
                opacity: 0.1; 
            }
            25% { 
                transform: translateY(-20px) translateX(10px); 
                opacity: 0.3; 
            }
            50% { 
                transform: translateY(-40px) translateX(-5px); 
                opacity: 0.5; 
            }
            75% { 
                transform: translateY(-20px) translateX(-10px); 
                opacity: 0.3; 
            }
        }

        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: var(--gradient-primary);
            z-index: 9999;
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .menu-toggle {
            position: fixed;
            top: var(--space-lg);
            right: var(--space-lg);
            z-index: 1001;
            width: clamp(45px, 8vw, 50px);
            height: clamp(45px, 8vw, 50px);
            background: var(--gradient-primary);
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }

        .menu-toggle:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-glow);
        }

        .menu-toggle:active {
            transform: scale(0.95);
        }

        .burger-line {
            width: clamp(16px, 3vw, 20px);
            height: 2px;
            background: var(--text-color);
            transition: var(--transition);
            border-radius: 2px;
        }

        .menu-toggle.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .container {
            display: flex;
            min-height: 100vh;
            position: relative;
        }

        .sidebar {
            width: var(--sidebar-width);
            background: var(--gradient-secondary);
            backdrop-filter: blur(20px);
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            z-index: 1001;
            overflow-y: auto;
            transition: var(--transition);
            box-shadow: var(--shadow-lg);
        }

        .sidebar::-webkit-scrollbar {
            width: 6px;
        }

        .sidebar::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
        }

        .sidebar::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 3px;
        }

        .logo-section {
            padding: var(--space-xl);
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-md);
        }

        .logo-img {
            width: clamp(270px, 10vw, 270px);
            height: clamp(60px, 10vw, 80px);
            border-radius: var(--radius-lg);
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .logo-img:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: var(--shadow-glow);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .logo-main {
            font-family: 'Orbitron', monospace;
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            font-weight: 900;
            color: var(--accent-color);
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
            letter-spacing: 2px;
            animation: logoGlow 3s ease-in-out infinite alternate;
        }

        @keyframes logoGlow {
            0% { text-shadow: 0 0 10px rgba(255, 0, 0, 0.5); }
            100% { text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 30px rgba(255, 0, 0, 0.6); }
        }

        .logo-sub {
            font-size: clamp(0.625rem, 1.5vw, 0.75rem);
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: var(--space-xs);
        }

        .nav-menu {
            padding: var(--space-xl) var(--space-md);
        }

        .nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            padding: var(--space-md);
            color: var(--text-color);
            text-decoration: none;
            border-radius: var(--radius-lg);
            transition: var(--transition);
            font-weight: 500;
            position: relative;
            overflow: hidden;
            font-size: clamp(0.875rem, 2vw, 1rem);
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .nav-link:hover::before {
            left: 0;
        }

        .nav-link:hover {
            transform: translateX(8px);
            color: var(--accent-color);
            box-shadow: var(--shadow-md);
        }

        .nav-link.active {
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent-color);
            box-shadow: var(--shadow-md);
        }

        .nav-icon {
            font-size: clamp(1rem, 2vw, 1.125rem);
            z-index: 2;
            position: relative;
        }

        .nav-text {
            z-index: 2;
            position: relative;
            font-weight: 600;
        }

        .action-buttons {
            padding: var(--space-lg) var(--space-md);
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            padding: var(--space-md) var(--space-lg);
            border: none;
            border-radius: var(--radius-lg);
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(0.75rem, 1.5vw, 0.875rem);
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .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: 0.5s;
        }

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

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

        .btn-login:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .btn-register {
            background: var(--gradient-primary);
            color: var(--text-color);
        }

        .btn-register:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .live-status {
            padding: var(--space-lg) var(--space-md);
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .status-item {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

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

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

        .status-text {
            font-size: clamp(0.625rem, 1.5vw, 0.75rem);
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .main-content {
            flex: 1;
            margin-left: var(--sidebar-width);
            min-height: 100vh;
            padding-bottom: var(--footer-height);
        }

        .hero-section {
            min-height: clamp(10vh, 30vh, 30vh);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0a0a 0%, var(--background-color) 100%);
            padding: var(--space-xl);
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(199, 37, 62, 0.1) 0%, transparent 50%);
            animation: heroGradient 8s ease-in-out infinite alternate;
        }

        @keyframes heroGradient {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            position: relative;
            max-width: 900px;
            padding: var(--space-xl);
            animation: fadeInUp 1s ease-out;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-sm) var(--space-lg);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 0, 0, 0.3);
            border-radius: 50px;
            color: var(--text-color);
            font-size: clamp(0.75rem, 1.5vw, 0.875rem);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: var(--space-xl);
            animation: badgeFloat 3s ease-in-out infinite alternate;
        }

        @keyframes badgeFloat {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-5px); }
        }

        .hero-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: var(--space-xl);
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        }

        .title-line {
            display: block;
        }

        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite alternate;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        .hero-description {
            font-size: clamp(1rem, 2.5vw, 1.125rem);
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: var(--space-2xl);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-actions {
            display: flex;
            gap: var(--space-lg);
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-hero {
            padding: var(--space-lg) var(--space-2xl);
            font-size: clamp(1rem, 2vw, 1.125rem);
            border-radius: var(--radius-xl);
            animation: buttonPulse 2s ease-in-out infinite alternate;
            min-width: clamp(140px, 30vw, 200px);
        }

        @keyframes buttonPulse {
            0% { box-shadow: var(--shadow-lg); }
            100% { box-shadow: var(--shadow-glow); }
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--text-color);
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-glow-intense);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-color);
            border: 2px solid var(--accent-color);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: var(--shadow-glow);
        }

        .stats-dashboard {
            padding: var(--space-2xl) var(--space-lg);
            background: var(--gradient-secondary);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dashboard-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-2xl);
            flex-wrap: wrap;
            gap: var(--space-lg);
        }

        .dashboard-title {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            font-weight: 700;
            color: var(--text-color);
        }

        .refresh-indicator {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-sm) var(--space-md);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: var(--text-muted);
            font-size: clamp(0.75rem, 1.5vw, 0.875rem);
        }

        .refresh-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--success-color);
            animation: pulse 1.5s infinite;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 45vw, 300px), 1fr));
            gap: var(--space-lg);
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            padding: var(--space-xl);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            opacity: 0;
            transition: var(--transition);
        }

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

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-glow);
            border-color: rgba(255, 0, 0, 0.3);
        }

        .stat-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: var(--space-lg);
        }

        .stat-icon {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
        }

        .stat-label {
            font-size: clamp(0.75rem, 1.5vw, 0.875rem);
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .stat-value {
            display: flex;
            align-items: baseline;
            gap: var(--space-sm);
            margin-bottom: var(--space-lg);
            flex-wrap: wrap;
        }

        .currency {
            font-size: clamp(1rem, 2vw, 1.125rem);
            color: var(--text-muted);
            font-weight: 500;
        }

        .amount {
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 900;
            color: var(--text-color);
            text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
        }

        .suffix {
            font-size: clamp(0.875rem, 1.5vw, 1rem);
            color: var(--text-muted);
            font-weight: 500;
        }

        .stat-trend {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            font-size: clamp(0.75rem, 1.5vw, 0.875rem);
            color: var(--accent-color);
            font-weight: 600;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: var(--space-2xl) var(--space-lg);
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-2xl);
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-sm) var(--space-lg);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 0, 0, 0.2);
            border-radius: 50px;
            color: var(--text-muted);
            font-size: clamp(0.75rem, 1.5vw, 0.875rem);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: var(--space-lg);
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-color);
            animation: pulse 2s infinite;
        }

        .section-title {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 800;
            color: var(--text-color);
            margin-bottom: var(--space-lg);
            line-height: 1.2;
        }

        .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.125rem);
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
        }

        .about-section {
            background: var(--gradient-secondary);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-2xl);
            align-items: start;
        }

        .about-text {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            padding: var(--space-xl);
        }

        .about-description {
            font-size: clamp(1rem, 2.5vw, 1.125rem);
            line-height: 1.7;
            color: var(--text-color);
            margin-bottom: var(--space-2xl);
        }

        .about-description strong {
            color: var(--accent-color);
            font-weight: 700;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(100px, 25vw, 120px), 1fr));
            gap: var(--space-lg);
        }

        .about-stat {
            text-align: center;
            padding: var(--space-lg);
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-lg);
            transition: var(--transition);
        }

        .about-stat:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
        }

        .stat-number {
            display: block;
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            font-weight: 900;
            color: var(--accent-color);
            margin-bottom: var(--space-sm);
        }

        .about-stat .stat-label {
            font-size: clamp(0.75rem, 1.5vw, 0.875rem);
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 45vw, 280px), 1fr));
            gap: var(--space-xl);
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            padding: var(--space-xl);
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-glow);
            border-color: rgba(255, 0, 0, 0.3);
        }

        .feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: clamp(60px, 12vw, 80px);
            height: clamp(60px, 12vw, 80px);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            margin-bottom: var(--space-lg);
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

        .feature-title {
            font-size: clamp(1.125rem, 2.5vw, 1.25rem);
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: var(--space-md);
        }

        .feature-description {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: var(--space-lg);
            font-size: clamp(0.875rem, 2vw, 1rem);
        }

        .feature-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            color: var(--accent-color);
            font-weight: 600;
            font-size: clamp(0.75rem, 1.5vw, 0.875rem);
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-link {
            color: var(--text-color);
        }

        .games-section {
            background: var(--background-color);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 45vw, 320px), 1fr));
            gap: var(--space-xl);
        }

        .game-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-glow);
            border-color: rgba(255, 0, 0, 0.5);
        }

        .game-badge {
            position: absolute;
            top: var(--space-md);
            left: var(--space-md);
            padding: var(--space-sm) var(--space-md);
            background: var(--gradient-primary);
            color: var(--text-color);
            font-size: clamp(0.625rem, 1.5vw, 0.75rem);
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 50px;
            z-index: 3;
        }

        .game-image {
            position: relative;
            height: clamp(350px, 50vw, 350px);
            overflow: hidden;
            background: var(--gradient-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .game-info {
            padding: var(--space-xl);
        }

        .game-title {
            font-size: clamp(1.125rem, 2.5vw, 1.25rem);
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: var(--space-sm);
        }

        .game-provider {
            font-size: clamp(0.75rem, 1.5vw, 0.875rem);
            color: var(--text-muted);
            margin-bottom: var(--space-lg);
            text-transform: uppercase;
        }

        .game-stats {
            margin-bottom: var(--space-lg);
        }

        .stat {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: var(--space-md);
        }

        .rtp-bar {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            flex: 1;
            margin-left: var(--space-lg);
        }

        .rtp-fill {
            height: 6px;
            background: var(--gradient-primary);
            border-radius: 3px;
            transition: width 2s ease-out;
            flex: 1;
        }

        .rtp-value {
            font-size: clamp(0.75rem, 1.5vw, 0.875rem);
            color: var(--accent-color);
            font-weight: 700;
            min-width: 35px;
        }

        .game-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            width: 100%;
            padding: var(--space-md) var(--space-lg);
            background: var(--gradient-primary);
            color: var(--text-color);
            text-decoration: none;
            border-radius: var(--radius-lg);
            font-weight: 700;
            font-size: clamp(0.75rem, 1.5vw, 0.875rem);
            text-transform: uppercase;
            transition: var(--transition);
        }

        .game-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .promotions-section {
            background: var(--gradient-secondary);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .promos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(300px, 45vw, 350px), 1fr));
            gap: var(--space-xl);
        }

        .promo-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            padding: var(--space-xl);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .promo-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-glow);
            border-color: rgba(255, 0, 0, 0.5);
        }

        .promo-badge {
            position: absolute;
            top: var(--space-lg);
            right: var(--space-lg);
            padding: var(--space-sm) var(--space-md);
            background: var(--gradient-primary);
            color: var(--text-color);
            font-size: clamp(0.625rem, 1.5vw, 0.75rem);
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 50px;
        }

        .promo-title {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: var(--space-md);
        }

        .promo-amount {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2rem, 6vw, 3rem);
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: var(--space-lg);
        }

        .promo-description {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: var(--space-lg);
            font-size: clamp(0.875rem, 2vw, 1rem);
        }

        .promo-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            width: 100%;
            padding: var(--space-lg);
            background: var(--gradient-primary);
            color: var(--text-color);
            text-decoration: none;
            border-radius: var(--radius-lg);
            font-weight: 700;
            text-transform: uppercase;
            transition: var(--transition);
            font-size: clamp(0.875rem, 2vw, 1rem);
        }

        .promo-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .support-section {
            background: var(--background-color);
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 45vw, 300px), 1fr));
            gap: var(--space-xl);
        }

        .support-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            padding: var(--space-xl);
            transition: var(--transition);
            cursor: pointer;
            text-align: center;
        }

        .support-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-glow);
        }

        .support-icon {
            margin-bottom: var(--space-lg);
        }

        .support-icon img {
            border-radius: var(--radius-lg);
            width: clamp(50px, 10vw, 60px);
            height: clamp(50px, 10vw, 60px);
        }

        .support-title {
            font-size: clamp(1.125rem, 2.5vw, 1.25rem);
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: var(--space-sm);
        }

        .support-description {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: var(--space-lg);
            font-size: clamp(0.875rem, 2vw, 1rem);
        }

        .support-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            width: 100%;
            padding: var(--space-md) var(--space-lg);
            background: var(--gradient-primary);
            color: var(--text-color);
            text-decoration: none;
            border-radius: var(--radius-lg);
            font-weight: 700;
            text-transform: uppercase;
            transition: var(--transition);
            font-size: clamp(0.75rem, 1.5vw, 0.875rem);
        }

        .support-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: var(--footer-height);
            background: var(--gradient-secondary);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: var(--space-lg);
            text-align: center;
            z-index: 999;
            overflow-y: auto;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            scrollbar-width: none; 
            -ms-overflow-style: none; 
        }

        .footer::-webkit-scrollbar {
            display: none;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-left: var(--sidebar-width);
            padding-left: var(--space-lg);
        }

        .footer-main {
            margin-bottom: var(--space-lg);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-md);
            margin-bottom: var(--space-md);
        }

        .footer-brand {
            font-family: 'Orbitron', monospace;
            font-size: clamp(0.875rem, 1.8vw + 0.3rem, 1.125rem);
            font-weight: 900;
            color: var(--accent-color);
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
        }

        .footer-description {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: var(--space-md);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-size: clamp(0.75rem, 1.2vw + 0.15rem, 0.875rem);
        }

        .footer-bottom {
            padding-top: var(--space-md);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-copyright {
            color: var(--text-muted);
            font-size: clamp(0.625rem, 1vw + 0.1rem, 0.75rem);
            line-height: 1.5;
        }

        .footer-copyright p {
            margin-bottom: var(--space-xs);
        }

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

        @media (max-width: 1200px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 1024px) {
            .sidebar {
                transform: translateX(-100%);
            }
            
            .sidebar.active {
                transform: translateX(0);
            }
            
            .main-content {
                margin-left: 0;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
                gap: var(--space-md);
            }
            
            .btn-hero {
                width: 100%;
                max-width: none;
            }
            
            .footer-content {
                margin-left: 0;
                padding-left: 0;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            :root {
                --footer-height: clamp(240px, 35vh, 320px);
            }
            
            .stats-grid,
            .features-grid,
            .games-grid,
            .promos-grid,
            .support-grid {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            
            .dashboard-header {
                flex-direction: column;
                text-align: center;
                gap: var(--space-md);
            }
            
            .hero-section {
                min-height: 80vh;
                padding: var(--space-lg);
            }
            
            .hero-content {
                padding: var(--space-lg);
            }
            
            .footer {
                padding: var(--space-md);
            }
        }

        @media (max-width: 480px) {
            :root {
                --footer-height: clamp(260px, 40vh, 350px);
            }
            
            .section-container {
                padding: var(--space-xl) var(--space-md);
            }
            
            .stat-card,
            .feature-card,
            .game-card,
            .promo-card,
            .support-card {
                padding: var(--space-lg);
            }
            
            .about-text {
                padding: var(--space-lg);
            }
            
            .hero-badge {
                padding: var(--space-sm) var(--space-md);
                font-size: 0.75rem;
                letter-spacing: 1px;
            }
            
            .hero-title {
                margin-bottom: var(--space-lg);
            }
            
            .hero-actions {
                gap: var(--space-sm);
            }
            
            .btn-hero {
                padding: var(--space-md) var(--space-lg);
                font-size: 0.875rem;
            }
            
            .footer-description {
                padding: 0 var(--space-sm);
            }
        }

        @media (max-width: 360px) {
            :root {
                --footer-height: clamp(280px, 45vh, 380px);
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-value {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .amount {
                font-size: clamp(1.25rem, 8vw, 2rem);
            }
            
            .footer-description {
                padding: 0 var(--space-md);
            }
        }

        @media (max-height: 500px) and (orientation: landscape) {
            .hero-section {
                min-height: 100vh;
                padding: var(--space-md);
            }
            
            .hero-content {
                padding: var(--space-md);
            }
            
            .hero-title {
                font-size: clamp(1.5rem, 6vw, 2.5rem);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .btn-ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: scale(0);
            animation: ripple 0.6s linear;
            pointer-events: none;
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        .keyboard-navigation *:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }

        @media print {
            .sidebar,
            .menu-toggle,
            .floating-particles,
            .background-effects,
            .footer {
                display: none;
            }
            
            .main-content {
                margin-left: 0;
                padding-bottom: 0;
            }
        }

        @media (prefers-contrast: high) {
            :root {
                --background-color: #000000;
                --text-color: #ffffff;
                --accent-color: #ffffff;
                --text-muted: #cccccc;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }