:root {
            --primary-blue: #1a3a8f;
            --accent-teal: #00c9c8;
            --dark-bg: #0d1424;
            --light-bg: #f8fafc;
            --text-dark: #2d3748;
            --text-light: #718096;
            --gradient-primary: linear-gradient(135deg, #1a3a8f 0%, #00c9c8 100%);
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.7;
        }
        .section-padding {
            padding: 5rem 0;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 0;
            }
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        .btn-primary {
            background: var(--gradient-primary);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(26, 58, 143, 0.2);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(26, 58, 143, 0.3);
        }
        .navbar {
            background-color: rgba(13, 20, 36, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.3s;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            color: #e2e8f0 !important;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-teal) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 20, 36, 0.9), rgba(13, 20, 36, 0.95)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: var(--accent-teal);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
            top: 20%;
            left: 10%;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--primary-blue);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.1;
            bottom: 20%;
            right: 10%;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
            transition: transform 0.3s;
        }
        .feature-card:hover .feature-icon {
            transform: rotateY(180deg);
        }
        .card-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .game-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 2rem;
            height: 300px;
        }
        .game-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .game-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            padding: 2rem;
            color: white;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.4s;
        }
        .game-card:hover .game-card-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        .team-member:hover .team-img {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        .contact-form .form-control {
            border-radius: 10px;
            padding: 0.8rem 1.2rem;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            transition: all 0.3s;
        }
        .contact-form .form-control:focus {
            box-shadow: 0 0 0 3px rgba(0, 201, 200, 0.2);
            border-color: var(--accent-teal);
            background: white;
        }
        footer {
            background-color: var(--dark-bg);
            color: #cbd5e0;
            padding-top: 4rem;
        }
        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: var(--accent-teal);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: #a0aec0;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: var(--gradient-primary);
            color: white;
            transform: translateY(-3px);
        }
        .friendlink-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .flink {
            background: white;
            border-radius: 10px;
            padding: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            color: var(--primary-blue);
            border-color: var(--accent-teal);
        }
        .flink i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .stats-counter {
                font-size: 2.5rem;
            }
        }
        .bg-light-accent {
            background-color: #f0fdff;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-primary);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--accent-teal);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--accent-teal);
        }
        .marquee {
            overflow: hidden;
            white-space: nowrap;
            background: rgba(0, 0, 0, 0.02);
            padding: 1.5rem 0;
            border-radius: 15px;
            margin: 2rem 0;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }
        .marquee-content span {
            display: inline-block;
            padding: 0 2rem;
            font-weight: 600;
            color: var(--primary-blue);
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .tech-stack img {
            height: 50px;
            margin: 0.5rem 1rem;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        .tech-stack img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }
        .cursor-pointer {
            cursor: pointer;
        }
