

/* Start:/local/components/severcode/help.bonus/templates/.default/style.css?17876635029587*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

.bonus-wrapper {
    font-family: 'Montserrat', sans-serif;
}

.bonus-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-main-card {
    background: #232323;
    border-radius: 3px;
    border: 1px solid #3a3a3a;
    margin-bottom: 32px;
    overflow: hidden;
}

.bonus-card-header,
.bonus-card-rates,
.bonus-card-progress {
    padding: 24px;
}

.bonus-card-header,
.bonus-card-rates {
    border-bottom: 1px solid #3a3a3a;
}

.bonus-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.level-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.level-avatar img {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.level-info h1 {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 400;
    color: #4caf50;
}

.level-info p {
    margin: 0;
    font-size: 13px;
    color: #cccccc;
    font-weight: 400;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid #4caf50;
    background: #1c2a1c;
    color: #4caf50;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

.bonus-card-rates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.rate-item:first-child {
    border-right: 1px solid #333;
    padding-right: 24px;
}

.rate-label {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 8px;
    font-weight: 400;
}

.rate-value {
    font-size: 24px;
    font-weight: 400;
    color: #feb300;
    margin-bottom: 8px;
}

.rate-desc {
    font-size: 13px;
    color: #cccccc;
    font-weight: 400;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-title {
    font-size: 14px;
    color: #cccccc;
    font-weight: 400;
}

.progress-target {
    font-size: 13px;
    color: #feb300;
    font-weight: 600;
}

.progress-bar-wrapper {
    background: #1a1a1a;
    border-radius: 3px;
    height: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #feb300 0%, #ffc107 100%);
    border-radius: 3px;
}

.progress-info {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

.progress-info strong {
    color: #fff;
    font-weight: 600;
}

.levels-section {
    margin-bottom: 40px;
}

.levels-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #cccccc;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
}

.level-card {
    background: #232323;
    border-radius: 3px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #3a3a3a;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.level-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.level-card.active .card-icon {
    background: transparent !important;
}

.level-card.active .card-name {
    font-size: 13px;
    font-weight: 600;
}

.level-card.active .card-percent {
    font-size: 24px;
    font-weight: 400;
}

.level-card .card-name {
    font-size: 13px;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 6px;
}

.level-card .card-percent {
    font-size: 24px;
    font-weight: 400;
}

.card-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-icon img {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.level-card[data-color="green"] .card-icon { background: #243524; }
.level-card[data-color="yellow"] .card-icon { background: #4a3a00; }
.level-card[data-color="blue"] .card-icon { background: #1e2d47; }
.level-card[data-color="orange"] .card-icon { background: #3d2510; }
.level-card[data-color="purple"] .card-icon { background: #2a1845; }
.level-card[data-color="pink"] .card-icon { background: #3d1530; }
.level-card[data-color="gold"] .card-icon { background: #3d3000; }

.level-card.active[data-color="green"] { background: #1c2a1c; border-color: #4caf50; }
.level-card.active[data-color="green"] .card-name,
.level-card.active[data-color="green"] .card-percent { color: #4caf50; }

.level-card.active[data-color="yellow"] { background: #332800; border-color: #feb300; }
.level-card.active[data-color="yellow"] .card-name,
.level-card.active[data-color="yellow"] .card-percent { color: #feb300; }

.level-card.active[data-color="blue"] { background: #1a2235; border-color: #4a90d9; }
.level-card.active[data-color="blue"] .card-name,
.level-card.active[data-color="blue"] .card-percent { color: #4a90d9; }

.level-card.active[data-color="orange"] { background: #2a1a0a; border-color: #e07820; }
.level-card.active[data-color="orange"] .card-name,
.level-card.active[data-color="orange"] .card-percent { color: #e07820; }

.level-card.active[data-color="purple"] { background: #1e1030; border-color: #9b59b6; }
.level-card.active[data-color="purple"] .card-name,
.level-card.active[data-color="purple"] .card-percent { color: #9b59b6; }

.level-card.active[data-color="pink"] { background: #2a1020; border-color: #d9457a; }
.level-card.active[data-color="pink"] .card-name,
.level-card.active[data-color="pink"] .card-percent { color: #d9457a; }

.level-card.active[data-color="gold"] { background: #2a2000; border-color: #feb300; }
.level-card.active[data-color="gold"] .card-name,
.level-card.active[data-color="gold"] .card-percent { color: #feb300; }

.bonus-faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 16px;
}

.bonus-details-link-wrap {
    text-align: center;
    margin: 40px 0 20px;
}

.bonus-details-link {
    color: #feb300;
}

@media (max-width: 768px) {
    .bonus-card-header {
        flex-direction: column;
        text-align: left;
        padding: 20px;
        gap: 16px;
    }

    .header-left {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 12px;
        width: 100%;
    }

    .level-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
    }

    .level-info h1 {
        font-size: 18px;
        margin: 0 0 2px 0;
    }

    .level-info p {
        font-size: 12px;
    }

    .header-badge {
        width: 100%;
        max-width: 100%;
    }

    .bonus-card-rates {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px;
    }

    .rate-item:first-child {
        border-right: none;
        border-bottom: 1px solid #333;
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .rate-value {
        font-size: 28px;
    }

    .bonus-card-progress {
        padding: 20px;
    }

    .progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .levels-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px;
        padding: 8px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x;
    }

    .levels-grid::-webkit-scrollbar {
        display: none;
    }

    .level-card {
        flex: 0 0 auto;
        min-width: 120px;
        width: 120px;
        padding: 12px 8px;
        background: transparent;
        border: none;
    }

    .level-card:hover {
        transform: none;
        box-shadow: none;
    }

    .card-icon {
        margin: 0 auto 8px;
        background: transparent;
    }

    .level-card.active .card-icon {
        background: transparent !important;
        position: relative;
    }

    .level-card.active .card-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 82px;
        height: 82px;
        border-radius: 50%;
        z-index: -1;
    }

    .level-card.active[data-color="green"] .card-icon::before { background: #243524; }
    .level-card.active[data-color="yellow"] .card-icon::before { background: #4a3a00; }
    .level-card.active[data-color="blue"] .card-icon::before { background: #1e2d47; }
    .level-card.active[data-color="orange"] .card-icon::before { background: #3d2510; }
    .level-card.active[data-color="purple"] .card-icon::before { background: #2a1845; }
    .level-card.active[data-color="pink"] .card-icon::before { background: #3d1530; }
    .level-card.active[data-color="gold"] .card-icon::before { background: #3d3000; }

    .level-card.active .card-name {
        color: #cccccc;
    }
}

@media (max-width: 480px) {
    .level-card {
        width: 110px;
        padding: 10px 6px;
    }

    .card-icon,
    .card-icon img {
        width: 72px;
        height: 72px;
    }

    .level-card.active .card-icon::before {
        width: 72px;
        height: 72px;
    }

    .card-name {
        font-size: 12px;
    }

    .card-percent {
        font-size: 20px;
    }
}

/* End */
/* /local/components/severcode/help.bonus/templates/.default/style.css?17876635029587 */
