:root {
            --primary-color: #2E8B57;
            --secondary-color: #FF6B35;
            --accent-color: #FFD700;
            --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: 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);
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), #1E6B47);
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }
        .game-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .btn-download {
            background-color: var(--secondary-color);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
            background-color: #FF5722;
        }
        .btn-login {
            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-login:hover {
            background-color: white;
            color: var(--primary-color);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            padding-left: 1rem;
            border-left: 5px solid var(--secondary-color);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.2);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--accent-color);
            margin: 1.5rem 0;
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 2rem 0;
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background-color: #E8F5E9;
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin: 0.3rem;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        .stats-box {
            background: linear-gradient(135deg, #4CAF50, #2E8B57);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            margin: 1.5rem 0;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        .footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 3rem;
        }
        .footer a {
            color: #BDC3C7;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid #34495E;
            padding-top: 1rem;
            margin-top: 2rem;
            text-align: center;
            color: #95A5A6;
            font-size: 0.9rem;
        }
        .toc {
            background-color: #F1F8E9;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        .toc ul {
            padding-left: 1.5rem;
        }
        .toc a {
            color: var(--text-dark);
            transition: color 0.3s ease;
        }
        .toc a:hover {
            color: var(--primary-color);
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
