* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f5f5f0;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .header-nav {
            background-color: #e67e22;
            padding: 18px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffdd59;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-link {
            color: #ffffff;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-link:hover {
            background-color: #d35400;
            color: #ffeb3b;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            z-index: 10000;
        }
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 38px;
            color: #2c3e50;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.3;
            padding: 0 10px;
        }
        h2 {
            font-size: 30px;
            color: #e74c3c;
            margin: 60px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #e67e22;
            font-weight: 800;
            text-transform: capitalize;
        }
        h3 {
            font-size: 24px;
            color: #3498db;
            margin: 40px 0 20px;
            font-weight: 700;
            text-transform: capitalize;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🔹";
            margin-right: 10px;
            color: #e67e22;
        }
        p {
            font-size: 17px;
            margin-bottom: 25px;
            padding: 0 5px;
            text-align: justify;
        }
        .highlight {
            font-weight: 800;
            color: #e67e22;
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
        }
        .btn {
            display: inline-block;
            padding: 16px 35px;
            margin: 20px 12px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            font-size: 21px;
            font-weight: 700;
            border-radius: 10px;
            transition: all 0.4s ease;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #3498db;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .stats-box {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.08);
            margin: 30px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #fff8e1;
            border-radius: 10px;
            border: 1px solid #ffe0b2;
        }
        .stat-value {
            font-size: 32px;
            font-weight: 900;
            color: #e74c3c;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 16px;
            color: #555555;
            font-weight: 500;
        }
        .review-card {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 25px;
            border-left: 5px solid #3498db;
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        .reviewer {
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 18px;
            display: flex;
            align-items: center;
        }
        .reviewer::after {
            content: "📍";
            margin-left: 8px;
        }
        .review-rating {
            color: #f39c12;
            margin-bottom: 12px;
            font-size: 20px;
        }
        .guide-list, .faq-list, .event-list {
            list-style-type: disc;
            margin: 25px 0 25px 50px;
        }
        .guide-list li, .faq-list li, .event-list li {
            font-size: 17px;
            margin-bottom: 20px;
            padding-right: 10px;
        }
        .guide-list li::marker, .faq-list li::marker, .event-list li::marker {
            color: #e67e22;
            font-size: 1.2em;
        }
        .event-card {
            background-color: #fff8e1;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 30px;
            border-top: 5px solid #e67e22;
            border-bottom: 1px solid #ffe0b2;
        }
        .event-title {
            font-size: 22px;
            font-weight: 800;
            color: #e74c3c;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .event-title::before {
            content: "🎉";
            margin-right: 10px;
        }
        .community-platform {
            font-weight: 700;
            color: #3498db;
            margin: 20px 0 10px;
            font-size: 19px;
        }
        .platform-details {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .localization-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .localization-table th, .localization-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        .localization-table th {
            background-color: #e67e22;
            color: white;
            font-weight: 700;
            font-size: 17px;
        }
        .localization-table tr:nth-child(even) {
            background-color: #fafafa;
        }
        .localization-table tr:hover {
            background-color: #fff8e1;
        }
        .footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 60px 25px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags, .recommendation {
            margin-bottom: 40px;
        }
        .game-types h3, .tags h3 {
            color: #ffdd59;
            margin-bottom: 20px;
            font-size: 22px;
            font-weight: 700;
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .type-link, .tag-link {
            color: #ecf0f1;
            text-decoration: none;
            background-color: #34495e;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 16px;
            font-weight: 500;
        }
        .type-link:hover, .tag-link:hover {
            background-color: #e67e22;
            color: #ffffff;
            transform: translateY(-2px);
        }
        .recommendation {
            font-size: 18px;
            line-height: 1.9;
            color: #bdc3c7;
        }
        .recommendation strong {
            color: #ffdd59;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            font-size: 16px;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #e67e22;
                padding: 30px 25px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            h1 {
                font-size: 30px;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 26px;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 22px;
                margin: 30px 0 15px;
            }
            p, .guide-list li, .faq-list li, .event-list li {
                font-size: 16px;
            }
            .btn {
                padding: 14px 28px;
                font-size: 19px;
                width: 100%;
                margin: 10px 0;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .img-container {
                margin: 30px 0;
            }
            .review-card, .event-card, .stats-box {
                padding: 20px;
            }
            .guide-list, .faq-list, .event-list {
                margin-left: 30px;
            }
            .footer {
                padding: 40px 20px;
            }
        }
        .section-intro {
            font-size: 18px;
            color: #444444;
            font-weight: 500;
            margin-bottom: 30px;
            line-height: 1.9;
        }
        .sub-section {
            margin: 40px 0;
        }
        .keyword-box {
            background-color: #fef5e7;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #e67e22;
        }
        .keyword-box p {
            margin-bottom: 0;
            font-weight: 600;
            color: #2c3e50;
        }
        .internal-link {
            color: #3498db;
            font-weight: 600;
            text-decoration: underline;
            transition: color 0.3s ease;
        }
        .internal-link:hover {
            color: #e67e22;
            text-decoration: none;
        }
