* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f9f9f9;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #ff5e00 0%, #ff9500 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 4px;
            font-weight: 500;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #ff5e00;
            font-size: 2.8rem;
            margin: 30px 0 40px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #ffd600;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #ff5e00;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd600;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: #ff5e00;
            bottom: -2px;
            left: 0;
        }
        h3 {
            color: #ff5e00;
            font-size: 1.6rem;
            margin: 35px 0 20px;
            padding-left: 12px;
            border-left: 4px solid #ffd600;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #ff5e00;
            text-decoration: underline dotted #ffd600;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0 60px;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 15px 15px;
            background-color: #ff5e00;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #e04a00;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #34c759;
        }
        .download-btn:hover {
            background-color: #28a745;
        }
        .image-container {
            text-align: center;
            margin: 45px 0 55px;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 2px solid #f0f0f0;
        }
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 45px 0 55px;
            background-color: white;
            padding: 35px 20px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
        }
        .stat-box {
            text-align: center;
            margin: 20px;
            flex: 1;
            min-width: 220px;
            padding: 25px;
            background-color: rgba(255, 94, 0, 0.05);
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-box:hover {
            transform: scale(1.07);
            box-shadow: 0 5px 15px rgba(255, 94, 0, 0.1);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: bold;
            color: #ff5e00;
            margin-bottom: 12px;
        }
        .stat-label {
            font-size: 1.15rem;
            color: #555;
            font-weight: 500;
        }
        .review-container {
            background-color: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
            margin: 45px 0 55px;
        }
        .review {
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 1px solid #f0f0f0;
        }
        .review:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .reviewer {
            font-weight: bold;
            color: #ff5e00;
            margin-bottom: 8px;
            font-size: 1.15rem;
        }
        .review-location {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 12px;
            font-style: italic;
        }
        .rating {
            color: #ffd600;
            margin-bottom: 15px;
            letter-spacing: 2px;
            font-size: 1.2rem;
        }
        .tips-container {
            background-color: #fff8f0;
            padding: 35px;
            border-radius: 12px;
            margin: 45px 0 55px;
            border-left: 5px solid #ff5e00;
        }
        .tip-box {
            margin-bottom: 30px;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        .tip-box:last-child {
            margin-bottom: 0;
        }
        .tag-container {
            margin: 45px 0 55px;
        }
        .tag {
            display: inline-block;
            background-color: #fff0e0;
            color: #ff5e00;
            padding: 9px 18px;
            border-radius: 25px;
            margin: 0 12px 12px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #ffe0cc;
            transform: translateY(-3px);
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        .game-types {
            margin: 45px 0 55px;
        }
        .game-type {
            display: inline-block;
            margin-right: 22px;
            margin-bottom: 12px;
            text-decoration: none;
            color: #ff5e00;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .game-type:hover {
            background-color: #fff0e0;
            transform: translateY(-2px);
        }
        footer {
            background: linear-gradient(135deg, #ff5e00 0%, #ff9500 100%);
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 45px;
        }
        .footer-section h3 {
            color: #ffffff;
            margin-bottom: 25px;
            border-left: 4px solid #ffd600;
            padding-left: 12px;
            font-size: 1.5rem;
        }
        .footer-section p {
            color: #fff8f0;
            opacity: 0.95;
            font-size: 1.05rem;
        }
        .footer-section a {
            color: #ffd600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .footer-section a:hover {
            text-decoration: underline;
            opacity: 0.9;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
            margin-top: 40px;
            font-size: 1rem;
            opacity: 0.9;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0 45px;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
        }
        .comparison-table th, .comparison-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
        }
        .comparison-table th {
            background-color: #ff5e00;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .comparison-table tr:hover {
            background-color: #fff8f0;
        }
        .feature-list {
            margin: 25px 0 35px;
            padding-left: 25px;
        }
        .feature-list li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            position: relative;
            padding-left: 10px;
        }
        .feature-list li:before {
            content: "•";
            color: #ff5e00;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        .event-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        .event-card:hover {
            transform: translateY(-5px);
        }
        .event-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .event-details {
            padding: 25px;
        }
        .event-title {
            color: #ff5e00;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        .event-date {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #ff5e00;
                padding: 25px;
                box-shadow: 0 12px 12px rgba(0,0,0,0.15);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.15);
                padding-bottom: 12px;
            }
            nav ul li:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 2.2rem;
                margin: 25px 0 35px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 92%;
                padding: 14px 20px;
            }
            .stat-box {
                min-width: 100%;
                margin: 15px 0;
            }
            .comparison-table {
                font-size: 0.95rem;
            }
            .comparison-table th, .comparison-table td {
                padding: 12px 10px;
            }
            .review-container, .tips-container {
                padding: 25px 20px;
            }
            .event-image {
                height: 160px;
            }
        }
