* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #e63946;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            color: white;
            font-size: 28px;
            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;
        }
        .desktop-nav {
            display: flex;
            justify-content: center;
            gap: 30px;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }
        .desktop-nav a:hover {
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 15px;
            background-color: #e63946;
            padding: 20px;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 5px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #e63946;
            font-size: 36px;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffd700;
        }
        h2 {
            color: #1d3557;
            font-size: 28px;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #e63946;
        }
        h3 {
            color: #457b9d;
            font-size: 22px;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            margin: 40px 0;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: 0.3s;
            text-align: center;
            min-width: 180px;
        }
        .download-btn {
            background-color: #2a9d8f;
            color: white;
        }
        .login-btn {
            background-color: #f4a261;
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .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.2);
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .tips-list {
            margin: 20px 0 30px 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .game-type-nav {
            margin: 40px 0 20px;
        }
        .game-type-nav a {
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 10px;
            color: #1d3557;
            text-decoration: none;
            font-weight: 600;
        }
        .game-type-nav a:hover {
            color: #e63946;
            text-decoration: underline;
        }
        .tags {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            background-color: #f1faee;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            color: #1d3557;
            font-size: 16px;
        }
        .tag:hover {
            background-color: #a8dadc;
        }
        footer {
            background-color: #1d3557;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-text {
            margin-bottom: 20px;
            font-size: 16px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p, .tips-list li {
                font-size: 16px;
            }
        }
