:root {
            --primary-dark: #1a365d;
            --primary-medium: #2d4a8a;
            --primary-light: #4f83cc;
            --accent-warm: #d4a017;
            --accent-cool: #38b2ac;
            --neutral-light: #f8f9fa;
            --neutral-dark: #212529;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            color: var(--primary-dark);
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -12px;
            width: 70px;
            height: 4px;
            background: var(--accent-warm);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-warm) !important;
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-medium), var(--primary-light));
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background: linear-gradient(to right, var(--primary-dark), var(--primary-medium));
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .process-step {
            position: relative;
            padding-left: 70px;
            margin-bottom: 40px;
        }
        .process-step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 50px;
            height: 50px;
            background: var(--accent-warm);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
        }
        footer {
            background-color: var(--primary-dark);
            color: #ddd;
            padding-top: 60px;
        }
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 6px;
            margin: 5px;
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s;
        }
        .flink:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-3px);
        }
        .friendlink-section {
            background: rgba(0, 0, 0, 0.05);
            padding: 40px 0;
            border-top: 1px solid #dee2e6;
        }
        .game-card-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .team-member-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
