:root {
            --primary-color: #ff6b35;
            --secondary-color: #1e3a8a;
            --accent-color: #f59e0b;
            --text-color: #334155;
            --light-bg: #f8fafc;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            color: var(--text-color);
            line-height: 1.7;
        }
        .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(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            padding: 4rem 0;
            margin-bottom: 3rem;
        }
        .game-feature {
            background-color: var(--light-bg);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .download-btn {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255,107,53,0.4);
        }
        .login-btn {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .login-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .tag {
            display: inline-block;
            background-color: #e2e8f0;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            margin: 0.2rem;
            font-size: 0.85rem;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        h1, h2, h3 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-weight: 800;
            font-size: 2.5rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .key-point {
            background: white;
            border-left: 4px solid var(--primary-color);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2.5rem 0;
            }
            h1 {
                font-size: 2rem;
            }
            .game-feature {
                padding: 1.5rem;
            }
        }
