:root {
            --primary-dark: #1a1a2e;
            --primary-blue: #0f3460;
            --accent-red: #e94560;
            --light-bg: #16213e;
            --text-light: #f1f1f1;
            --text-gray: #b8b8b8;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            overflow-x: hidden;
        }
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--light-bg) 50%, var(--primary-blue) 100%);
        }
        .navbar {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(233, 69, 96, 0.2);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--text-light) !important;
        }
        .navbar-brand span {
            color: var(--accent-red);
        }
        .nav-link {
            color: var(--text-gray) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-red) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-red);
            transition: width 0.3s;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #fff 30%, var(--accent-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            max-width: 600px;
        }
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--accent-red), #ff6b9d);
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
            color: white;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: var(--accent-red);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        .about-card, .service-card, .game-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        .about-card:hover, .service-card:hover, .game-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-red);
            box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, var(--accent-red), var(--primary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .game-card img {
            border-radius: 10px;
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 1rem;
        }
        .team-member {
            text-align: center;
        }
        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-red);
            margin-bottom: 1rem;
        }
        .contact-form input, .contact-form textarea {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            border-radius: 10px;
            padding: 0.8rem;
            margin-bottom: 1.5rem;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--accent-red);
            box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
            color: white;
        }
        footer {
            background-color: var(--light-bg);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(233, 69, 96, 0.2);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--text-light);
            margin-right: 0.5rem;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: var(--accent-red);
            transform: translateY(-3px);
        }
        .flink {
            color: var(--text-gray);
            text-decoration: none;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            display: inline-block;
            margin: 0.3rem;
            transition: all 0.3s;
        }
        .flink:hover {
            color: var(--accent-red);
            background: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .friendlink {
            background: rgba(15, 52, 96, 0.3);
            padding: 2rem;
            border-radius: 15px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-red);
            line-height: 1;
        }
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(233, 69, 96, 0.1);
            pointer-events: none;
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }
