* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #faf5f0;
            color: #2c3e50;
            font-size: 16px;
            padding-bottom: 80px;
        }
        .header-nav {
            background-color: #0f172a;
            padding: 18px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 36px;
            font-weight: 900;
            color: #facc15;
            text-decoration: none;
            text-shadow: 3px 3px 5px rgba(0,0,0,0.4);
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffffff;
        }
        .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: 8px 12px;
            border-radius: 6px;
        }
        .nav-link:hover {
            background-color: #facc15;
            color: #0f172a;
            transform: translateY(-2px);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #facc15;
            font-size: 32px;
            cursor: pointer;
            z-index: 10000;
        }
        .container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 45px;
            color: #0f172a;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            line-height: 1.5;
            padding: 0 15px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 32px;
            color: #dc2626;
            margin: 80px 0 30px;
            padding-bottom: 12px;
            border-bottom: 3px solid #facc15;
            font-weight: 800;
            text-transform: capitalize;
            display: flex;
            align-items: center;
        }
        h2::before {
            content: "⚔️";
            margin-right: 12px;
            color: #0f172a;
        }
        h3 {
            font-size: 26px;
            color: #0891b2;
            margin: 50px 0 25px;
            font-weight: 700;
            text-transform: capitalize;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🌟";
            margin-right: 10px;
            color: #facc15;
        }
        h4 {
            font-size: 22px;
            color: #7c3aed;
            margin: 40px 0 20px;
            font-weight: 600;
            text-transform: capitalize;
        }
        p {
            font-size: 18px;
            margin-bottom: 25px;
            padding: 0 5px;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 900;
            color: #0f172a;
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
        }
        .btn {
            display: inline-block;
            padding: 18px 40px;
            margin: 20px 10px;
            background-color: #dc2626;
            color: white;
            text-decoration: none;
            font-size: 22px;
            font-weight: 700;
            border-radius: 10px;
            transition: all 0.4s ease;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #b91c1c;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.25);
        }
        .btn-login {
            background-color: #0891b2;
        }
        .btn-login:hover {
            background-color: #0e7490;
        }
        .btn-container {
            text-align: center;
            margin: 60px 0;
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .stats-box {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            margin: 40px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .stat-item {
            text-align: center;
            padding: 25px;
            background-color: #f0f9ff;
            border-radius: 12px;
            border: 2px solid #bfdbfe;
        }
        .stat-value {
            font-size: 42px;
            font-weight: 900;
            color: #dc2626;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 18px;
            color: #083344;
            font-weight: 600;
        }
        .review-card {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            border-left: 6px solid #0891b2;
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 22px rgba(0,0,0,0.12);
        }
        .reviewer {
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
            font-size: 20px;
            display: flex;
            align-items: center;
        }
        .reviewer::after {
            content: "📍";
            margin-left: 10px;
        }
        .review-rating {
            color: #facc15;
            margin-bottom: 15px;
            font-size: 24px;
        }
        .guide-list, .faq-list, .event-list, .community-list {
            list-style-type: disc;
            margin: 30px 0 30px 60px;
        }
        .guide-list li, .faq-list li, .event-list li, .community-list li {
            font-size: 18px;
            margin-bottom: 25px;
            padding-right: 15px;
            line-height: 1.9;
        }
        .guide-list li::marker, .faq-list li::marker, .event-list li::marker, .community-list li::marker {
            color: #dc2626;
            font-size: 1.5em;
        }
        .event-card {
            background-color: #fffbeb;
            padding: 35px;
            border-radius: 15px;
            margin-bottom: 35px;
            border-top: 6px solid #facc15;
            border-bottom: 2px solid #fde68a;
        }
        .event-title {
            font-size: 26px;
            font-weight: 800;
            color: #c2410c;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .event-title::before {
            content: "🎉";
            margin-right: 15px;
        }
        .community-platform {
            font-weight: 700;
            color: #0891b2;
            margin: 25px 0 15px;
            font-size: 21px;
        }
        .platform-details {
            background-color: #f0f9ff;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 25px;
        }
        .localization-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .localization-table th, .localization-table td {
            padding: 22px;
            text-align: left;
            border-bottom: 2px solid #f0f0f0;
        }
        .localization-table th {
            background-color: #0f172a;
            color: white;
            font-weight: 700;
            font-size: 19px;
        }
        .localization-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        .localization-table tr:hover {
            background-color: #e0f2fe;
        }
        .footer {
            background-color: #0f172a;
            color: #e2e8f0;
            padding: 70px 25px;
            margin-top: 100px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags, .recommendation {
            margin-bottom: 50px;
        }
        .game-types h3, .tags h3 {
            color: #facc15;
            margin-bottom: 25px;
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .type-link, .tag-link {
            color: #e2e8f0;
            text-decoration: none;
            background-color: #1e293b;
            padding: 12px 25px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 17px;
            font-weight: 500;
        }
        .type-link:hover, .tag-link:hover {
            background-color: #facc15;
            color: #0f172a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .recommendation {
            font-size: 20px;
            line-height: 2.2;
            color: #cbd5e1;
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background-color: #1e293b;
        }
        .recommendation strong {
            color: #facc15;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 2px solid #1e293b;
            font-size: 18px;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #0f172a;
                padding: 40px 25px;
                gap: 25px;
                box-shadow: 0 15px 20px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            h1 {
                font-size: 36px;
                margin-bottom: 35px;
            }
            h2 {
                font-size: 28px;
                margin: 60px 0 25px;
            }
            h3 {
                font-size: 24px;
                margin: 40px 0 20px;
            }
            h4 {
                font-size: 20px;
            }
            p, .guide-list li, .faq-list li, .event-list li, .community-list li {
                font-size: 17px;
            }
            .btn {
                padding: 16px 35px;
                font-size: 20px;
                width: 100%;
                margin: 15px 0;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .img-container {
                margin: 35px 0;
            }
            .review-card, .event-card, .stats-box {
                padding: 25px;
            }
            .guide-list, .faq-list, .event-list, .community-list {
                margin-left: 40px;
            }
            .footer {
                padding: 50px 20px;
            }
            .type-links, .tag-links {
                gap: 15px;
            }
            .type-link, .tag-link {
                padding: 10px 20px;
                font-size: 16px;
            }
        }
        .section-intro {
            font-size: 20px;
            color: #1e293b;
            font-weight: 500;
            margin-bottom: 40px;
            line-height: 2.1;
            background-color: #fef3c7;
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid #facc15;
        }
        .sub-section {
            margin: 60px 0;
        }
        .keyword-box {
            background-color: #ede9fe;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #7c3aed;
        }
        .keyword-box p {
            margin-bottom: 0;
            font-weight: 700;
            color: #4c1d95;
            font-size: 19px;
        }
        .internal-link {
            color: #0891b2;
            font-weight: 700;
            text-decoration: underline;
            transition: color 0.3s ease;
        }
        .internal-link:hover {
            color: #dc2626;
            text-decoration: none;
        }
