* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #006266;
            padding: 18px 20px;
            color: #ffffff;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffb142;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            margin-bottom: 12px;
            text-align: center;
        }
        .nav {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            margin: 0 auto 15px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            color: #006266;
            font-size: 2.8rem;
            margin: 35px 0 25px;
            text-align: center;
            border-bottom: 4px solid #ffb142;
            padding-bottom: 12px;
        }
        h2 {
            color: #006266;
            font-size: 2.2rem;
            margin: 45px 0 20px;
            border-left: 5px solid #ffb142;
            padding-left: 18px;
        }
        h3 {
            color: #1B9CFC;
            font-size: 1.7rem;
            margin: 35px 0 18px;
            position: relative;
            padding-left: 10px;
        }
        h3::before {
            content: "•";
            color: #ffb142;
            position: absolute;
            left: -5px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #EA2027;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #1B9CFC;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 12px 12px 0;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 1.1rem;
            box-shadow: 0 3px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #27AE60;
        }
        .btn-login {
            background-color: #E67E22;
        }
        .btn:hover {
            opacity: 0.95;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            border: 3px solid #ffffff;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #006266;
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f1f2f6;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .stats-item span:first-child {
            font-weight: 500;
            color: #2d3436;
        }
        .stats-item span:last-child {
            font-weight: bold;
            color: #006266;
        }
        .review-box {
            background-color: #fff;
            border-left: 5px solid #ffb142;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .reviewer {
            font-style: italic;
            color: #636e72;
            margin-top: 12px;
            font-size: 1rem;
        }
        .tag {
            display: inline-block;
            background-color: #006266;
            color: white;
            padding: 6px 14px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #1B9CFC;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 12px 12px 12px 0;
        }
        .game-type a {
            color: #006266;
            text-decoration: none;
            font-weight: bold;
            border-bottom: 3px solid #ffb142;
            padding-bottom: 2px;
            transition: all 0.3s ease;
        }
        .game-type a:hover {
            color: #1B9CFC;
            border-bottom-color: #1B9CFC;
        }
        .footer {
            background-color: #006266;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-links {
            margin: 25px 0;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 0.95rem;
        }
        .tips-box {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            border: 1px dashed #1B9CFC;
        }
        .tips-box h4 {
            color: #006266;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .event-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .event-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .event-details {
            padding: 20px;
        }
        .event-details h4 {
            color: #006266;
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.05rem;
                text-align: left;
            }
            .btn {
                padding: 12px 22px;
                font-size: 1rem;
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            .stats-box {
                padding: 18px;
            }
            .event-card img {
                height: 150px;
            }
        }
