:root {
            --primary: #2a2d7c;
            --secondary: #ff6b35;
            --accent: #00c9b7;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--dark);
        }
        .navbar {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--accent);
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent) !important;
        }
        .hero {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        .hero .lead {
            font-size: 1.3rem;
            opacity: 0.9;
        }
        .btn-primary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #e55a2b;
            border-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }
        .btn-outline-light {
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-outline-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        .service-card {
            border-top: 4px solid var(--accent);
            padding: 2rem;
        }
        .icon-wrapper {
            width: 70px;
            height: 70px;
            background: rgba(42, 45, 124, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .icon-wrapper i {
            font-size: 1.8rem;
            color: var(--primary);
        }
        .stats {
            background-color: var(--primary);
            color: white;
            padding: 4rem 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent);
        }
        .team-member img {
            border-radius: 15px 15px 0 0;
            object-fit: cover;
            height: 250px;
            width: 100%;
        }
        .team-member .card-body {
            padding: 1.5rem;
        }
        .testimonial-card {
            border-left: 4px solid var(--secondary);
            padding-left: 1.5rem;
        }
        .client-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s;
            max-height: 40px;
        }
        .client-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        footer {
            background-color: var(--dark);
            color: rgba(255, 255, 255, 0.8);
            padding-top: 4rem;
        }
        footer h5 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            margin: 0.3rem;
            transition: all 0.3s;
        }
        .flink:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        .game-showcase {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            margin-bottom: 2rem;
        }
        .game-showcase img {
            transition: transform 0.5s;
        }
        .game-showcase:hover img {
            transform: scale(1.05);
        }
        .game-showcase .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
            color: white;
            padding: 2rem;
        }
        .news-card {
            border-bottom: 2px solid #eee;
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .news-card:last-child {
            border-bottom: none;
        }
        .contact-info i {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero {
                padding: 6rem 0 4rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .sticky-nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
