: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.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--accent-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(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--accent-color);
            margin-bottom: 25px;
            font-weight: 700;
        }
        h1 {
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 15px;
        }
        h2 {
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            color: var(--text-dark);
            margin-top: 30px;
        }
        .key-feature {
            background: var(--bg-light);
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            border-left: 4px solid var(--primary-color);
        }
        .btn-download {
            background: linear-gradient(45deg, var(--primary-color), #ff6600);
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 153, 51, 0.6);
        }
        .btn-login {
            background: linear-gradient(45deg, var(--secondary-color), #0a6b08);
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(19, 136, 8, 0.4);
        }
        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(19, 136, 8, 0.6);
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .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;
            transform: translateY(-2px);
        }
        .stats-box {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 15px 0;
            transition: all 0.3s ease;
        }
        .stats-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }
        .player-review {
            background: var(--bg-light);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid var(--secondary-color);
        }
        .review-author {
            font-weight: 600;
            color: var(--accent-color);
        }
        footer {
            background: var(--accent-color);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #aaaaaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .content-section {
                padding: 25px;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 153, 51, 0.2) 0%, rgba(255, 153, 51, 0) 100%);
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
        }
        .strategy-tip {
            background: rgba(19, 136, 8, 0.1);
            border-left: 4px solid var(--secondary-color);
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 8px 8px 0;
        }
