* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Roboto', 'Noto Sans', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #fafafa;
            padding-bottom: 80px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #0f172a;
            color: #ffffff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.4rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.4);
            color: #fbbf24;
        }
        .logo span {
            color: #ffffff;
            font-style: italic;
        }
        .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: 6px;
        }
        .nav-links a:hover {
            color: #fbbf24;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 2rem;
            cursor: pointer;
            z-index: 10000;
        }
        main {
            padding: 60px 0;
        }
        h1 {
            font-size: 3rem;
            color: #0f172a;
            margin-bottom: 50px;
            text-align: center;
            font-weight: 900;
            line-height: 1.4;
            text-shadow: 0 1px 4px rgba(0,0,0,0.1);
            padding: 0 20px;
        }
        h2 {
            font-size: 2.3rem;
            color: #0f172a;
            margin: 70px 0 30px;
            border-bottom: 4px solid #fbbf24;
            padding-bottom: 15px;
            font-weight: 800;
        }
        h3 {
            font-size: 1.8rem;
            color: #1e293b;
            margin: 45px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🛡️ ";
            margin-right: 12px;
            color: #fbbf24;
        }
        p {
            margin-bottom: 1.7em;
            font-size: 1.18rem;
            color: #475569;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #0f172a;
            font-size: 1.25rem;
        }
        .btn {
            display: inline-block;
            padding: 20px 40px;
            background-color: #0f172a;
            color: #ffffff;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            margin: 20px 20px 20px 0;
            transition: all 0.4s ease;
            text-align: center;
            font-size: 1.2rem;
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #1e293b;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.25);
        }
        .btn-secondary {
            background-color: #fbbf24;
            color: #0f172a;
        }
        .btn-secondary:hover {
            background-color: #fcd34d;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.25);
        }
        .image-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            transition: transform 0.6s ease;
        }
        img:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            justify-content: center;
            align-items: center;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
            padding: 20px;
            border-radius: 12px;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
        }
        .stat-number {
            font-size: 3.2rem;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        .stat-label {
            color: #64748b;
            font-size: 1.15rem;
            font-weight: 500;
        }
        .review-container {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border-left: 6px solid #fbbf24;
        }
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        .reviewer-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 25px;
            background-color: #e0f2fe;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #0f172a;
            font-size: 1.8rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .reviewer-info h4 {
            color: #0f172a;
            margin-bottom: 8px;
            font-size: 1.4rem;
        }
        .reviewer-location {
            color: #64748b;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
        }
        .reviewer-location::before {
            content: "📍 ";
            margin-right: 8px;
        }
        .review-rating {
            color: #fbbf24;
            margin: 20px 0;
            font-size: 1.7rem;
        }
        .guide-tip {
            background-color: #f0fdf4;
            border-left: 6px solid #10b981;
            padding: 25px 30px;
            margin: 40px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .guide-tip h4 {
            color: #047857;
            margin-bottom: 15px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
        }
        .guide-tip h4::before {
            content: "💡 ";
            margin-right: 12px;
        }
        .event-card {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border-top: 6px solid #fbbf24;
            transition: transform 0.4s ease;
        }
        .event-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .event-date {
            color: #0f172a;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
        }
        .event-date::before {
            content: "📅 ";
            margin-right: 12px;
        }
        .community-platform {
            background-color: #f5fafe;
            border-radius: 15px;
            padding: 25px;
            margin: 35px 0;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .community-icon {
            font-size: 2.2rem;
            color: #0f172a;
        }
        .community-name {
            font-weight: 700;
            color: #0f172a;
            font-size: 1.3rem;
        }
        .community-desc {
            color: #64748b;
            font-size: 1.05rem;
        }
        .community-link {
            margin-left: auto;
            color: #0f172a;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        .community-link:hover {
            color: #fbbf24;
        }
        footer {
            background-color: #0f172a;
            color: #ffffff;
            padding: 70px 0 40px;
            margin-top: 100px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            margin-bottom: 50px;
        }
        .footer-section {
            flex: 1;
            min-width: 300px;
        }
        .footer-section h3 {
            color: #fbbf24;
            margin-bottom: 30px;
            font-size: 1.6rem;
            border-bottom: 3px solid #1e293b;
            padding-bottom: 15px;
            display: block;
        }
        .footer-section h3::before {
            content: "";
            margin-right: 0;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .footer-links a:hover {
            color: #fbbf24;
            padding-left: 8px;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        .tag {
            padding: 12px 22px;
            background-color: #1e293b;
            border-radius: 30px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: #ffffff;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #fbbf24;
            transform: translateY(-3px);
        }
        .tag:hover a {
            color: #0f172a;
        }
        .recommendation {
            background-color: #f8fafc;
            padding: 30px;
            border-radius: 15px;
            margin: 50px 0;
            text-align: center;
            color: #334155;
            font-size: 1.25rem;
            line-height: 2;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 3px solid #1e293b;
            font-size: 1.05rem;
            color: #e2e8f0;
            line-height: 2;
        }
        .game-type-nav {
            margin: 40px 0;
        }
        .game-type-nav h3 {
            margin-bottom: 25px;
        }
        .game-type-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-type-list a {
            padding: 10px 20px;
            background-color: #1e293b;
            color: #ffffff;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .game-type-list a:hover {
            background-color: #fbbf24;
            color: #0f172a;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.7rem;
            }
            h2 {
                font-size: 2.1rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .stat-number {
                font-size: 2.9rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
                margin: 60px 0 25px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
            }
            .btn {
                padding: 18px 35px;
                font-size: 1.1rem;
            }
            .stats-box {
                padding: 35px;
                gap: 25px;
            }
            .stat-item {
                min-width: 180px;
                padding: 18px;
            }
            .stat-number {
                font-size: 2.6rem;
            }
            .review-container {
                padding: 30px;
            }
            .footer-container {
                gap: 40px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #0f172a;
                padding: 40px 30px;
                gap: 25px;
                box-shadow: 0 15px 20px rgba(0,0,0,0.3);
                border-radius: 0 0 20px 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 35px 0 18px;
            }
            .btn {
                width: 100%;
                margin-bottom: 25px;
                padding: 18px 30px;
            }
            .stats-box {
                padding: 30px;
                gap: 20px;
            }
            .stat-item {
                min-width: 150px;
                padding: 15px;
            }
            .stat-number {
                font-size: 2.3rem;
            }
            .review-container {
                padding: 25px;
            }
            .reviewer-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            .footer-container {
                gap: 30px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2rem;
            }
            h1 {
                font-size: 2rem;
                margin-bottom: 35px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.08rem;
            }
            .stats-box {
                padding: 25px;
                gap: 15px;
            }
            .stat-item {
                min-width: 130px;
            }
            .stat-number {
                font-size: 2rem;
            }
            .stat-label {
                font-size: 0.95rem;
            }
            .reviewer-avatar {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            .footer-section {
                min-width: 100%;
            }
            .tags-container {
                gap: 10px;
            }
            .tag {
                padding: 10px 18px;
                font-size: 0.95rem;
            }
        }
