* {
            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: #e63946;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1, h2, h3 {
            color: #1d3557;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #457b9d;
        }
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin: 40px 0 30px;
            color: #e63946;
            border-bottom: none;
        }
        h2 {
            font-size: 2rem;
            color: #1d3557;
        }
        h3 {
            font-size: 1.5rem;
            color: #457b9d;
            border-bottom: 1px solid #457b9d;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
            display: inline-block;
        }
        .download-btn {
            background-color: #2a9d8f;
            color: white;
            box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
        }
        .download-btn:hover {
            background-color: #21867a;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(42, 157, 143, 0.4);
        }
        .login-btn {
            background-color: #e9c46a;
            color: #264653;
            box-shadow: 0 4px 12px rgba(233, 196, 106, 0.3);
        }
        .login-btn:hover {
            background-color: #d4af37;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(233, 196, 106, 0.4);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            border: 2px solid #ddd;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
        }
        .stat-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-left: 5px solid #457b9d;
        }
        .stat-box p {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .tag-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag {
            background-color: #f1faee;
            padding: 8px 18px;
            border-radius: 50px;
            text-decoration: none;
            color: #1d3557;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #a8dadc;
        }
        .tag:hover {
            background-color: #a8dadc;
            color: #1d3557;
            transform: translateY(-2px);
        }
        footer {
            background-color: #1d3557;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-types h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #f1faee;
        }
        .game-types ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-types a {
            color: #a8dadc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .game-types a:hover {
            color: #f1faee;
            text-decoration: underline;
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 8px;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #a8dadc;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                text-align: center;
                margin-top: 20px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                width: 80%;
                margin-bottom: 15px;
            }
        }
