:root {
            --flixy-primary: #6f42c1;
            --flixy-secondary: #20c997;
            --flixy-dark: #212529;
            --flixy-light: #f8f9fa;
            --flixy-gradient: linear-gradient(135deg, #6f42c1 0%, #20c997 100%);
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--flixy-dark);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: var(--flixy-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: var(--flixy-gradient), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-blend-mode: overlay;
            background-size: cover;
            background-position: center;
            color: white;
            padding: 10rem 0;
            margin-top: 76px;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .bg-light-alt {
            background-color: #f8fafc;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--flixy-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
            transition: transform 0.3s ease;
        }
        .feature-card:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
        }
        .game-card {
            border-radius: 15px;
            overflow: hidden;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(111, 66, 193, 0.15);
        }
        .game-card img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .btn-flixy {
            background: var(--flixy-gradient);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-flixy:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(111, 66, 193, 0.3);
        }
        .footer {
            background-color: var(--flixy-dark);
            color: #adb5bd;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #dee2e6;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer a:hover {
            color: var(--flixy-secondary);
        }
        .friendlink .flink {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            margin: 0.3rem;
            background-color: white;
            border-radius: 8px;
            border: 1px solid #dee2e6;
            color: #495057;
            font-weight: 500;
            transition: all 0.2s;
            text-decoration: none;
        }
        .friendlink .flink:hover {
            border-color: var(--flixy-primary);
            color: var(--flixy-primary);
            transform: translateY(-2px);
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--flixy-gradient);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.2rem;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--flixy-primary);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--flixy-primary);
        }
        .contact-info li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            width: 40px;
            height: 40px;
            background: var(--flixy-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--flixy-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 0.3rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(111, 66, 193, 0.1);
            color: var(--flixy-primary);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
