/* ==================== user_center.css ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'microsoft yahei', sans-serif;
    background: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== 头部 ===== */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.header p {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== 用户信息卡片 ===== */
.user-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.user-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f0f0;
    margin-right: 20px;
}
.user-details h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.user-stats {
    display: flex;
    gap: 60px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    min-width: 80px;
}
.stat-value {
    font-size: 28px;
    font-weight: bold;
    color: #667eea;
}
.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* ===== 两列网格布局 ===== */
.row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.grid-item {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}
.grid-item h2 {
    font-size: 20px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}
.grid-item .badge {
    font-size: 12px;
    color: white;
    padding: 2px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-left: 5px;
}
.badge.sign {
    background: #4caf50;
}
.badge.exchange {
    background: #ff6b6b;
}
.badge.recharge {
    background: #667eea;
}

/* ===== 按钮 ===== */
.grid-item .btn-main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    margin-top: 5px;
}
.grid-item .btn-main:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}
.grid-item .btn-main:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.grid-item .info-text {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    line-height: 1.8;
}
.grid-item .info-text .highlight {
    color: #667eea;
    font-weight: bold;
}

/* ===== 记录列表 ===== */
.grid-item .mini-list {
    list-style: none;
    text-align: left;
    max-height: 220px;
    overflow-y: auto;
    margin-top: 10px;
}
.grid-item .mini-list::-webkit-scrollbar {
    width: 5px;
}
.grid-item .mini-list::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}
.grid-item .mini-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}
.grid-item .mini-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.grid-item .mini-list li:last-child {
    border-bottom: none;
}
.grid-item .mini-list .time {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    margin-left: 10px;
}
.grid-item .mini-list .desc {
    color: #333;
    font-size: 13px;
}
.grid-item .mini-list .desc .hl {
    font-weight: bold;
}
.grid-item .mini-list .desc .hl.exchange {
    color: #ff6b6b;
}
.grid-item .mini-list .desc .hl.sign {
    color: #4caf50;
}

/* ===== 通用 ===== */
.back-btn {
    display: inline-block;
    margin: 10px 0 20px 0;
    padding: 10px 20px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}
.footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
    font-size: 14px;
}

/* ===== Toast提示 ===== */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10000;
    animation: slideIn 0.3s ease;
}
.toast.error {
    background: #f44336;
}
.toast.warning {
    background: #ff9800;
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== 充值弹窗 ===== */
.redpacket-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.redpacket-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    color: #fff;
    animation: modalFadeIn 0.3s;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}
.redpacket-content::-webkit-scrollbar {
    width: 8px;
}
.redpacket-content::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}
.redpacket-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}
.redpacket-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.redpacket-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 30px;
    border: none;
    background: none;
    cursor: pointer;
    color: rgba(255,255,255,0.8);
    z-index: 10001;
}
.redpacket-close:hover {
    color: #fff;
}
.redpacket-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.redpacket-amount {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%,100%{ transform:scale(1); }
    50%{ transform:scale(1.05); }
}
.redpacket-user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
}
.redpacket-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}
.redpacket-user-name {
    font-size: 16px;
    font-weight: bold;
}
.redpacket-form {
    margin: 20px 0;
    display: block;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: normal;
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
    color: #333;
    height: auto;
    line-height: normal;
}
.form-control:focus {
    outline: none;
    border-color: #fff;
    background: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.form-control option {
    color: #333;
    background: #fff;
}
.btn-get-redpacket {
    width: 100%;
    padding: 15px;
    background: #ffd700;
    color: #667eea;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin: 20px 0;
    display: block;
    text-align: center;
    line-height: normal;
    height: auto;
}
.btn-get-redpacket:hover:not(:disabled) {
    background: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-get-redpacket:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}
.redpacket-notice {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    padding: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-top: 10px;
}
.redpacket-success {
    text-align: center;
    padding: 20px;
    display: none;
}
.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 1s;
}
@keyframes bounce {
    0%,20%,50%,80%,100%{ transform:translateY(0); }
    40%{ transform:translateY(-30px); }
    60%{ transform:translateY(-15px); }
}
.success-message {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}
.success-detail {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}
.amount-quick-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.amount-quick-btn {
    padding: 8px 16px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}
.amount-quick-btn:hover {
    background: rgba(255,255,255,0.4);
}
.amount-quick-btn.active {
    background: #ffd700;
    color: #667eea;
    border-color: #ffd700;
}
.amount-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
}

/* ===== 手机端遮罩 ===== */
.mobile-block {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 30px;
}
.mobile-block-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.mobile-block-icon {
    font-size: 64px;
    margin-bottom: 20px;
}
.mobile-block-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.mobile-block-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.mobile-block-desc strong {
    color: #667eea;
}
.mobile-block-btn {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}
.mobile-block-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

/* ==================== 游戏列表区域 ==================== */

.game-list-section {
    background: white;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 20px 0 30px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    width: 100%;
    box-sizing: border-box;
}

.game-list-section .list-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 3px solid #ff6b00;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-list-section .list-title .game-count {
    font-size: 14px;
    font-weight: normal;
    color: #999;
    background: #f5f5f5;
    padding: 4px 16px;
    border-radius: 20px;
}

/* ===== 搜索框 ===== */
.game-search-box {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.game-search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 30px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
    background: #fafafa;
    min-width: 200px;
}

.game-search-box input:focus {
    border-color: #ff6b00;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,107,0,0.08);
}

.game-search-box input::placeholder {
    color: #bbb;
}

.game-search-box .search-btn {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 0 35px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
    white-space: nowrap;
}

.game-search-box .search-btn:hover {
    background: #e55a00;
}

/* ===== 热门标签 ===== */
.hot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    padding: 10px 0;
}

.hot-tags .hot-tag {
    background: #f0f2f5;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #555;
    border: 1px solid transparent;
    user-select: none;
}

.hot-tags .hot-tag:hover {
    background: #ff6b00;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,107,0,0.25);
}

.hot-tags .hot-tag:active {
    transform: scale(0.95);
}

/* ===== 搜索提示 ===== */
.search-result-info {
    background: #fff3e0;
    padding: 10px 18px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 4px solid #ff6b00;
    font-size: 14px;
    color: #333;
    display: none;
}

.search-result-info span {
    font-weight: bold;
    color: #ff6b00;
}

/* ===== 列表头部 - 四列 ===== */
.game-list-section .list-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    color: white;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.5px;
}

.game-list-section .list-header > div:first-child {
    text-align: left;
    padding-left: 10px;
}

.game-list-section .list-header > div:last-child {
    text-align: right;
    padding-right: 10px;
}

/* ===== 游戏列表容器 - 固定高度 + 滚动 ===== */
#gameListContainer {
    max-height: 420px;
    overflow-y: auto;
    border-radius: 0 0 10px 10px;
    background: #fff;
    border: 1px solid #f0f2f5;
    border-top: none;
}

#gameListContainer::-webkit-scrollbar {
    width: 5px;
}

#gameListContainer::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

#gameListContainer::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

#gameListContainer::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* ===== 游戏项 - 四列 ===== */
.game-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    background: #fff;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f2f5;
    align-items: center;
    text-align: center;
    transition: background 0.2s ease;
}

.game-item:last-child {
    border-bottom: none;
}

.game-item:hover {
    background: #f8faff;
}

.game-item:nth-child(even) {
    background: #fafcff;
}

.game-item:nth-child(even):hover {
    background: #f5f8ff;
}

.game-item .game-name {
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    font-size: 15px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== 新服推荐列 ===== */
.game-item .game-tag {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-item .bonus-info {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    min-width: 55px;
    text-align: center;
}

.game-item .bonus-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.game-item .bonus-section:last-child {
    justify-content: flex-end;
    padding-right: 10px;
}

/* ===== 按钮样式 ===== */
.btn-bonus {
    background: linear-gradient(135deg, #ff6b00, #e55a00);
    color: white;
    border: none;
    padding: 6px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255,107,0,0.25);
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.35);
}

.btn-bonus:active {
    transform: scale(0.95);
}

.btn-claimed {
    background: #d5d5d5;
    color: #888;
    border: none;
    padding: 6px 24px;
    border-radius: 25px;
    font-size: 14px;
    cursor: not-allowed;
    white-space: nowrap;
}

.btn-disabled {
    background: #e8e8e8;
    color: #aaa;
    border: none;
    padding: 6px 24px;
    border-radius: 25px;
    font-size: 14px;
    cursor: not-allowed;
    white-space: nowrap;
}

/* ===== 积分兑换按钮样式 ===== */
.btn-exchange {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 6px 18px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
}

.btn-exchange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.btn-exchange:active {
    transform: scale(0.95);
}

/* ===== 加载和空状态 ===== */
.game-loading {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 15px;
}

.game-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 15px;
}

/* ===== 响应式 ===== */
@media (max-width: 992px) {
    .game-list-section {
        padding: 20px 18px;
    }
    
    .game-list-section .list-header,
    .game-item {
        grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .game-item .game-name {
        font-size: 14px;
        padding-left: 5px;
    }
    
    .btn-bonus, .btn-claimed, .btn-disabled, .btn-exchange {
        padding: 5px 12px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .mobile-block {
        display: flex !important;
    }
    .container {
        display: none;
    }
    .row-grid {
        grid-template-columns: 1fr;
    }
    .user-stats {
        gap: 20px;
    }
    .stat-value {
        font-size: 22px;
    }
    
    .game-list-section {
        padding: 15px 12px;
        margin: 10px 0;
    }
    
    .game-list-section .list-header {
        display: none;
    }
    
    .game-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px;
        border-bottom: 2px solid #f0f0f0;
        border-radius: 10px;
        margin-bottom: 8px;
        background: #fafcff;
    }
    
    .game-item .game-name {
        font-size: 15px;
        padding-left: 0;
        justify-content: center;
        text-align: center;
    }
    
    .game-item .game-tag {
        justify-content: center;
    }
    
    .game-item .bonus-section {
        justify-content: center !important;
        padding-right: 0 !important;
    }
    
    .game-item .bonus-section:last-child {
        padding-right: 0 !important;
    }
    
    .game-search-box input {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .game-search-box .search-btn {
        padding: 0 20px;
        font-size: 14px;
    }
    
    .hot-tags .hot-tag {
        font-size: 12px;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    .game-search-box {
        flex-direction: column;
    }
    
    .game-search-box .search-btn {
        padding: 12px;
        width: 100%;
    }
}
/* ===== 游戏名称点击样式 ===== */
.game-item .game-name {
    cursor: pointer;
    color: #1a1a2e;
    font-weight: 600;
    text-align: left;
    font-size: 15px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    border-radius: 4px;
    padding: 4px 10px;
    margin: -4px -10px;
}

.game-item .game-name:hover {
    color: #ff6b00;
    background: rgba(255, 107, 0, 0.08);
    text-decoration: underline;
}

.game-item .game-name:active {
    transform: scale(0.97);
}

/* ===== 热门标签激活状态 ===== */
.hot-tag.active {
    background: #ff6b00;
    color: white;
    border-color: #ff6b00;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

/* ===== 游戏数量显示 ===== */
.game-count {
    font-size: 13px;
    font-weight: normal;
    color: #999;
    background: #f5f5f5;
    padding: 4px 16px;
    border-radius: 20px;
}

/* ===== 游戏列表头部对齐 ===== */
.game-list-section .list-header > div:first-child {
    text-align: left;
    padding-left: 10px;
}
.game-list-section .list-header > div:last-child {
    text-align: right;
    padding-right: 10px;
}

/* ===== 操作列按钮组 ===== */
.game-item .bonus-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.game-item .bonus-section:last-child {
    justify-content: flex-end;
    padding-right: 10px;
}

/* ===== 响应式调整 ===== */
@media (max-width: 992px) {
    .game-item .bonus-section {
        gap: 5px;
    }
    .btn-bonus, .btn-exchange {
        padding: 5px 10px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .game-item .bonus-section {
        justify-content: center !important;
        padding-right: 0 !important;
    }
    .game-item .bonus-section:last-child {
        padding-right: 0 !important;
    }
}