* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #fff5e6;
            color: #333;
            padding-bottom: 60px;
        }
        header {
            background-color: #e63946;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .logo {
            color: #fff;
            font-size: 32px;
            font-weight: 900;
            text-align: center;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin: 10px 0;
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            position: absolute;
            top: 25px;
            left: 20px;
            z-index: 1001;
        }
        .nav-menu {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .nav-menu a:hover {
            background-color: #c1121f;
            transform: translateY(-2px);
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 42px;
            color: #d62828;
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 4px solid #ffb703;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 30px;
            color: #c71f37;
            margin: 50px 0 25px;
            padding-left: 20px;
            border-left: 6px solid #ff7b00;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.08);
        }
        h3 {
            font-size: 24px;
            color: #9d0208;
            margin: 35px 0 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "🔥";
        }
        h4 {
            font-size: 21px;
            color: #7f1d1d;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 19px;
            text-align: justify;
            padding: 0 5px;
        }
        .keyword {
            font-weight: 800;
            color: #d62828;
            text-decoration: underline dotted;
        }
        .btn {
            display: inline-block;
            padding: 18px 35px;
            margin: 20px 12px;
            background-color: #ff5a1f;
            color: white;
            text-decoration: none;
            font-weight: 800;
            border-radius: 10px;
            font-size: 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(255,90,31,0.4);
            transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(255,90,31,0.6);
            background-color: #e04710;
        }
        .btn-login {
            background-color: #9d0208;
        }
        .btn-login:hover {
            background-color: #740001;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.18);
            border: 3px solid #ffb703;
        }
        .stats-box {
            background-color: #ffedd5;
            padding: 30px;
            border-radius: 12px;
            margin: 35px 0;
            border-left: 7px solid #ff7b00;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .stats-box h3 {
            margin-top: 0;
            color: #c71f37;
        }
        .stats-box ul {
            list-style-type: none;
        }
        .stats-box li {
            font-size: 19px;
            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: #fff;
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
            border-top: 4px solid #e63946;
            border-bottom: 2px solid #ffb703;
        }
        .reviewer {
            font-weight: 800;
            color: #9d0208;
            margin-bottom: 8px;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .reviewer::after {
            content: "📍";
        }
        .review-rating {
            color: #ffb703;
            margin-bottom: 15px;
            font-size: 22px;
        }
        .guide-tip {
            background-color: #fef7fb;
            padding: 28px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 7px solid #9333ea;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .guide-tip h4 {
            color: #7e22ce;
            font-size: 22px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .guide-tip h4::before {
            content: "💡";
        }
        .event-card {
            background-color: #f0fdf4;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border-top: 4px solid #16a34a;
        }
        .event-date {
            color: #15803d;
            font-weight: 800;
            margin-bottom: 15px;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .event-date::before {
            content: "📅";
        }
        .community-link {
            color: #0284c7;
            text-decoration: none;
            font-weight: 700;
            font-size: 19px;
            transition: color 0.3s, text-decoration 0.3s;
        }
        .community-link:hover {
            color: #0369a1;
            text-decoration: underline;
        }
        .section-divider {
            height: 3px;
            background: linear-gradient(90deg, transparent, #ff7b00, transparent);
            margin: 60px 0;
            border: none;
        }
        footer {
            background-color: #1f2937;
            color: #f3f4f6;
            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: #ffb703;
            margin-bottom: 20px;
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .category-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .category-list a, .tag-list a {
            color: #f3f4f6;
            background-color: #374151;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
        }
        .category-list a:hover, .tag-list a:hover {
            background-color: #ff7b00;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #374151;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            font-size: 20px;
            line-height: 1.9;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .recommendation strong {
            color: #ffb703;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 2px solid #374151;
            font-size: 17px;
            color: #d1d5db;
            margin-top: 20px;
        }
        .copyright a {
            color: #ffb703;
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .power-up-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .power-up-card {
            background-color: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
            border-left: 5px solid #9333ea;
        }
        .power-up-card h4 {
            color: #7e22ce;
            margin-bottom: 10px;
        }
        .regional-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .regional-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border-top: 4px solid #e63946;
        }
        .regional-card h4 {
            color: #c71f37;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tournament-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        .tournament-table th, .tournament-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 2px solid #ffedd5;
        }
        .tournament-table th {
            background-color: #ffedd5;
            color: #9d0208;
            font-size: 19px;
        }
        .tournament-table td {
            font-size: 18px;
        }
        .tournament-table tr:hover {
            background-color: #fffaf0;
        }
        @media (max-width: 992px) {
            .logo {
                font-size: 28px;
                margin-left: 60px;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 20px;
                margin-top: 30px;
                background-color: #e63946;
                padding: 30px 0;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
            .nav-menu.active {
                display: flex;
            }
            h1 {
                font-size: 36px;
                margin-bottom: 40px;
            }
            h2 {
                font-size: 26px;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 22px;
            }
            h4 {
                font-size: 19px;
            }
            p {
                font-size: 17px;
            }
            .btn {
                padding: 15px 30px;
                font-size: 18px;
                width: 100%;
                margin: 15px 0;
            }
            .stats-box li {
                font-size: 17px;
            }
            .reviewer {
                font-size: 18px;
            }
            .event-date {
                font-size: 18px;
            }
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 24px;
                margin-left: 50px;
            }
            .nav-menu {
                gap: 15px;
                padding: 20px 0;
            }
            h1 {
                font-size: 32px;
                margin-bottom: 35px;
            }
            h2 {
                font-size: 24px;
                margin: 35px 0 18px;
                padding-left: 15px;
            }
            h3 {
                font-size: 20px;
            }
            .image-container {
                margin: 30px 0;
            }
            .stats-box {
                padding: 25px;
            }
            .review-card {
                padding: 20px;
            }
            .footer-container {
                gap: 30px;
            }
            .recommendation {
                font-size: 18px;
                padding: 25px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 22px;
                margin-left: 40px;
            }
            .nav-toggle {
                font-size: 24px;
                top: 20px;
            }
            main {
                padding: 0 15px;
            }
            h1 {
                font-size: 28px;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 22px;
                margin: 30px 0 15px;
            }
            .btn {
                padding: 12px 25px;
                font-size: 16px;
            }
            .stats-box li {
                padding-left: 25px;
                font-size: 16px;
            }
            .regional-grid {
                grid-template-columns: 1fr;
            }
            .power-up-grid {
                grid-template-columns: 1fr;
            }
            .tournament-table th, .tournament-table td {
                padding: 12px;
                font-size: 16px;
            }
        }
