* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #0f0f1a;
            color: #f0f0f5;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #1a1a2e;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ff3e3e;
            text-decoration: none;
            text-shadow: 0 0 8px rgba(255,62,62,0.6);
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: #f0f0f5;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:hover {
            color: #ff3e3e;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff3e3e;
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f0f0f5;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
        }
        h1 {
            font-size: 2.8rem;
            color: #ff3e3e;
            margin: 40px 0 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #ff3e3e;
        }
        h2 {
            font-size: 2.2rem;
            color: #ff3e3e;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #ffc107;
        }
        h3 {
            font-size: 1.7rem;
            color: #ffc107;
            margin: 35px 0 20px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🔥";
            margin-right: 12px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #ffc107;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #ff3e3e;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 15px 12px 25px 0;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(255,62,62,0.3);
            font-size: 1.05rem;
        }
        .btn:hover {
            background-color: #e02a2a;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255,62,62,0.4);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
            border: 2px solid #ffc107;
        }
        .stats-box {
            background-color: #1a1a2e;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            border-top: 5px solid #ff3e3e;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #252540;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: scale(1.05);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffc107;
        }
        .review-box {
            background-color: #1a1a2e;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            border-left: 4px solid #ffc107;
        }
        .reviewer {
            font-weight: bold;
            color: #ffc107;
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 10px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            padding: 10px 18px;
            background-color: #252540;
            color: #ffc107;
            text-decoration: none;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #303050;
            transform: scale(1.07);
        }
        .game-type {
            margin: 50px 0 30px;
        }
        .game-type a {
            color: #ffc107;
            text-decoration: none;
            font-weight: 600;
            margin: 0 8px;
            padding: 3px 0;
            position: relative;
        }
        .game-type a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffc107;
            transition: width 0.3s;
        }
        .game-type a:hover::after {
            width: 100%;
        }
        footer {
            background-color: #1a1a2e;
            color: #f0f0f5;
            padding: 50px 0 30px;
            margin-top: 70px;
            border-top: 3px solid #ff3e3e;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #ffc107;
        }
        .footer-section p {
            color: #d0d0d5;
            font-size: 1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #303050;
            margin-top: 30px;
            font-size: 0.95rem;
            color: #a0a0a5;
        }
        .tips-box {
            background-color: #252540;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid #ffc107;
        }
        .tips-box h4 {
            color: #ffc107;
            margin-bottom: 15px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }
        .tips-box h4::before {
            content: "💡";
            margin-right: 8px;
        }
        .strategy-list {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        .strategy-list li {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .event-date {
            color: #ff3e3e;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a1a2e;
                padding: 30px 20px;
                gap: 20px;
                border-top: 3px solid #ff3e3e;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1rem;
                text-align: left;
                line-height: 1.8;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .btn {
                padding: 12px 24px;
                font-size: 1rem;
                margin: 10px 8px 20px 0;
            }
            .image-container {
                margin: 30px 0;
            }
        }
