* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #1a1a2e;
            color: #f0f0f5;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #16213e;
            color: #e94560;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #e94560;
            text-decoration: none;
            text-shadow: 0 0 8px rgba(233, 69, 96, 0.7);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: #f0f0f5;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            color: #e94560;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #e94560;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #e94560;
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            padding: 15px 0;
            border-bottom: 3px solid #0f3460;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            color: #4cc9f0;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #e94560;
        }
        h3 {
            color: #4895ef;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 2px dashed #0f3460;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.1rem;
            color: #f0f0f5;
        }
        .highlight {
            font-weight: bold;
            color: #e94560;
            text-shadow: 0 0 2px rgba(233, 69, 96, 0.5);
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .btn {
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background-color: #e94560;
            color: white;
            box-shadow: 0 4px 0 #c73659;
        }
        .login-btn {
            background-color: #4cc9f0;
            color: #16213e;
            box-shadow: 0 4px 0 #3aabd0;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 0 rgba(0,0,0,0.3);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .game-image {
            max-width: 100%;
            height: auto;
            transition: transform 0.5s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #16213e;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            border-left: 5px solid #e94560;
        }
        .review {
            background-color: rgba(76, 201, 240, 0.1);
            border-left: 4px solid #4cc9f0;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .guide-tip {
            background-color: rgba(233, 69, 96, 0.1);
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            display: flex;
            align-items: flex-start;
            border: 1px solid rgba(233, 69, 96, 0.3);
        }
        .guide-tip::before {
            content: "🎯";
            font-size: 1.8rem;
            margin-right: 15px;
            color: #e94560;
        }
        .event-card {
            background-color: #16213e;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            border-top: 5px solid #4cc9f0;
        }
        footer {
            background-color: #16213e;
            color: #f0f0f5;
            padding: 50px 20px;
            margin-top: 60px;
            border-top: 3px solid #e94560;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 30px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #e94560;
            padding-bottom: 5px;
            border-bottom: 2px solid rgba(233, 69, 96, 0.3);
        }
        .type-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .type-list a, .tag-list a {
            color: #f0f0f5;
            text-decoration: none;
            background-color: #0f3460;
            padding: 8px 20px;
            border-radius: 25px;
            transition: all 0.3s;
        }
        .type-list a:hover, .tag-list a:hover {
            background-color: #e94560;
            transform: translateY(-2px);
        }
        .recommendation {
            margin: 40px 0;
            font-size: 1.1rem;
            line-height: 1.8;
            padding: 20px;
            background-color: rgba(76, 201, 240, 0.1);
            border-radius: 8px;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #0f3460;
            color: #b0b0c0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #16213e;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.5);
            }
            .nav-links li {
                margin: 15px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
