* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #1a365d;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffcc00;
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffcc00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1a365d;
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffcc00;
        }
        h2 {
            color: #1a365d;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #ffcc00;
        }
        h3 {
            color: #2c5282;
            font-size: 1.4rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #1a365d;
        }
        .pro-tip {
            background-color: #e6f2ff;
            border-left: 5px solid #2563eb;
            padding: 15px;
            margin: 25px 0;
            border-radius: 4px;
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 20px;
            margin: 30px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #ff3e3e;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: background-color 0.3s;
            text-align: center;
        }
        .btn:hover {
            background-color: #d12c2c;
        }
        .btn-download {
            background-color: #22c55e;
        }
        .btn-download:hover {
            background-color: #16a34a;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        .button-container {
            margin: 40px 0;
            text-align: center;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e2e8f0;
            color: #334155;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background-color 0.3s;
        }
        .tag:hover {
            background-color: #cbd5e1;
        }
        .game-type {
            display: inline-block;
            color: #2563eb;
            text-decoration: none;
            margin-right: 15px;
            font-weight: 500;
        }
        .game-type:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #1e293b;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a365d;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
        }
