:root {
            --dot9-primary: #2a0a5e;
            --dot9-secondary: #ff6b35;
            --dot9-accent: #00c9b7;
            --dot9-dark: #0d0221;
            --dot9-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .gradient-bg {
            background: linear-gradient(135deg, var(--dot9-primary) 0%, var(--dot9-dark) 100%);
        }
        .navbar-brand img {
            height: 50px;
            transition: transform 0.3s ease;
        }
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--dot9-secondary);
            left: 50%;
            bottom: 0;
            transition: all 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 80%;
            left: 10%;
        }
        .hero-section {
            min-height: 90vh;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070') center/cover no-repeat;
            opacity: 0.15;
            z-index: -1;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #fff 0%, var(--dot9-accent) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--dot9-secondary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--dot9-primary), var(--dot9-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
        .game-card {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            height: 320px;
            cursor: pointer;
        }
        .game-card img {
            transition: transform 0.6s ease;
            height: 100%;
            object-fit: cover;
        }
        .game-card:hover img {
            transform: scale(1.08);
        }
        .game-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10,2,30,0.95) 0%, transparent 100%);
            padding: 2rem 1.5rem 1.5rem;
            color: white;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        .game-card:hover .game-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        .team-member {
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            background: white;
        }
        .team-member:hover {
            background: var(--dot9-light);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        .team-img {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            margin-bottom: 1.5rem;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--dot9-light);
            color: var(--dot9-primary);
            margin: 0 4px;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background: var(--dot9-secondary);
            color: white;
            transform: translateY(-3px);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 8px;
            background: var(--dot9-light);
            border-radius: 8px;
            color: var(--dot9-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
        }
        .flink:hover {
            background: var(--dot9-primary);
            color: white;
            transform: translateY(-3px);
            border-color: var(--dot9-primary);
        }
        .contact-form .form-control {
            border-radius: 8px;
            padding: 12px 16px;
            border: 1px solid #ddd;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        .contact-form .form-control:focus {
            border-color: var(--dot9-accent);
            box-shadow: 0 0 0 0.25rem rgba(0,201,183,0.25);
        }
        .btn-dot9 {
            background: linear-gradient(90deg, var(--dot9-secondary), #ff8c5a);
            color: white;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-dot9:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255,107,53,0.3);
            color: white;
        }
        footer {
            background: var(--dot9-dark);
            color: #bbb;
            padding-top: 3rem;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--dot9-accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--dot9-secondary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
