:root {
            --primary-dark: #0a1a2f;
            --primary-blue: #1a3a5f;
            --primary-accent: #ff6b35;
            --secondary-accent: #00cfc8;
            --light-bg: #f8f9fa;
            --text-light: #e9ecef;
            --text-dark: #212529;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: var(--text-light);
            padding-top: 8rem;
            padding-bottom: 5rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -10%;
            width: 40%;
            height: 120%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
            z-index: 1;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .btn-primary-custom {
            background-color: var(--primary-accent);
            border-color: var(--primary-accent);
            color: white;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #e55a2b;
            border-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }
        .navbar {
            background-color: rgba(10, 26, 47, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding: 0.7rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary-accent) !important;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title h2 {
            display: inline-block;
            font-size: 2.5rem;
            color: var(--primary-dark);
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary-accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-accent), #ff8e53);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .game-card-img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-card:hover .game-card-img {
            transform: scale(1.05);
        }
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid #f1f1f1;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        .team-member:hover .team-img {
            border-color: var(--primary-accent);
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: #f1f1f1;
            border-radius: 50%;
            color: var(--primary-blue);
            margin: 0 5px;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background-color: var(--primary-accent);
            color: white;
            transform: translateY(-3px);
        }
        .contact-info-box {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            height: 100%;
            transition: transform 0.3s;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
        }
        .contact-icon {
            font-size: 2.5rem;
            color: var(--primary-accent);
            margin-bottom: 1rem;
        }
        .form-control-custom {
            border-radius: 8px;
            border: 1px solid #ddd;
            padding: 0.8rem 1rem;
            transition: all 0.3s;
        }
        .form-control-custom:focus {
            border-color: var(--primary-accent);
            box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
        }
        footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding-top: 4rem;
        }
        .footer-links h5 {
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-links h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-accent);
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #b0b7c3;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--primary-accent);
            padding-left: 5px;
        }
        .friendlink-section {
            background-color: #111c2d;
            padding: 2rem 0;
            border-top: 1px solid #2a3a5a;
        }
        friendlink {
            display: block;
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            color: #b0b7c3;
            padding: 0.5rem 1.2rem;
            margin: 0.5rem;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: var(--primary-accent);
            color: white;
            border-color: var(--primary-accent);
            transform: translateY(-2px);
        }
        .copyright {
            background-color: #0a1525;
            padding: 1.5rem 0;
            color: #8a94a6;
            font-size: 0.9rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            text-decoration: none;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--primary-blue);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-padding {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
            .section-title h2 {
                font-size: 2rem;
            }
        }
