.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.site-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-right: 20px;
    white-space: nowrap;
    padding-right: 20px;
    border-right: 1px solid #eee;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    background: #f5f5f5;
    border-radius: 6px;
    padding: 8px 15px;
    cursor: pointer;
}

.search-input-wrapper:hover {
    background: #f0f0f0;
}

.search-bar input {
    flex: 1;
    border: none;
    background: none;
    padding: 0;
    font-size: 16px;
    outline: none;
    color: #666;
    width: 4rem;
}

.search-bar .search-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.search-bar .download-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.swiper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.section {
    background: #ffffff69;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.section-header h2 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.more {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.more:hover {
    color: #1890ff;
}

.game-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.game-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.game-item img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-right: 15px;
    object-fit: cover;
}

.game-info {
    flex: 1;
}

.game-info h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
}

.game-info p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.game-item .download {
    padding: 8px 20px;
    background: #1890ff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.game-item .download:hover {
    background: #40a9ff;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.game-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.game-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.game-card p {
    padding: 10px;
    margin: 0;
    font-size: 14px;
    color: #333;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-section {
    margin-top: 30px;
}

.category-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #1890ff;
}