* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #f8f0e3;
            color: #2c2420;
            padding-bottom: 80px;
        }
        header {
            background-color: #b71c1c;
            padding: 20px 25px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .logo {
            color: #ffffff;
            font-size: 38px;
            font-weight: 900;
            text-align: center;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin: 15px 0;
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 32px;
            cursor: pointer;
            position: absolute;
            top: 30px;
            left: 20px;
            z-index: 1001;
        }
        .nav-menu {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .nav-menu a:hover {
            background-color: #8c0000;
            transform: translateY(-3px);
        }
        main {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 42px;
            color: #b71c1c;
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 5px solid #ffb74d;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
        }
        h2 {
            font-size: 30px;
            color: #7f0000;
            margin: 60px 0 25px;
            padding-left: 20px;
            border-left: 7px solid #ff9800;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h3 {
            font-size: 24px;
            color: #4d0000;
            margin: 40px 0 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "🔥";
        }
        h4 {
            font-size: 21px;
            color: #3e2723;
            margin: 30px 0 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h4::before {
            content: "⭐";
        }
        p {
            margin-bottom: 22px;
            font-size: 18px;
            text-align: justify;
            padding: 0 5px;
            line-height: 1.8;
        }
        strong {
            color: #b71c1c;
            font-weight: 800;
        }
        .btn {
            display: inline-block;
            padding: 18px 35px;
            margin: 20px 10px;
            background-color: #ff9800;
            color: white;
            text-decoration: none;
            font-weight: 800;
            border-radius: 10px;
            font-size: 20px;
            text-align: center;
            box-shadow: 0 6px 15px rgba(255,152,0,0.5);
            transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255,152,0,0.7);
            background-color: #f57c00;
        }
        .btn-login {
            background-color: #4d0000;
        }
        .btn-login:hover {
            background-color: #6d0000;
        }
        .image-container {
            text-align: center;
            margin: 45px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            border: 4px solid #ffb74d;
        }
        .stats-box {
            background-color: #fff3e0;
            padding: 30px;
            border-radius: 12px;
            margin: 35px 0;
            border-left: 8px solid #ff9800;
            box-shadow: 0 5px 12px rgba(0,0,0,0.08);
        }
        .stats-box h3 {
            margin-top: 0;
            color: #7f0000;
        }
        .stats-box ul {
            list-style-type: none;
        }
        .stats-box li {
            font-size: 18px;
            margin: 15px 0;
            padding-left: 30px;
            position: relative;
            display: flex;
            align-items: flex-start;
        }
        .stats-box li::before {
            content: "🏆";
            position: absolute;
            left: 0;
            top: 5px;
        }
        .review-card {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #b71c1c;
            border-bottom: 3px solid #ffb74d;
        }
        .reviewer {
            font-weight: 800;
            color: #4d0000;
            margin-bottom: 8px;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .reviewer::after {
            content: "📍";
        }
        .review-rating {
            color: #ffb74d;
            margin-bottom: 15px;
            font-size: 22px;
        }
        .guide-tip {
            background-color: #e8f5e9;
            padding: 28px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 8px solid #2e7d32;
            box-shadow: 0 5px 12px rgba(0,0,0,0.08);
        }
        .guide-tip h4 {
            color: #1b5e20;
            font-size: 22px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .guide-tip h4::before {
            content: "💡";
        }
        .event-card {
            background-color: #fce4ec;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border-top: 5px solid #8e24aa;
        }
        .event-date {
            color: #6a1b9a;
            font-weight: 800;
            margin-bottom: 15px;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .event-date::before {
            content: "📅";
        }
        .community-link {
            color: #0277bd;
            text-decoration: none;
            font-weight: 700;
            font-size: 19px;
            transition: color 0.3s, text-decoration 0.3s;
        }
        .community-link:hover {
            color: #01579b;
            text-decoration: underline;
        }
        .regional-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .regional-card {
            background-color: #ffffff;
            padding: 28px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #b71c1c;
        }
        .regional-card h4 {
            color: #7f0000;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tournament-table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0;
        }
        .tournament-table th, .tournament-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 3px solid #fff3e0;
        }
        .tournament-table th {
            background-color: #fff3e0;
            color: #4d0000;
            font-size: 19px;
        }
        .tournament-table td {
            font-size: 18px;
        }
        .tournament-table tr:hover {
            background-color: #fff8e1;
        }
        .pro-tip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }
        .pro-tip-card {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 6px solid #2e7d32;
        }
        .pro-tip-card h4 {
            color: #1b5e20;
            margin-bottom: 12px;
        }
        .tag-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }
        .tag-item {
            color: #ffffff;
            background-color: #5d4037;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
        }
        .tag-item:hover {
            background-color: #ff9800;
            transform: translateY(-2px);
        }
        .category-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }
        .category-item {
            color: #ffffff;
            background-color: #3949ab;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
        }
        .category-item:hover {
            background-color: #ff9800;
            transform: translateY(-2px);
        }
        footer {
            background-color: #263238;
            color: #f5f5f5;
            padding: 60px 25px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .game-categories, .tags, .recommendation {
            margin-bottom: 30px;
        }
        .game-categories h3, .tags h3 {
            color: #ffb74d;
            margin-bottom: 20px;
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .recommendation {
            background-color: #37474f;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            font-size: 19px;
            line-height: 1.9;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .recommendation strong {
            color: #ffb74d;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 3px solid #37474f;
            font-size: 18px;
            color: #b0bec5;
            margin-top: 25px;
        }
        .copyright a {
            color: #ffb74d;
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .faq-card {
            background-color: #ffffff;
            padding: 22px;
            border-radius: 10px;
            margin: 18px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .faq-question {
            font-weight: 700;
            color: #7f0000;
            font-size: 19px;
            margin-bottom: 8px;
        }
        .faq-answer {
            font-size: 18px;
            color: #3e2723;
        }
        @media (max-width: 992px) {
            .logo {
                font-size: 34px;
                margin-left: 60px;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 20px;
                margin-top: 35px;
                background-color: #b71c1c;
                padding: 30px 0;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            }
            .nav-menu.active {
                display: flex;
            }
            h1 {
                font-size: 38px;
                margin-bottom: 45px;
            }
            h2 {
                font-size: 28px;
                margin: 50px 0 22px;
            }
            h3 {
                font-size: 23px;
            }
            h4 {
                font-size: 20px;
            }
            p {
                font-size: 17px;
            }
            .btn {
                padding: 16px 30px;
                font-size: 19px;
                width: 100%;
                margin: 15px 0;
            }
            .stats-box li {
                font-size: 17px;
            }
            .reviewer {
                font-size: 19px;
            }
            .event-date {
                font-size: 19px;
            }
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 30px;
                margin-left: 50px;
            }
            .nav-menu {
                gap: 18px;
                padding: 25px 0;
            }
            h1 {
                font-size: 34px;
                margin-bottom: 40px;
            }
            h2 {
                font-size: 26px;
                margin: 45px 0 20px;
                padding-left: 15px;
            }
            h3 {
                font-size: 22px;
            }
            .image-container {
                margin: 35px 0;
            }
            .stats-box {
                padding: 25px;
            }
            .review-card {
                padding: 22px;
            }
            .footer-container {
                gap: 30px;
            }
            .recommendation {
                font-size: 18px;
                padding: 25px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 26px;
                margin-left: 40px;
            }
            .nav-toggle {
                font-size: 28px;
                top: 22px;
            }
            main {
                padding: 0 15px;
            }
            h1 {
                font-size: 30px;
                margin-bottom: 35px;
            }
            h2 {
                font-size: 24px;
                margin: 40px 0 18px;
            }
            .btn {
                padding: 14px 25px;
                font-size: 17px;
            }
            .stats-box li {
                padding-left: 25px;
                font-size: 16px;
            }
            .regional-grid {
                grid-template-columns: 1fr;
            }
            .pro-tip-grid {
                grid-template-columns: 1fr;
            }
            .tournament-table th, .tournament-table td {
                padding: 12px;
                font-size: 16px;
            }
            .tag-item, .category-item {
                padding: 8px 16px;
                font-size: 16px;
            }
        }
