* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #0b4619;
            color: #ffcc00;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 12px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px 25px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: #ffcc00;
            color: #0b4619;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: 2px solid white;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px 15px;
            border-radius: 5px;
            margin: 0 auto 15px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        h1 {
            color: #0b4619;
            font-size: 2.5rem;
            text-align: center;
            margin: 35px 0 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
        }
        h2 {
            color: #0b4619;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding: 10px 15px;
            background-color: #f0f0e6;
            border-left: 5px solid #ffcc00;
            border-radius: 0 5px 5px 0;
        }
        h3 {
            color: #2c6e36;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 3px solid #ffcc00;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 15px 25px 0;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #e63900;
        }
        .btn-download:hover {
            background-color: #cc3300;
        }
        .btn-login {
            background-color: #0066cc;
        }
        .btn-login:hover {
            background-color: #0052a3;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .highlight {
            font-weight: bold;
            color: #e63900;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
            border-top: 5px solid #ffcc00;
        }
        .tag {
            display: inline-block;
            background-color: #ffeb99;
            color: #0b4619;
            padding: 8px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #ffcc00;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            background-color: #0b4619;
            color: white;
            padding: 8px 15px;
            border-radius: 8px;
            margin: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            background-color: #2c6e36;
            transform: translateY(-2px);
        }
        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            border-left: 3px solid #ffcc00;
            padding-left: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            margin-top: 30px;
            font-size: 0.95rem;
            color: #bbb;
        }
        ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                padding: 10px 0;
            }
            nav ul.show {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 12px 0;
            }
            .image-container {
                margin: 25px 0;
            }
            p {
                text-align: left;
            }
        }
