:root {
            --primary-color: #FF9933;
            --secondary-color: #138808;
            --accent-color: #000080;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--accent-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 25px;
            color: var(--accent-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .game-feature {
            background: var(--bg-light);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .btn-download {
            background: var(--secondary-color);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-download:hover {
            background: #0d6e07;
            transform: scale(1.05);
            color: white;
        }
        .btn-login {
            background: var(--accent-color);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            background: #00005a;
            transform: scale(1.05);
            color: white;
        }
        .stat-card {
            text-align: center;
            padding: 1.5rem;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 1.5rem;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .tag {
            display: inline-block;
            background: var(--bg-light);
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
        }
        .footer-links a {
            color: #ddd;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--primary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
