:root {
            --primary-color: #ff6b35;
            --secondary-color: #f4c542;
            --accent-color: #2e8b57;
            --text-dark: #2d3748;
            --text-light: #718096;
            --bg-light: #f7fafc;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        .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);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }
        .game-feature {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .download-btn {
            background: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .download-btn:hover {
            background: #e55a2e;
            transform: scale(1.05);
        }
        .login-btn {
            background: var(--accent-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .login-btn:hover {
            background: #26734d;
            transform: scale(1.05);
        }
        .stat-highlight {
            background: linear-gradient(45deg, var(--secondary-color), #ffd166);
            color: var(--text-dark);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            margin: 1rem 0;
        }
        .tag-badge {
            background: #e2e8f0;
            color: var(--text-dark);
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            display: inline-block;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            background: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h1, h2, h3 {
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        .img-container {
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
