:root {
            --primary-color: #2a2d7c;
            --secondary-color: #ff6b35;
            --accent-color: #00c9b7;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,107,53,0.2) 0%, transparent 70%);
            top: 10%;
            right: 10%;
            border-radius: 50%;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border: none;
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(42,45,124,0.2);
            color: white;
        }
        .feature-badge {
            background-color: rgba(0,201,183,0.1);
            color: var(--accent-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding-top: 60px;
        }
        .flink {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
            padding: 8px 15px;
            border-radius: 5px;
            background: rgba(255,255,255,0.05);
            display: inline-block;
            margin: 3px;
            font-size: 0.9rem;
        }
        .flink:hover {
            color: var(--secondary-color);
            background: rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .contact-info i {
            color: var(--secondary-color);
            width: 24px;
            margin-right: 10px;
        }
        .game-card {
            height: 100%;
            border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        .game-card-img {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-card:hover .game-card-img {
            transform: scale(1.05);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .stats-label {
            color: var(--gray-color);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--secondary-color);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 20px;
            width: 2px;
            height: calc(100% + 10px);
            background-color: #e9ecef;
        }
        .timeline-item:last-child::after {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
