* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Roboto', 'Noto Sans', 'Lato', 'Nunito', sans-serif;
        }
        body {
            line-height: 1.9;
            color: #333;
            background-color: #f7f5f0;
            padding-bottom: 100px;
        }
        .container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #0f172a;
            color: #ffffff;
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 5px 18px rgba(0,0,0,0.5);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 4px 8px rgba(0,0,0,0.6);
            color: #ffd166;
        }
        .logo span {
            color: #ffffff;
            font-style: italic;
            font-weight: 800;
        }
        .nav-links {
            display: flex;
            gap: 40px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 10px;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #ffd166;
            background-color: rgba(255,255,255,0.12);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 2.5rem;
            cursor: pointer;
            z-index: 10000;
        }
        main {
            padding: 70px 0;
        }
        h1 {
            font-size: 3.5rem;
            color: #0f172a;
            margin-bottom: 60px;
            text-align: center;
            font-weight: 900;
            line-height: 1.6;
            text-shadow: 0 3px 7px rgba(0,0,0,0.15);
            padding: 0 25px;
            text-transform: capitalize;
        }
        h2 {
            font-size: 2.6rem;
            color: #0f172a;
            margin: 90px 0 40px;
            border-bottom: 5px solid #ffd166;
            padding-bottom: 18px;
            font-weight: 800;
            text-transform: capitalize;
        }
        h3 {
            font-size: 2.1rem;
            color: #1e293b;
            margin: 60px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            text-transform: capitalize;
        }
        h3::before {
            content: "🛡️ ";
            margin-right: 15px;
            color: #ffd166;
        }
        p {
            margin-bottom: 1.8em;
            font-size: 1.25rem;
            color: #475569;
            line-height: 2;
        }
        .highlight {
            font-weight: 800;
            color: #0f172a;
            font-size: 1.4rem;
        }
        .btn {
            display: inline-block;
            padding: 25px 50px;
            background-color: #0f172a;
            color: #ffffff;
            text-decoration: none;
            border-radius: 20px;
            font-weight: 700;
            margin: 30px 30px 30px 0;
            transition: all 0.4s ease;
            text-align: center;
            font-size: 1.35rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .btn:hover {
            background-color: #1e293b;
            transform: translateY(-7px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.35);
        }
        .btn-secondary {
            background-color: #ffd166;
            color: #0f172a;
        }
        .btn-secondary:hover {
            background-color: #ffdf8c;
            transform: translateY(-7px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.35);
        }
        .image-container {
            margin: 70px 0;
            text-align: center;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 25px;
            transition: transform 0.8s ease;
        }
        img:hover {
            transform: scale(1.05);
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 30px;
            padding: 60px;
            margin: 70px 0;
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            justify-content: center;
            align-items: center;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 250px;
            padding: 30px;
            border-radius: 20px;
            background-color: #fef3c7;
            border: 1px solid #fee28a;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        .stat-label {
            color: #64748b;
            font-size: 1.3rem;
            font-weight: 500;
            text-transform: capitalize;
        }
        .review-container {
            background-color: #ffffff;
            border-radius: 22px;
            padding: 45px;
            margin: 60px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            border-left: 8px solid #ffd166;
        }
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 35px;
        }
        .reviewer-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            margin-right: 35px;
            background-color: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #0f172a;
            font-size: 2.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
        }
        .reviewer-info h4 {
            color: #0f172a;
            margin-bottom: 12px;
            font-size: 1.7rem;
        }
        .reviewer-location {
            color: #64748b;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }
        .reviewer-location::before {
            content: "📍 ";
            margin-right: 12px;
        }
        .review-rating {
            color: #ffd166;
            margin: 30px 0;
            font-size: 2.2rem;
        }
        .guide-tip {
            background-color: #eff6ff;
            border-left: 8px solid #3b82f6;
            padding: 35px 40px;
            margin: 60px 0;
            border-radius: 0 22px 22px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.09);
        }
        .guide-tip h4 {
            color: #1d4ed8;
            margin-bottom: 20px;
            font-size: 1.7rem;
            display: flex;
            align-items: center;
            text-transform: capitalize;
        }
        .guide-tip h4::before {
            content: "💡 ";
            margin-right: 18px;
        }
        .event-card {
            background-color: #ffffff;
            border-radius: 22px;
            padding: 40px;
            margin: 60px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            border-top: 8px solid #ffd166;
            transition: transform 0.6s ease;
        }
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 40px rgba(0,0,0,0.18);
        }
        .event-date {
            color: #0f172a;
            font-weight: 700;
            margin-bottom: 30px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        .event-date::before {
            content: "📅 ";
            margin-right: 18px;
        }
        .community-platform {
            background-color: #fdf2f8;
            border-radius: 22px;
            padding: 35px;
            margin: 55px 0;
            display: flex;
            align-items: center;
            gap: 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        .community-icon {
            font-size: 3rem;
            color: #0f172a;
        }
        .community-name {
            font-weight: 700;
            color: #0f172a;
            font-size: 1.6rem;
            text-transform: capitalize;
        }
        .community-desc {
            color: #64748b;
            font-size: 1.2rem;
        }
        .community-link {
            margin-left: auto;
            color: #0f172a;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.3rem;
            transition: color 0.3s ease;
            text-transform: capitalize;
        }
        .community-link:hover {
            color: #ffd166;
        }
        footer {
            background-color: #0f172a;
            color: #ffffff;
            padding: 90px 0 60px;
            margin-top: 150px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 80px;
            margin-bottom: 70px;
        }
        .footer-section {
            flex: 1;
            min-width: 320px;
        }
        .footer-section h3 {
            color: #ffd166;
            margin-bottom: 40px;
            font-size: 1.9rem;
            border-bottom: 4px solid #1e293b;
            padding-bottom: 20px;
            display: block;
        }
        .footer-section h3::before {
            content: "";
            margin-right: 0;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        .footer-links a:hover {
            color: #ffd166;
            padding-left: 12px;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 35px;
        }
        .tag {
            padding: 16px 28px;
            background-color: #1e293b;
            border-radius: 35px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: #ffffff;
            text-decoration: none;
            text-transform: lowercase;
        }
        .tag:hover {
            background-color: #ffd166;
            transform: translateY(-5px);
        }
        .tag:hover a {
            color: #0f172a;
        }
        .recommendation {
            background-color: #f9f5f0;
            padding: 40px;
            border-radius: 22px;
            margin: 70px 0;
            text-align: center;
            color: #475569;
            font-size: 1.4rem;
            line-height: 2.4;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .game-type-nav {
            margin: 60px 0 80px;
        }
        .game-type-nav h3 {
            margin-bottom: 35px;
        }
        .game-type-list {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }
        .game-type-list a {
            padding: 15px 30px;
            background-color: #1e293b;
            color: #ffffff;
            text-decoration: none;
            border-radius: 35px;
            transition: all 0.3s ease;
            font-size: 1.25rem;
            text-transform: capitalize;
        }
        .game-type-list a:hover {
            background-color: #ffd166;
            color: #0f172a;
        }
        .copyright {
            text-align: center;
            padding-top: 60px;
            border-top: 4px solid #1e293b;
            font-size: 1.2rem;
            color: #e2e8f0;
            line-height: 2.4;
        }
        .localization-table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 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: 20px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        .localization-table th {
            background-color: #0f172a;
            color: #ffffff;
            font-size: 1.3rem;
            text-transform: capitalize;
        }
        .localization-table td {
            font-size: 1.2rem;
            color: #475569;
        }
        .localization-table tr:hover td {
            background-color: #fef3c7;
            color: #0f172a;
        }
        .update-timeline {
            position: relative;
            margin: 80px 0;
            padding-left: 40px;
        }
        .update-timeline::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: #ffd166;
            border-radius: 4px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 60px;
        }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: -46px;
            top: 10px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: #0f172a;
            border: 4px solid #ffd166;
        }
        .timeline-date {
            font-weight: 700;
            color: #0f172a;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        .timeline-title {
            font-size: 1.7rem;
            color: #1e293b;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .timeline-desc {
            font-size: 1.25rem;
            color: #475569;
            line-height: 2;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 30px;
            }
            h1 {
                font-size: 3.2rem;
            }
            h2 {
                font-size: 2.4rem;
            }
            h3 {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 3.7rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.9rem;
            }
            h2 {
                font-size: 2.2rem;
                margin: 80px 0 35px;
            }
            h3 {
                font-size: 1.9rem;
                margin: 55px 0 25px;
            }
            .btn {
                padding: 22px 45px;
                font-size: 1.3rem;
            }
            .stats-box {
                padding: 50px;
                gap: 40px;
            }
            .stat-item {
                min-width: 220px;
                padding: 25px;
            }
            .stat-number {
                font-size: 3.4rem;
            }
            .review-container {
                padding: 40px;
            }
            .footer-container {
                gap: 60px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #0f172a;
                padding: 50px 35px;
                gap: 35px;
                box-shadow: 0 25px 30px rgba(0,0,0,0.4);
                border-radius: 0 0 30px 30px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 2.6rem;
                margin-bottom: 50px;
            }
            h2 {
                font-size: 2rem;
                margin: 70px 0 30px;
            }
            h3 {
                font-size: 1.7rem;
                margin: 50px 0 25px;
            }
            .btn {
                width: 100%;
                margin-bottom: 35px;
                padding: 22px 40px;
            }
            .stats-box {
                padding: 45px;
                gap: 35px;
            }
            .stat-item {
                min-width: 180px;
                padding: 22px;
            }
            .stat-number {
                font-size: 3rem;
            }
            .review-container {
                padding: 35px;
            }
            .reviewer-avatar {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            .footer-container {
                gap: 50px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.4rem;
            }
            h1 {
                font-size: 2.3rem;
                margin-bottom: 45px;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            p {
                font-size: 1.15rem;
            }
            .stats-box {
                padding: 35px;
                gap: 25px;
            }
            .stat-item {
                min-width: 150px;
            }
            .stat-number {
                font-size: 2.7rem;
            }
            .stat-label {
                font-size: 1.1rem;
            }
            .reviewer-avatar {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            .footer-section {
                min-width: 100%;
            }
            .tags-container {
                gap: 15px;
            }
            .tag {
                padding: 14px 22px;
                font-size: 1.1rem;
            }
            .localization-table th, .localization-table td {
                padding: 15px;
            }
            .update-timeline {
                padding-left: 30px;
            }
            .timeline-item::before {
                left: -36px;
            }
        }
