* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #e63946;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 1.6rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdfdf;
            border-bottom: 2px solid #ffdfdf;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #c1121f;
            font-size: 2.7rem;
            margin-bottom: 25px;
            text-align: center;
            padding: 20px 0;
            border-bottom: 4px solid #e63946;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #d62828;
            font-size: 2.1rem;
            margin: 45px 0 22px;
            padding-left: 12px;
            border-left: 5px solid #e63946;
        }
        h3 {
            color: #f472b6;
            font-size: 1.6rem;
            margin: 32px 0 18px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🌶️";
            margin-right: 10px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.15rem;
            color: #333333;
        }
        .highlight {
            font-weight: bold;
            color: #c1121f;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 12px 12px 25px 0;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 6px rgba(230, 57, 70, 0.3);
        }
        .btn:hover {
            background-color: #d62828;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(230, 57, 70, 0.4);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
            border-top: 5px solid #e63946;
        }
        .review {
            background-color: #ffffff;
            border-left: 5px solid #e63946;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .tag {
            display: inline-block;
            background-color: #ffe8e8;
            padding: 6px 14px;
            border-radius: 25px;
            margin: 6px;
            text-decoration: none;
            color: #c1121f;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: #ffd5d5;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 12px 12px 12px 0;
            text-decoration: none;
            color: #c1121f;
            font-weight: 500;
            border-bottom: 1px dashed #c1121f;
        }
        .game-type:hover {
            border-bottom: 1px solid #c1121f;
        }
        footer {
            max-width: 1200px;
            margin: 60px auto 0;
            padding: 35px 20px;
            border-top: 3px solid #e63946;
            background-color: #fff;
            border-radius: 12px 12px 0 0;
        }
        .footer-section {
            margin: 25px 0;
        }
        .tips-box {
            background-color: #fff0f0;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #f472b6;
        }
        .event-card {
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .event-card img {
            border-radius: 10px 10px 0 0;
            margin: 0;
        }
        .event-details {
            padding: 20px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                padding: 15px 0;
            }
            h2 {
                font-size: 1.8rem;
                margin: 35px 0 18px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 28px 0 15px;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                padding: 12px 24px;
                width: 100%;
                margin: 10px 0;
            }
            .stats-box {
                padding: 20px;
            }
            .review {
                padding: 15px;
            }
        }
