:root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #0f8b8d;
            --highlight-color: #ec9a29;
            --text-light: #f1f1f1;
            --text-muted: #b0b7c3;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-light);
            background-color: var(--primary-color);
            overflow-x: hidden;
        }
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        }
        .section-padding {
            padding: 80px 0;
        }
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: radial-gradient(circle at 20% 50%, rgba(15, 139, 141, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(236, 154, 41, 0.1) 0%, transparent 50%),
                        linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(15,139,141,0.03)"/></svg>');
            background-size: cover;
            opacity: 0.6;
        }
        .navbar {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--highlight-color) !important;
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--highlight-color) !important;
        }
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--accent-color) 0%, #1a9ba0 100%);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(15, 139, 141, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(15, 139, 141, 0.4);
            color: white;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-color) 0%, #1a9ba0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .game-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(15, 139, 141, 0.5);
        }
        .team-member {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        .team-member:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .footer {
            background-color: var(--secondary-color);
            padding: 60px 0 30px;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            color: var(--text-muted);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .flink:hover {
            background: rgba(15, 139, 141, 0.3);
            color: var(--text-light);
            transform: translateY(-2px);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--highlight-color) 0%, #f5b041 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            .hero-section {
                min-height: 90vh;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
