* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #1e293b;
            color: #f97316;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 15px rgba(0,0,0,0.6);
        }
        .nav-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;
            color: #f97316;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(249, 115, 22, 0.6);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 28px;
        }
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 6px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            color: #f97316;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f97316;
            font-size: 1.6rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #f97316;
            font-size: 2.7rem;
            margin-bottom: 25px;
            text-align: center;
            padding: 18px 0;
            border-bottom: 3px solid #334155;
            text-shadow: 0 2px 5px rgba(0,0,0,0.6);
        }
        h2 {
            color: #38bdf8;
            font-size: 2.1rem;
            margin: 45px 0 22px;
            padding-left: 12px;
            border-left: 4px solid #f97316;
        }
        h3 {
            color: #60a5fa;
            font-size: 1.6rem;
            margin: 35px 0 18px;
            padding-bottom: 6px;
            border-bottom: 2px dashed #334155;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            color: #e2e8f0;
        }
        .highlight {
            font-weight: bold;
            color: #f97316;
            text-shadow: 0 0 3px rgba(249, 115, 22, 0.4);
        }
        .btn-container {
            margin: 45px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
            justify-content: center;
        }
        .btn {
            padding: 14px 28px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background-color: #f97316;
            color: white;
            box-shadow: 0 4px 0 #ea580c;
        }
        .login-btn {
            background-color: #38bdf8;
            color: #0f172a;
            box-shadow: 0 4px 0 #0ea5e9;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 7px 0 rgba(0,0,0,0.4);
        }
        .image-container {
            margin: 45px 0;
            text-align: center;
            border-radius: 9px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.8);
        }
        .game-image {
            max-width: 100%;
            height: auto;
            transition: transform 0.6s;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: #1e293b;
            border-radius: 11px;
            padding: 28px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.4);
            border-left: 5px solid #f97316;
        }
        .review {
            background-color: rgba(56, 189, 248, 0.1);
            border-left: 4px solid #38bdf8;
            padding: 22px;
            margin: 22px 0;
            border-radius: 0 9px 9px 0;
        }
        .guide-tip {
            background-color: rgba(249, 115, 22, 0.1);
            border-radius: 9px;
            padding: 22px;
            margin: 22px 0;
            display: flex;
            align-items: flex-start;
            border: 1px solid rgba(249, 115, 22, 0.3);
        }
        .guide-tip::before {
            content: "🔍";
            font-size: 1.9rem;
            margin-right: 18px;
            color: #f97316;
        }
        .event-card {
            background-color: #1e293b;
            border-radius: 11px;
            padding: 28px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.4);
            border-top: 5px solid #38bdf8;
        }
        footer {
            background-color: #1e293b;
            color: #e2e8f0;
            padding: 55px 20px;
            margin-top: 70px;
            border-top: 3px solid #f97316;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 35px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.4rem;
            margin-bottom: 18px;
            color: #f97316;
            padding-bottom: 6px;
            border-bottom: 2px solid rgba(249, 115, 22, 0.3);
        }
        .type-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .type-list a, .tag-list a {
            color: #e2e8f0;
            text-decoration: none;
            background-color: #334155;
            padding: 9px 22px;
            border-radius: 28px;
            transition: all 0.3s;
        }
        .type-list a:hover, .tag-list a:hover {
            background-color: #f97316;
            transform: translateY(-3px);
        }
        .recommendation {
            margin: 45px 0;
            font-size: 1.15rem;
            line-height: 1.9;
            padding: 22px;
            background-color: rgba(56, 189, 248, 0.1);
            border-radius: 9px;
        }
        .copyright {
            text-align: center;
            margin-top: 55px;
            padding-top: 22px;
            border-top: 1px solid #334155;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #1e293b;
                padding: 22px;
                box-shadow: 0 12px 12px rgba(0,0,0,0.6);
            }
            .nav-links li {
                margin: 18px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.1rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
