* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Roboto', 'Noto Sans', 'Lato', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f9f9f9;
            padding-bottom: 80px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a202c;
            color: #ffffff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.5);
            color: #ffc107;
        }
        .logo span {
            color: #ffffff;
            font-style: italic;
            font-weight: 700;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 8px;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #ffc107;
            background-color: rgba(255,255,255,0.15);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 2.2rem;
            cursor: pointer;
            z-index: 10000;
        }
        main {
            padding: 60px 0;
        }
        h1 {
            font-size: 3.2rem;
            color: #1a202c;
            margin-bottom: 50px;
            text-align: center;
            font-weight: 900;
            line-height: 1.5;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 0 20px;
            text-transform: capitalize;
        }
        h2 {
            font-size: 2.4rem;
            color: #1a202c;
            margin: 80px 0 35px;
            border-bottom: 4px solid #ffc107;
            padding-bottom: 15px;
            font-weight: 800;
            text-transform: capitalize;
        }
        h3 {
            font-size: 1.9rem;
            color: #2d3748;
            margin: 50px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            text-transform: capitalize;
        }
        h3::before {
            content: "⚔️ ";
            margin-right: 12px;
            color: #ffc107;
        }
        p {
            margin-bottom: 1.7em;
            font-size: 1.2rem;
            color: #4a5568;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #1a202c;
            font-size: 1.3rem;
        }
        .btn {
            display: inline-block;
            padding: 22px 45px;
            background-color: #1a202c;
            color: #ffffff;
            text-decoration: none;
            border-radius: 15px;
            font-weight: 700;
            margin: 25px 25px 25px 0;
            transition: all 0.4s ease;
            text-align: center;
            font-size: 1.25rem;
            box-shadow: 0 8px 15px rgba(0,0,0,0.25);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            background-color: #2d3748;
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.3);
        }
        .btn-secondary {
            background-color: #ffc107;
            color: #1a202c;
        }
        .btn-secondary:hover {
            background-color: #ffd54f;
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.3);
        }
        .image-container {
            margin: 60px 0;
            text-align: center;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.18);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            transition: transform 0.7s ease;
        }
        img:hover {
            transform: scale(1.04);
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 25px;
            padding: 50px;
            margin: 60px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            align-items: center;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 220px;
            padding: 25px;
            border-radius: 15px;
            background-color: #f7fafc;
            border: 1px solid #e8f4f8;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: #1a202c;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .stat-label {
            color: #718096;
            font-size: 1.2rem;
            font-weight: 500;
            text-transform: capitalize;
        }
        .review-container {
            background-color: #ffffff;
            border-radius: 18px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-left: 7px solid #ffc107;
        }
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        .reviewer-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-right: 30px;
            background-color: #e3f2fd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #1a202c;
            font-size: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .reviewer-info h4 {
            color: #1a202c;
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        .reviewer-location {
            color: #718096;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
        .reviewer-location::before {
            content: "📍 ";
            margin-right: 10px;
        }
        .review-rating {
            color: #ffc107;
            margin: 25px 0;
            font-size: 1.9rem;
        }
        .guide-tip {
            background-color: #f5fafe;
            border-left: 7px solid #4299e1;
            padding: 30px 35px;
            margin: 50px 0;
            border-radius: 0 18px 18px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
        }
        .guide-tip h4 {
            color: #2563eb;
            margin-bottom: 18px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            text-transform: capitalize;
        }
        .guide-tip h4::before {
            content: "💡 ";
            margin-right: 15px;
        }
        .event-card {
            background-color: #ffffff;
            border-radius: 18px;
            padding: 35px;
            margin: 50px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-top: 7px solid #ffc107;
            transition: transform 0.5s ease;
        }
        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .event-date {
            color: #1a202c;
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
        }
        .event-date::before {
            content: "📅 ";
            margin-right: 15px;
        }
        .community-platform {
            background-color: #fdf2f8;
            border-radius: 18px;
            padding: 30px;
            margin: 45px 0;
            display: flex;
            align-items: center;
            gap: 25px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        }
        .community-icon {
            font-size: 2.5rem;
            color: #1a202c;
        }
        .community-name {
            font-weight: 700;
            color: #1a202c;
            font-size: 1.4rem;
            text-transform: capitalize;
        }
        .community-desc {
            color: #718096;
            font-size: 1.1rem;
        }
        .community-link {
            margin-left: auto;
            color: #1a202c;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.2rem;
            transition: color 0.3s ease;
            text-transform: capitalize;
        }
        .community-link:hover {
            color: #ffc107;
        }
        footer {
            background-color: #1a202c;
            color: #ffffff;
            padding: 80px 0 50px;
            margin-top: 120px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 70px;
            margin-bottom: 60px;
        }
        .footer-section {
            flex: 1;
            min-width: 300px;
        }
        .footer-section h3 {
            color: #ffc107;
            margin-bottom: 35px;
            font-size: 1.7rem;
            border-bottom: 3px solid #2d3748;
            padding-bottom: 18px;
            display: block;
        }
        .footer-section h3::before {
            content: "";
            margin-right: 0;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 22px;
        }
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.15rem;
        }
        .footer-links a:hover {
            color: #ffc107;
            padding-left: 10px;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 30px;
        }
        .tag {
            padding: 14px 25px;
            background-color: #2d3748;
            border-radius: 30px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: #ffffff;
            text-decoration: none;
            text-transform: lowercase;
        }
        .tag:hover {
            background-color: #ffc107;
            transform: translateY(-4px);
        }
        .tag:hover a {
            color: #1a202c;
        }
        .recommendation {
            background-color: #f8f9fa;
            padding: 35px;
            border-radius: 18px;
            margin: 60px 0;
            text-align: center;
            color: #4a5568;
            font-size: 1.3rem;
            line-height: 2.2;
            box-shadow: 0 8px 25px rgba(0,0,0,0.09);
        }
        .game-type-nav {
            margin: 50px 0 70px;
        }
        .game-type-nav h3 {
            margin-bottom: 30px;
        }
        .game-type-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .game-type-list a {
            padding: 12px 25px;
            background-color: #2d3748;
            color: #ffffff;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 1.15rem;
            text-transform: capitalize;
        }
        .game-type-list a:hover {
            background-color: #ffc107;
            color: #1a202c;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 3px solid #2d3748;
            font-size: 1.1rem;
            color: #e2e8f0;
            line-height: 2.2;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 28px;
            }
            h1 {
                font-size: 2.9rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 3.2rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 22px;
            }
            h1 {
                font-size: 2.6rem;
            }
            h2 {
                font-size: 2rem;
                margin: 70px 0 30px;
            }
            h3 {
                font-size: 1.7rem;
                margin: 45px 0 22px;
            }
            .btn {
                padding: 20px 40px;
                font-size: 1.2rem;
            }
            .stats-box {
                padding: 40px;
                gap: 30px;
            }
            .stat-item {
                min-width: 190px;
                padding: 22px;
            }
            .stat-number {
                font-size: 2.9rem;
            }
            .review-container {
                padding: 35px;
            }
            .footer-container {
                gap: 50px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background-color: #1a202c;
                padding: 45px 30px;
                gap: 30px;
                box-shadow: 0 20px 25px rgba(0,0,0,0.35);
                border-radius: 0 0 25px 25px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 2.3rem;
                margin-bottom: 45px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 60px 0 25px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
            }
            .btn {
                width: 100%;
                margin-bottom: 30px;
                padding: 20px 35px;
            }
            .stats-box {
                padding: 35px;
                gap: 25px;
            }
            .stat-item {
                min-width: 160px;
                padding: 18px;
            }
            .stat-number {
                font-size: 2.6rem;
            }
            .review-container {
                padding: 30px;
            }
            .reviewer-avatar {
                width: 70px;
                height: 70px;
                font-size: 1.7rem;
            }
            .footer-container {
                gap: 40px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.1rem;
            }
            h1 {
                font-size: 2.1rem;
                margin-bottom: 40px;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.1rem;
            }
            .stats-box {
                padding: 30px;
                gap: 20px;
            }
            .stat-item {
                min-width: 140px;
            }
            .stat-number {
                font-size: 2.3rem;
            }
            .stat-label {
                font-size: 1rem;
            }
            .reviewer-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            .footer-section {
                min-width: 100%;
            }
            .tags-container {
                gap: 12px;
            }
            .tag {
                padding: 12px 20px;
                font-size: 1rem;
            }
        }
