:root {
            --ttwo-primary: #1a1a2e;
            --ttwo-secondary: #16213e;
            --ttwo-accent: #0f3460;
            --ttwo-highlight: #e94560;
            --ttwo-light: #f0f0f0;
            --ttwo-dark: #121212;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.8;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        .ttwo-gradient {
            background: linear-gradient(135deg, var(--ttwo-primary) 0%, var(--ttwo-secondary) 50%, var(--ttwo-accent) 100%);
        }
        .navbar {
            background-color: rgba(18, 18, 18, 0.95) !important;
            backdrop-filter: blur(10px);
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
            border-bottom: 3px solid var(--ttwo-highlight);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--ttwo-light) !important;
        }
        .navbar-brand span {
            color: var(--ttwo-highlight);
        }
        .nav-link {
            color: #ddd !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
            transition: all 0.3s;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--ttwo-light) !important;
            background-color: rgba(233, 69, 96, 0.15);
            transform: translateY(-2px);
        }
        .nav-link:hover::after, .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 15%;
            width: 70%;
            height: 3px;
            background-color: var(--ttwo-highlight);
            border-radius: 2px;
        }
        .hero-section {
            padding: 10rem 0 6rem;
            background: linear-gradient(rgba(10, 10, 20, 0.85), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat fixed;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            background: linear-gradient(to right, #fff 30%, var(--ttwo-highlight) 70%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section .lead {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .floating {
            animation: floating 6s ease-in-out infinite;
        }
        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 800;
            color: var(--ttwo-primary);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: var(--ttwo-highlight);
            border-radius: 3px;
        }
        .card-hover {
            transition: transform 0.4s, box-shadow 0.4s;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px 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);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card-hover:hover .card-img-top {
            transform: scale(1.05);
        }
        .bg-dark-gradient {
            background: linear-gradient(45deg, var(--ttwo-dark), #2d2d3a) !important;
            color: var(--ttwo-light);
        }
        .team-img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .flink {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            margin: 0.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            color: #ddd;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--ttwo-highlight);
            color: white;
            transform: translateY(-3px);
            border-color: var(--ttwo-highlight);
            box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1.2rem;
            margin: 0 0.5rem;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background: var(--ttwo-highlight);
            transform: translateY(-5px) rotate(5deg);
        }
        footer {
            background-color: #0a0a14;
            color: #aaa;
            border-top: 5px solid var(--ttwo-highlight);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--ttwo-highlight);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--ttwo-accent);
            transform: translateY(-5px);
        }
        .game-icon {
            font-size: 2.5rem;
            color: var(--ttwo-highlight);
            margin-bottom: 1rem;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--ttwo-highlight);
            line-height: 1;
        }
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2.5rem; }
            .hero-section { padding: 8rem 0 4rem; }
            .navbar-brand { font-size: 1.5rem; }
            .section-title { font-size: 1.8rem; }
            .stats-number { font-size: 2.5rem; }
        }
