:root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --accent-color: #8e44ad;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #ffffff;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        .game-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .btn-primary-custom {
            background-color: var(--accent-color);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
        }
        .btn-primary-custom:hover {
            background-color: #7d3c98;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
        }
        .btn-secondary-custom {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        .section-title {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        .feature-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            overflow: hidden;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .stats-label {
            font-size: 1rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .tag {
            display: inline-block;
            background-color: var(--bg-light);
            color: var(--text-dark);
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            margin: 0.3rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        .game-type {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin: 0.3rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .game-type:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }
        .footer-link {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-link:hover {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid #34495e;
            padding-top: 1.5rem;
            margin-top: 2rem;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .content-paragraph {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 107, 53, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 5px;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
        }
