* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #fffbf5;
            color: #333;
            line-height: 1.8;
            font-size: 16px;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #d35400, #e67e22);
            padding: 15px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #f1c40f;
            margin-left: 5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #d35400;
            margin: 30px 0 25px;
            font-size: 2.4rem;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #e67e22;
        }
        h2 {
            color: #d35400;
            margin: 40px 0 20px;
            font-size: 1.8rem;
            padding-left: 10px;
            border-left: 5px solid #e67e22;
        }
        h3 {
            color: #c0392b;
            margin: 30px 0 15px;
            font-size: 1.4rem;
            padding-bottom: 5px;
            border-bottom: 1px solid #e0e0e0;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 10px 15px;
            background-color: #e67e22;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #27ae60;
        }
        .btn-login:hover {
            background-color: #219653;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #e67e22;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #666;
            font-size: 1rem;
        }
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f1f1f1;
        }
        .reviewer {
            font-weight: bold;
            color: #333;
            display: flex;
            align-items: center;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 8px;
        }
        .rating {
            color: #f39c12;
            font-weight: bold;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #fef5e7;
            color: #d35400;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #d35400;
            color: white;
        }
        .game-type-nav {
            margin: 30px 0 40px;
        }
        .game-type {
            display: inline-block;
            color: #e67e22;
            text-decoration: none;
            margin: 0 12px 10px 0;
            font-weight: 500;
            position: relative;
            padding-bottom: 2px;
        }
        .game-type::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #e67e22;
            transition: width 0.3s ease;
        }
        .game-type:hover::after {
            width: 100%;
        }
        .tips-box {
            background-color: #fef5e7;
            border-left: 5px solid #e67e22;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 5px 5px 0;
        }
        .tips-box h4 {
            color: #d35400;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .strategy-box {
            background-color: #e8f5e9;
            border-left: 5px solid #2ecc71;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .strategy-box h4 {
            color: #27ae60;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #e67e22;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-section h4::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: #e67e22;
            bottom: 0;
            left: 0;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section ul li a:hover {
            color: #e67e22;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
        }
        th {
            background-color: #fef5e7;
            color: #d35400;
            font-weight: bold;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover {
            background-color: #fef5e7;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .card-item {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .card-item:hover {
            transform: translateY(-5px);
        }
        .card-image {
            height: 180px;
            background-color: #fef5e7;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #e67e22;
        }
        .card-content {
            padding: 20px;
        }
        .card-content h4 {
            color: #d35400;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 15px;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 8px 0;
            }
            nav ul li a {
                display: block;
                width: 100%;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .btn {
                display: block;
                width: 90%;
                margin: 10px auto;
            }
            .review-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .rating {
                margin-top: 10px;
            }
            table {
                font-size: 0.9rem;
            }
            th, td {
                padding: 10px 8px;
            }
        }
