        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fff9f0;
            color: #3c2a21;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #d97706;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .nav-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 26px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #fff3e0;
            border-bottom: 2px solid #fff3e0;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 28px;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #92400e;
            font-size: 38px;
            text-align: center;
            margin-bottom: 35px;
            font-weight: 900;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            line-height: 1.4;
        }
        h2 {
            color: #b45309;
            font-size: 28px;
            margin: 50px 0 22px;
            padding-bottom: 12px;
            border-bottom: 3px solid #fbbf24;
            font-weight: 800;
        }
        h3 {
            color: #92400e;
            font-size: 22px;
            margin: 35px 0 18px;
            font-weight: 700;
            position: relative;
            padding-left: 15px;
        }
        h3::before {
            content: '🌶️';
            position: absolute;
            left: -30px;
            top: 2px;
        }
        p {
            font-size: 18px;
            margin-bottom: 22px;
            text-align: justify;
        }
        .highlight {
            font-weight: 800;
            color: #92400e;
            text-decoration: underline dotted #b45309;
            text-underline-offset: 4px;
        }
        .btn-group {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 35px;
            font-size: 19px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 0 rgba(0,0,0,0.15);
            text-align: center;
            min-width: 220px;
        }
        .download-btn {
            background-color: #16a34a;
            color: #ffffff;
        }
        .download-btn:hover {
            background-color: #15803d;
            transform: translateY(-3px);
            box-shadow: 0 6px 0 rgba(0,0,0,0.2);
        }
        .login-btn {
            background-color: #2563eb;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #1d4ed8;
            transform: translateY(-3px);
            box-shadow: 0 6px 0 rgba(0,0,0,0.2);
        }
        .img-container {
            margin: 45px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            border: 4px solid #fff3e0;
        }
        .stats-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            border-left: 6px solid #fbbf24;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #f5f5f5;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .stat-label {
            font-size: 18px;
            font-weight: 600;
            color: #3c2a21;
        }
        .stat-value {
            font-size: 18px;
            font-weight: 700;
            color: #b45309;
        }
        .review-card {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 28px;
            margin: 35px 0;
            box-shadow: 0 5px 12px rgba(0,0,0,0.06);
            border-top: 5px solid #fbbf24;
            position: relative;
        }
        .review-card::before {
            content: '"';
            font-size: 80px;
            color: #fbbf24;
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: 20px;
            font-family: 'Georgia', serif;
        }
        .review-text {
            font-size: 18px;
            margin-bottom: 15px;
            padding-left: 15px;
        }
        .reviewer {
            font-style: italic;
            color: #6b7280;
            font-size: 17px;
            text-align: right;
            padding-right: 15px;
        }
        .tips-list {
            margin: 25px 0 30px 45px;
        }
        .tips-list li {
            font-size: 18px;
            margin-bottom: 20px;
            padding-left: 15px;
            position: relative;
        }
        .tips-list li::before {
            content: '🌶️';
            position: absolute;
            left: -30px;
            top: 2px;
        }
        .tags-section {
            margin: 60px 0 40px;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 25px 0;
        }
        .tag-link {
            background-color: #fbbf24;
            color: #92400e;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #d97706;
            color: #ffffff;
            transform: translateY(-2px);
        }
        .game-types-section {
            margin: 40px 0 60px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 25px 0;
        }
        .type-link {
            color: #2563eb;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .type-link:hover {
            color: #1d4ed8;
            border-bottom: 2px solid #1d4ed8;
        }
        footer {
            background-color: #1e293b;
            color: #f1f5f9;
            padding: 50px 20px;
            margin-top: 80px;
        }
        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-column h3 {
            color: #fbbf24;
            font-size: 22px;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #fbbf24;
        }
        .footer-column p {
            font-size: 17px;
            margin-bottom: 18px;
            text-align: left;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #f1f5f9;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: #fbbf24;
            padding-left: 8px;
        }
        .recommendation {
            margin: 40px 0 20px;
            font-size: 18px;
            text-align: center;
            font-weight: 600;
            color: #fbbf24;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #334155;
            font-size: 16px;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #d97706;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
                padding-left: 0;
            }
            h3::before {
                left: -25px;
            }
            p, .tips-list li, .stat-label, .stat-value, .review-text, .reviewer {
                font-size: 16px;
            }
            .btn {
                width: 100%;
                max-width: 350px;
            }
            .tips-list {
                margin-left: 30px;
            }
            .tips-list li::before {
                left: -25px;
            }
        }
