* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, Roboto, "\5FAE\8F6F\96C5\9ED1", PingFang SC, Arial, sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            background-color: #fff;
            display: flex;
            align-items: center;
            /*justify-content: space-between;*/
            padding: 0 95px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000;
			gap: 68px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 0 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 2px;
            font-size: 20px;
            font-weight: bold;
            color: #14b9c7;
            white-space: nowrap;
        }

        .logo-icon {
            display: inline-block;
    width: 50px;
    height: 36px;
    background-image: url(icon-controller.png);
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 0;
    color: transparent;
    overflow: hidden;
        }

        .logo-text {
            flex-shrink: 0;
            
        }
        .logo-text a {
            text-decoration: none;
            color: #14b9c7;
        }

        .search-bar {
            flex: 1;
            max-width: 500px;
            display: flex;
            background-color: #f5f5f5;
            border-radius: 20px;
            overflow: hidden;
        }

        .search-bar input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 10px 20px;
            font-size: 14px;
            outline: none;
            min-width: 0;
        }

        .search-btn {
            border: none;
            background: transparent;
            padding: 0 15px;
            cursor: pointer;
            font-size: 18px;
            flex-shrink: 0;
        }

        .user-icon {
            width: 40px;
            height: 40px;
            background-color: #f5f5f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            flex-shrink: 0;
        }

.container {
    display: flex;
    max-width: 1200px;
    margin: 80px auto 20px;
    gap: 20px;
    padding: 0 20px;
}

.sidebar {
    width: 180px;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px 0;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.nav-menu {
    display: flex;
    flex-direction: column;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-item:hover {
    background-color: #f5f5f5;
    color: #14b9c7;
}

.nav-item.active {
    background-color: #e6faf6;
    color: #14b9c7;
    border-left: 3px solid #14b9c7;
	font-weight: bold;
}

.nav-icon {
    font-size: 18px;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #14b9c7;
}

.featured-card {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 300px;
    display: block;
    text-decoration: none;
    transition: transform 0.3s;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-4px);
}

.featured-card:hover .featured-details h3 {
    color: #14b9c7;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 2;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 20px 20px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.featured-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.featured-details {
    flex: 1;
    color: #fff;
}

.featured-details h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.featured-details p {
    font-size: 14px;
    opacity: 0.9;
}

.featured-price {
    background-color: #14b9c7;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
}

.game-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.game-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.game-item:hover .game-title {
    color: #14b9c7;
}

.game-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.game-info {
    flex: 1;
}



.game-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.game-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.game-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.game-tag {
    background-color: #e6faf6;
    color: #14b9c7;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.game-discount {
    background-color: #14b9c7;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 0;
}

.page-btn {
    background-color: #14b9c7;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.page-btn:hover:not(:disabled) {
    background-color: #00bfa0;
}

.page-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.page-info {
    font-size: 14px;
    color: #666;
    min-width: 80px;
    text-align: center;
}

.right-sidebar {
    width: 280px;
    position: sticky;
    top: 80px;
    height: fit-content;
}

.hot-games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.hot-games-header h3 {
    font-size: 18px;
    color: #14b9c7;
}

.more-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.hot-games-list {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.hot-game-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    color: inherit;
}

.hot-game-item:last-child {
    border-bottom: none;
}

.hot-game-item:hover {
    background-color: #f9f9f9;
}

.hot-game-item:hover .hot-game-title {
    color: #14b9c7;
}

.hot-game-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.hot-game-info {
    flex: 1;
}

.hot-game-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
    color: #333;
}

.hot-game-meta {
    font-size: 12px;
    color: #999;
}

.hot-game-price {
    background-color: #14b9c7;
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.platform-info {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #14b9c7;
    margin-bottom: 10px;
}

.platform-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.download-btn {
    width: 100%;
    background-color: #14b9c7;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 15px;
}

.download-btn:hover {
    background-color: #00bfa0;
}

.qr-code {
    width: 100px;
    height: 100px;
    background-color: #f5f5f5;
    margin: 0 auto 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.footer-text {
    font-size: 11px;
    color: #999;
    line-height: 1.6;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #14b9c7;
}

.footer-section p {
    font-size: 13px;
    line-height: 1.8;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #14b9c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 12px;
    color: #95a5a6;
}

.footer-bottom a {
    color: #95a5a6;
    text-decoration: none;
}
.yqlj  {
    
    display: flex;
    align-items: center;
}
.yqlj ul {
    list-style: none;
}
.yqlj li {
    display: inline-block;
    position: relative;
    margin: 0 5px;
}


}

@media (max-width: 1200px) {
    .container {
        gap: 15px;
    }

    .right-sidebar {
        width: 240px;
    }
}

@media (max-width: 992px) {
    .right-sidebar {
        display: none;
    }

    .main-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    
	  .header {
                padding: 0 15px;
                gap: 10px;
            }

            .header-left {
                gap: 12px;
            }

            .logo {
                font-size: 16px;
                gap: 4px;
            }

            .logo-icon {
                
                display: inline-block;
    width: 36px;
    height: auto;
    background-image: url(icon-controller.png);
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 0;
    color: transparent;
    overflow: hidden;
            }
            
            .logo-text a {
			    font-size: 18px;
			    
			}

            .search-bar input {
                padding: 8px 15px;
                font-size: 13px;
            }

            .user-icon {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }


    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .container {
        margin-top: 70px;
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: static;
        padding: 10px 0;
    }

    .nav-menu {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-item {
        flex-direction: column;
        gap: 5px;
        padding: 10px 15px;
        white-space: nowrap;
        font-size: 12px;
    }

    .nav-item.active {
        border-left: none;
        border-bottom: 3px solid #14b9c7;
    }

    

    .featured-card {
        height: 250px;
    }

    .section-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    
	  .header {
                padding: 0 10px;
                gap: 8px;
            }

            .header-left {
                gap: 8px;
                flex: 0 0 auto;
            }

            

            .logo {
                font-size: 14px;
                gap: 4px;
                min-width: auto;
            }

            .logo-icon {
                font-size: 20px;
            }

            .search-bar {
                flex: 1;
                max-width: none;
            }

            .search-bar input {
                padding: 8px 12px;
                font-size: 12px;
            }

            .search-btn {
                padding: 0 10px;
                font-size: 16px;
            }

            .user-icon {
                width: 32px;
                height: 32px;
                font-size: 16px;
                flex-shrink: 0;
            }
	
	
	

    

    .container {
        padding: 0 10px;
    }

    .game-item {
        padding: 12px;
    }

    .game-icon {
        width: 60px;
        height: 60px;
    }

    .game-title {
        font-size: 14px;
    }

    .game-meta {
        font-size: 12px;
    }

    .featured-card {
        height: 200px;
    }

    .featured-icon {
        width: 60px;
        height: 60px;
    }

    .featured-details h3 {
        font-size: 16px;
    }
}
