* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f0f2f5;
            color: #1a1a1a;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #1a237e;
            color: #ffeb3b;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 15px rgba(0,0,0,0.3);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            text-decoration: none;
            color: #ffeb3b;
            text-shadow: 0 2px 4px rgba(0,0,0,0.4);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 35px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffeb3b;
            transition: width 0.3s ease;
        }
        nav ul li a:hover {
            color: #ffeb3b;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1a237e;
            font-size: 2.6rem;
            margin-bottom: 35px;
            text-align: center;
            padding-bottom: 18px;
            border-bottom: 4px solid #ffeb3b;
            font-weight: 800;
        }
        h2 {
            color: #1a237e;
            font-size: 2.1rem;
            margin: 50px 0 25px;
            border-bottom: 3px solid #ffeb3b;
            padding-bottom: 12px;
            position: relative;
            padding-left: 15px;
            font-weight: 700;
        }
        h2:before {
            content: '⚡';
            position: absolute;
            left: -5px;
        }
        h3 {
            color: #1a237e;
            font-size: 1.6rem;
            margin: 35px 0 20px;
            padding-left: 12px;
            border-left: 4px solid #ffeb3b;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            color: #333;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #d32f2f;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            margin: 15px 15px 25px 0;
            transition: all 0.3s ease;
            font-size: 1.15rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #b71c1c;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.25);
        }
        .btn-login {
            background-color: #0288d1;
        }
        .btn-login:hover {
            background-color: #0277bd;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .highlight {
            font-weight: 700;
            color: #d32f2f;
        }
        .tag {
            display: inline-block;
            background-color: #ffeb3b;
            color: #1a237e;
            padding: 6px 14px;
            border-radius: 25px;
            margin: 6px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #fdd835;
            transform: translateY(-2px);
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .game-type {
            display: inline-block;
            background-color: #0288d1;
            color: white;
            padding: 7px 16px;
            border-radius: 6px;
            margin: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            background-color: #0277bd;
            transform: translateY(-2px);
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
        }
        .stat-item {
            text-align: center;
            margin: 15px;
            flex: 1;
            min-width: 160px;
            padding: 15px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a237e;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #555;
            font-weight: 500;
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #ffeb3b;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffeb3b;
            display: inline-block;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #3949ab;
            margin-top: 40px;
            font-size: 0.95rem;
            color: #ddd;
            line-height: 1.6;
        }
        .review-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 12px rgba(0,0,0,0.1);
            border-left: 5px solid #0288d1;
        }
        .reviewer {
            font-weight: 700;
            color: #1a237e;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .review-location {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 12px;
            font-style: italic;
        }
        .tips-box {
            background-color: #fff8e1;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid #ffe082;
        }
        .tips-title {
            color: #e65100;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .tips-title:before {
            content: '💡';
            margin-right: 10px;
        }
        .event-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 30px 0;
        }
        .event-image-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }
        .event-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .event-card:hover .event-image {
            transform: scale(1.05);
        }
        .event-details {
            padding: 20px;
        }
        .event-title {
            color: #1a237e;
            font-size: 1.4rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .event-date {
            color: #d32f2f;
            font-weight: 500;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        @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: #1a237e;
                padding: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 18px 0;
                padding: 8px 0;
                border-bottom: 1px solid rgba(255,255,255,0.15);
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 30px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
                padding-bottom: 10px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.05rem;
                text-align: left;
                margin-bottom: 22px;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 20px 0;
                padding: 14px;
            }
            .stat-number {
                font-size: 2.3rem;
            }
            .event-image-container {
                height: 160px;
            }
        }
