* {
            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: linear-gradient(135deg, #0f52ba, #1a4b8c);
            padding: 18px 20px;
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffdd59;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .nav {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav a:hover {
            background-color: #2c6ecb;
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            color: #0f52ba;
            margin: 35px 0 25px;
            font-size: 2.8rem;
            border-bottom: 4px solid #ffdd59;
            padding-bottom: 12px;
            line-height: 1.3;
        }
        h2 {
            color: #0f52ba;
            margin: 30px 0 18px;
            font-size: 2.2rem;
            position: relative;
            padding-left: 10px;
        }
        h2::before {
            content: "▶";
            color: #ffdd59;
            position: absolute;
            left: -20px;
        }
        h3 {
            color: #2c6ecb;
            margin: 25px 0 15px;
            font-size: 1.7rem;
            display: flex;
            align-items: center;
        }
        h3::after {
            content: "";
            flex-grow: 1;
            height: 2px;
            background-color: #2c6ecb;
            margin-left: 15px;
            opacity: 0.5;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #e74c3c;
            text-shadow: 0 0 1px rgba(231,76,60,0.3);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 20px 12px 20px 0;
            background-color: #ffdd59;
            color: #0f52ba;
            text-decoration: none;
            font-weight: bold;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(255,221,89,0.3);
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255,221,89,0.4);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }
        .game-image {
            max-width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border-left: 5px solid #ffdd59;
        }
        .stats-box p {
            margin-bottom: 12px;
            font-size: 1.2rem;
        }
        .review {
            background-color: #fff9c4;
            border-left: 5px solid #ffdd59;
            padding: 20px;
            margin: 20px 0;
            border-radius: 6px;
            box-shadow: 0 3px 10px rgba(255,221,89,0.1);
        }
        .review p {
            font-style: italic;
            position: relative;
            padding-left: 25px;
        }
        .review p::before {
            content: """;
            font-size: 5rem;
            color: rgba(255,221,89,0.3);
            position: absolute;
            left: -10px;
            top: -30px;
        }
        .footer {
            background: linear-gradient(135deg, #0f52ba, #1a4b8c);
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 25px 0;
        }
        .game-types h3, .tags h3 {
            color: #ffdd59;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .game-types a, .tags a {
            color: #ffdd59;
            text-decoration: none;
            margin-right: 18px;
            display: inline-block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        .game-types a:hover, .tags a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.2);
            text-align: center;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        .tips-box {
            background-color: #e8f4f8;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            border: 1px dashed #2980b9;
        }
        .tips-box h4 {
            color: #2980b9;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .event-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border-top: 4px solid #0f52ba;
        }
        .event-card h4 {
            color: #0f52ba;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 12px;
                padding-top: 10px;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
                margin: 25px 0 20px;
            }
            h2 {
                font-size: 1.8rem;
                padding-left: 5px;
                margin: 25px 0 15px;
            }
            h2::before {
                left: -15px;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 18px;
            }
            .btn {
                padding: 12px 24px;
                margin: 15px 8px 15px 0;
                font-size: 1rem;
            }
            .image-container {
                margin: 25px 0;
            }
            .stats-box {
                padding: 20px;
                margin: 20px 0;
            }
            .review {
                padding: 15px;
                margin: 15px 0;
            }
        }
