* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #fdf2f8;
            color: #2d3748;
            padding-bottom: 80px;
        }
        header {
            background-color: #e53e3e;
            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: 36px;
            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: 35px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .nav-menu a:hover {
            background-color: #c53030;
            transform: translateY(-3px);
        }
        main {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 45px;
            color: #d92d20;
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 25px;
            border-bottom: 5px solid #fbbf24;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
        }
        h2 {
            font-size: 32px;
            color: #b91c1c;
            margin: 60px 0 30px;
            padding-left: 25px;
            border-left: 7px solid #f97316;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h3 {
            font-size: 26px;
            color: #7f1d1d;
            margin: 40px 0 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3::before {
            content: "⚔️";
        }
        h4 {
            font-size: 22px;
            color: #4b5563;
            margin: 30px 0 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h4::before {
            content: "🌟";
        }
        p {
            margin-bottom: 25px;
            font-size: 19px;
            text-align: justify;
            padding: 0 8px;
        }
        .keyword {
            font-weight: 800;
            color: #d92d20;
            text-decoration: underline dotted;
        }
        .btn {
            display: inline-block;
            padding: 20px 40px;
            margin: 25px 15px;
            background-color: #f97316;
            color: white;
            text-decoration: none;
            font-weight: 800;
            border-radius: 12px;
            font-size: 22px;
            text-align: center;
            box-shadow: 0 6px 18px rgba(249,115,22,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 25px rgba(249,115,22,0.7);
            background-color: #ea580c;
        }
        .btn-login {
            background-color: #7f1d1d;
        }
        .btn-login:hover {
            background-color: #6b21a8;
        }
        .image-container {
            text-align: center;
            margin: 50px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 4px solid #fbbf24;
        }
        .stats-box {
            background-color: #fee2e2;
            padding: 35px;
            border-radius: 15px;
            margin: 40px 0;
            border-left: 8px solid #f97316;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stats-box h3 {
            margin-top: 0;
            color: #b91c1c;
        }
        .stats-box ul {
            list-style-type: none;
        }
        .stats-box li {
            font-size: 20px;
            margin: 18px 0;
            padding-left: 35px;
            position: relative;
            display: flex;
            align-items: flex-start;
        }
        .stats-box li::before {
            content: "🥇";
            position: absolute;
            left: 0;
            top: 8px;
        }
        .review-card {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border-top: 5px solid #e53e3e;
            border-bottom: 3px solid #fbbf24;
        }
        .reviewer {
            font-weight: 800;
            color: #7f1d1d;
            margin-bottom: 10px;
            font-size: 21px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .reviewer::after {
            content: "📍";
        }
        .review-rating {
            color: #fbbf24;
            margin-bottom: 18px;
            font-size: 24px;
        }
        .guide-tip {
            background-color: #f0fdf4;
            padding: 32px;
            border-radius: 15px;
            margin: 35px 0;
            border-left: 8px solid #10b981;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .guide-tip h4 {
            color: #059669;
            font-size: 24px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .guide-tip h4::before {
            content: "💡";
        }
        .event-card {
            background-color: #fef7fb;
            padding: 35px;
            border-radius: 15px;
            margin: 35px 0;
            box-shadow: 0 7px 20px rgba(0,0,0,0.1);
            border-top: 5px solid #8b5cf6;
        }
        .event-date {
            color: #6d28d9;
            font-weight: 800;
            margin-bottom: 18px;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .event-date::before {
            content: "📅";
        }
        .community-link {
            color: #0284c7;
            text-decoration: none;
            font-weight: 700;
            font-size: 20px;
            transition: color 0.3s, text-decoration 0.3s;
        }
        .community-link:hover {
            color: #0369a1;
            text-decoration: underline;
        }
        .regional-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 35px;
            margin: 45px 0;
        }
        .regional-card {
            background-color: #ffffff;
            padding: 32px;
            border-radius: 15px;
            box-shadow: 0 7px 20px rgba(0,0,0,0.1);
            border-top: 5px solid #e53e3e;
        }
        .regional-card h4 {
            color: #b91c1c;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .tournament-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
        }
        .tournament-table th, .tournament-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 3px solid #fee2e2;
        }
        .tournament-table th {
            background-color: #fee2e2;
            color: #7f1d1d;
            font-size: 20px;
        }
        .tournament-table td {
            font-size: 19px;
        }
        .tournament-table tr:hover {
            background-color: #fffaf0;
        }
        .pro-tip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .pro-tip-card {
            background-color: #ffffff;
            padding: 28px;
            border-radius: 15px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border-left: 6px solid #10b981;
        }
        .pro-tip-card h4 {
            color: #059669;
            margin-bottom: 15px;
        }
        .tag-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .tag-item {
            color: #ffffff;
            background-color: #6b7280;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        .tag-item:hover {
            background-color: #f97316;
            transform: translateY(-2px);
        }
        .category-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .category-item {
            color: #ffffff;
            background-color: #4f46e5;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        .category-item:hover {
            background-color: #3b82f6;
            transform: translateY(-2px);
        }
        footer {
            background-color: #1e293b;
            color: #f1f5f9;
            padding: 70px 30px;
            margin-top: 100px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 45px;
        }
        .game-categories, .tags, .recommendation {
            margin-bottom: 35px;
        }
        .game-categories h3, .tags h3 {
            color: #fbbf24;
            margin-bottom: 25px;
            font-size: 24px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .recommendation {
            background-color: #334155;
            padding: 35px;
            border-radius: 15px;
            text-align: center;
            font-size: 21px;
            line-height: 2.0;
            box-shadow: 0 5px 18px rgba(0,0,0,0.2);
        }
        .recommendation strong {
            color: #fbbf24;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 3px solid #334155;
            font-size: 19px;
            color: #94a3b8;
            margin-top: 30px;
        }
        .copyright a {
            color: #fbbf24;
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .faq-card {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 12px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .faq-question {
            font-weight: 700;
            color: #b91c1c;
            font-size: 20px;
            margin-bottom: 10px;
        }
        .faq-answer {
            font-size: 19px;
            color: #4b5563;
        }
        @media (max-width: 992px) {
            .logo {
                font-size: 32px;
                margin-left: 70px;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 25px;
                margin-top: 40px;
                background-color: #e53e3e;
                padding: 35px 0;
                border-radius: 12px;
                box-shadow: 0 6px 18px rgba(0,0,0,0.15);
            }
            .nav-menu.active {
                display: flex;
            }
            h1 {
                font-size: 40px;
                margin-bottom: 50px;
            }
            h2 {
                font-size: 28px;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 24px;
            }
            h4 {
                font-size: 20px;
            }
            p {
                font-size: 18px;
            }
            .btn {
                padding: 18px 35px;
                font-size: 20px;
                width: 100%;
                margin: 20px 0;
            }
            .stats-box li {
                font-size: 18px;
            }
            .reviewer {
                font-size: 20px;
            }
            .event-date {
                font-size: 20px;
            }
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 28px;
                margin-left: 60px;
            }
            .nav-menu {
                gap: 20px;
                padding: 30px 0;
            }
            h1 {
                font-size: 36px;
                margin-bottom: 45px;
            }
            h2 {
                font-size: 26px;
                margin: 45px 0 22px;
                padding-left: 20px;
            }
            h3 {
                font-size: 22px;
            }
            .image-container {
                margin: 40px 0;
            }
            .stats-box {
                padding: 30px;
            }
            .review-card {
                padding: 25px;
            }
            .footer-container {
                gap: 35px;
            }
            .recommendation {
                font-size: 20px;
                padding: 30px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 24px;
                margin-left: 50px;
            }
            .nav-toggle {
                font-size: 28px;
                top: 25px;
            }
            main {
                padding: 0 20px;
            }
            h1 {
                font-size: 32px;
                margin-bottom: 40px;
            }
            h2 {
                font-size: 24px;
                margin: 40px 0 20px;
            }
            .btn {
                padding: 15px 30px;
                font-size: 18px;
            }
            .stats-box li {
                padding-left: 30px;
                font-size: 17px;
            }
            .regional-grid {
                grid-template-columns: 1fr;
            }
            .pro-tip-grid {
                grid-template-columns: 1fr;
            }
            .tournament-table th, .tournament-table td {
                padding: 15px;
                font-size: 17px;
            }
            .tag-item, .category-item {
                padding: 10px 20px;
                font-size: 17px;
            }
        }
