* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f7ff;
            color: #2d3436;
            line-height: 1.7;
            padding-bottom: 60px;
        }
        header {
            background-color: #0984e3;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        .nav-links a:hover {
            opacity: 0.8;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #0984e3;
                padding: 20px;
                gap: 18px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #0984e3;
            margin: 35px 0 25px;
            font-size: 2.3rem;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #2d3436;
            margin: 30px 0 18px;
            font-size: 1.9rem;
            border-left: 4px solid #0984e3;
            padding-left: 12px;
        }
        h3 {
            color: #0984e3;
            margin: 22px 0 12px;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.15rem;
        }
        .btn {
            display: inline-block;
            padding: 13px 26px;
            background-color: #0984e3;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 8px;
            transition: all 0.3s;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #74b9ff;
            transform: translateY(-2px);
        }
        .btn-download {
            background-color: #00b894;
        }
        .btn-download:hover {
            background-color: #55efc4;
        }
        .btn-login {
            background-color: #fdcb6e;
            color: #2d3436;
        }
        .btn-login:hover {
            background-color: #ffeaa7;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        .highlight {
            font-weight: bold;
            color: #d63031;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            border-top: 5px solid #0984e3;
        }
        .review {
            background-color: #e8f4f8;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #0984e3;
        }
        .tip-box {
            background-color: #fff3cd;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #fdcb6e;
        }
        .tag {
            display: inline-block;
            background-color: #74b9ff;
            padding: 6px 12px;
            border-radius: 25px;
            margin: 6px;
            text-decoration: none;
            color: #2d3436;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #0984e3;
            color: white;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 12px 8px;
            text-decoration: none;
            color: #2d3436;
            font-weight: 500;
            transition: color 0.3s;
        }
        .game-type:hover {
            color: #0984e3;
            text-decoration: underline;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 0.95rem;
        }
        ul {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
