:root {
            --primary-blue: #1a237e;
            --accent-teal: #00bcd4;
            --dark-blue: #0d1440;
            --light-gray: #f5f7fa;
            --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--dark-blue);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: white !important;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-teal) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: var(--gradient-primary);
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.05"><path d="M0 0h1200v800H0z" fill="none"/><path d="M0 400c150-100 300-200 450-200s300 100 450 100 300-100 450-100 300 100 450 200" stroke="white" fill="none"/></svg>');
            background-size: cover;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 50px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-teal);
            border-radius: 2px;
        }
        .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) !important;
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.8rem;
        }
        .tech-stack {
            background: var(--light-gray);
            padding: 80px 0;
        }
        .tech-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }
        .tech-item:hover .tech-icon {
            transform: scale(1.2);
        }
        .contact-form .form-control {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .contact-form .form-control:focus {
            border-color: var(--accent-teal);
            box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.25);
        }
        .btn-primary-custom {
            background: var(--gradient-primary);
            border: none;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        footer {
            background: var(--dark-blue);
            color: white;
            padding: 80px 0 30px;
        }
        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent-teal);
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--accent-teal);
            transform: translateY(-5px);
        }
        .friendlink {
            background: var(--light-gray);
            padding: 40px 0;
            border-top: 1px solid #e0e0e0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 10px 25px;
            margin: 10px;
            border-radius: 8px;
            text-decoration: none;
            color: var(--dark-blue);
            font-weight: 500;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        .flink:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            color: var(--primary-blue);
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
        }
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 4rem;
            color: var(--accent-teal);
            opacity: 0.2;
            font-family: Georgia, serif;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stats-counter {
                font-size: 2.2rem;
            }
        }
        .game-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 30px;
        }
        .game-card img {
            transition: transform 0.5s ease;
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .game-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .game-card:hover .game-overlay {
            transform: translateY(0);
        }
