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