* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #0984e3;
            padding: 18px 20px;
            color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            color: #ffeaa7;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffeaa7;
            border-bottom: 2px solid #ffeaa7;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 100;
        }
        .main-content {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0984e3;
            margin-bottom: 25px;
            font-size: 2.7rem;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #0984e3;
            margin: 40px 0 20px;
            font-size: 2.1rem;
            border-left: 4px solid #fdcb6e;
            padding-left: 15px;
        }
        h3 {
            color: #2d3436;
            margin: 30px 0 15px;
            font-size: 1.6rem;
            position: relative;
            padding-left: 10px;
        }
        h3:before {
            content: "▶";
            color: #0984e3;
            position: absolute;
            left: -15px;
        }
        h4 {
            color: #2d3436;
            margin: 20px 0 12px;
            font-size: 1.3rem;
            color: #d63031;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d63031;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 14px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            text-align: center;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #00b894;
            color: white;
        }
        .login-btn {
            background-color: #fdcb6e;
            color: #2d3436;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            border: 2px solid #ffffff;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 5px solid #0984e3;
        }
        .stats-list {
            list-style-type: none;
        }
        .stats-list li {
            margin: 15px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1.1rem;
        }
        .stats-list li:before {
            content: "🎯";
            position: absolute;
            left: 0;
            font-size: 1.3rem;
        }
        .review-box {
            background-color: #e8f4f8;
            border-left: 5px solid #0984e3;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .reviewer {
            font-style: italic;
            color: #636e72;
            margin-top: 10px;
            display: block;
        }
        .tips-section {
            background-color: #fff3cd;
            padding: 25px;
            border-radius: 10px;
            margin: 35px 0;
            border: 1px dashed #ffeeba;
        }
        .events-section {
            background-color: #e1f5fe;
            padding: 25px;
            border-radius: 10px;
            margin: 35px 0;
            border: 1px dashed #b3e5fc;
        }
        .community-section {
            background-color: #f8d7da;
            padding: 25px;
            border-radius: 10px;
            margin: 35px 0;
            border: 1px dashed #f5c6cb;
        }
        .footer {
            background-color: #2d3436;
            color: white;
            padding: 50px 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: #ffeaa7;
            font-weight: bold;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .type-links a {
            color: #b2bec3;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .type-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .tags {
            margin: 40px 0;
        }
        .tags h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #ffeaa7;
            font-weight: bold;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag-links a {
            background-color: #636e72;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag-links a:hover {
            background-color: #0984e3;
            transform: scale(1.05);
        }
        .recommendation {
            margin: 40px 0;
            padding: 25px;
            background-color: #636e72;
            border-radius: 10px;
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            color: #b2bec3;
            font-size: 1rem;
            padding-top: 20px;
            border-top: 1px solid #636e72;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #0984e3;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
                padding: 12px 20px;
            }
            p {
                font-size: 1.1rem;
                text-align: left;
            }
            .stats-list li {
                padding-left: 25px;
                font-size: 1.05rem;
            }
        }
