/*
|--------------------------------------------------------------------------
| CLIENT INNER PAGES
|--------------------------------------------------------------------------
*/

.client-page-shell {
    width: min(var(--client-max-width), calc(100% - 28px));
    margin: 0 auto;
    padding: 24px 0 54px;
}

.client-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 18px;
}

.client-page-hero-main,
.client-page-hero-side,
.client-page-panel,
.client-page-card,
.client-table-panel {
    border: 1px solid var(--client-border);
    background:
        linear-gradient(
            145deg,
            rgba(var(--client-primary-rgb), .045),
            transparent 54%
        ),
        var(--client-surface-2);
    box-shadow: var(--client-shadow);
}

.client-page-hero-main,
.client-page-hero-side {
    min-height: 210px;
    border-radius: var(--client-radius-lg);
}

.client-page-hero-main {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    overflow: hidden;
}

.client-page-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    padding: 7px 11px;
    color: var(--client-primary);
    font-size: 11px;
    font-weight: 900;
    border: 1px solid rgba(var(--client-primary-rgb), .24);
    border-radius: 999px;
    background: rgba(var(--client-primary-rgb), .08);
    text-transform: uppercase;
}

.client-page-hero-main h1 {
    max-width: 760px;
    margin: 0 0 10px;
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.05;
}

.client-page-hero-main p {
    max-width: 680px;
    color: var(--client-muted);
    font-size: 14px;
    line-height: 1.75;
}

.client-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 21px;
}

.client-page-hero-side {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.client-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--client-border);
    border-radius: 16px;
    background: var(--client-input);
}

.client-metric span,
.client-page-card span,
.client-table-panel th {
    color: var(--client-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.client-metric strong {
    color: var(--client-text);
    font-size: 18px;
}

.client-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.client-page-grid.two {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
}

.client-page-panel,
.client-page-card,
.client-table-panel {
    border-radius: var(--client-radius);
}

.client-page-panel,
.client-page-card {
    padding: 18px;
}

.client-page-card i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    color: var(--client-primary);
    border-radius: 14px;
    background: rgba(var(--client-primary-rgb), .1);
}

.client-page-card h3,
.client-page-panel h2,
.client-table-head h2 {
    margin: 0 0 8px;
    font-size: 18px;
}

.client-page-card p,
.client-page-panel p {
    color: var(--client-muted);
    line-height: 1.65;
}

.client-form {
    display: grid;
    gap: 13px;
}

.client-form label {
    display: grid;
    gap: 7px;
    color: var(--client-text-soft);
    font-size: 12px;
    font-weight: 700;
}

.client-form input,
.client-form select,
.client-form textarea {
    width: 100%;
    min-height: 45px;
    padding: 0 13px;
    color: var(--client-text);
    border: 1px solid var(--client-border);
    border-radius: 13px;
    outline: none;
    background: var(--client-input);
}

.client-form textarea {
    min-height: 96px;
    padding-top: 12px;
    resize: vertical;
}

.client-form input:focus,
.client-form select:focus,
.client-form textarea:focus {
    border-color: rgba(var(--client-primary-rgb), .55);
}

.client-flash {
    margin-bottom: 14px;
    padding: 13px 15px;
    color: var(--client-success);
    border: 1px solid rgba(56, 217, 159, .22);
    border-radius: 14px;
    background: rgba(56, 217, 159, .09);
}

.client-flash.error {
    color: var(--client-danger);
    border-color: rgba(255, 83, 104, .22);
    background: rgba(255, 83, 104, .09);
}

.client-table-panel {
    overflow: hidden;
}

.client-table-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-bottom: 1px solid var(--client-border);
}

.client-table-head p {
    color: var(--client-muted);
}

.client-table-filter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    align-items: end;
    padding: 16px 18px;
    border-bottom: 1px solid var(--client-border);
    background:
        linear-gradient(
            135deg,
            rgba(var(--client-primary-rgb), .055),
            rgba(255, 255, 255, .015) 58%,
            transparent
        ),
        rgba(255, 255, 255, .018);
}

.client-table-filter label {
    display: grid;
    gap: 7px;
    color: var(--client-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.client-table-filter label:focus-within {
    color: var(--client-primary);
}

.client-table-filter label:has(input[type="search"]) {
    position: relative;
}

.client-table-filter label:has(input[type="search"])::after {
    content: "\f002";
    position: absolute;
    left: 13px;
    bottom: 13px;
    color: var(--client-muted);
    font-family: "Font Awesome 6 Free";
    font-size: 13px;
    font-weight: 900;
    pointer-events: none;
}

.client-table-filter label:has(input[type="search"]:focus)::after {
    color: var(--client-primary);
}

.client-table-filter input,
.client-table-filter select {
    width: 100%;
    min-height: 44px;
    padding: 0 13px;
    color: var(--client-text);
    border: 1px solid var(--client-border);
    border-radius: 13px;
    outline: none;
    background: rgba(8, 12, 20, .58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.client-table-filter input[type="search"] {
    padding-left: 36px;
    background:
        linear-gradient(90deg, transparent 0, transparent 100%),
        rgba(8, 12, 20, .58);
}

.client-table-filter input::placeholder {
    color: rgba(231, 236, 246, .42);
}

.client-table-filter input[type="datetime-local"] {
    color-scheme: dark;
}

.client-table-filter input:focus,
.client-table-filter select:focus {
    border-color: rgba(var(--client-primary-rgb), .55);
    background: rgba(8, 12, 20, .78);
    box-shadow:
        0 0 0 3px rgba(var(--client-primary-rgb), .12),
        inset 0 1px 0 rgba(255, 255, 255, .045);
}

.client-table-filter .client-button {
    min-height: 44px;
    justify-content: center;
    white-space: nowrap;
}

.client-table-filter .client-button-outline {
    background: rgba(255, 255, 255, .035);
}

.client-table-wrap {
    overflow-x: auto;
}

.client-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.client-table th,
.client-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--client-border);
    text-align: left;
    vertical-align: top;
}

.client-table td small {
    display: block;
    margin-top: 5px;
    color: var(--client-muted);
}

.client-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    color: var(--client-muted);
    font-size: 12px;
    border-top: 1px solid var(--client-border);
}

.client-pagination div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: flex-end;
}

.client-pagination a {
    display: inline-flex;
    min-width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--client-text-soft);
    border: 1px solid var(--client-border);
    border-radius: 12px;
    background: var(--client-input);
}

.client-pagination a.active,
.client-pagination a:hover {
    color: #07090d;
    border-color: var(--client-primary);
    background: var(--client-primary);
}

.client-pagination a.disabled {
    pointer-events: none;
    opacity: .45;
}

.client-status {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--client-muted);
    font-size: 11px;
    font-weight: 900;
    background: var(--client-input);
}

.client-status.pending {
    color: var(--client-warning);
}

.client-status.approved,
.client-status.completed,
.client-status.success,
.client-status.settled {
    color: var(--client-success);
}

.client-status.rejected,
.client-status.cancelled,
.client-status.failed {
    color: var(--client-danger);
}

.client-empty-state {
    padding: 42px 18px;
    color: var(--client-muted);
    text-align: center;
}

.client-empty-state i {
    display: block;
    margin-bottom: 12px;
    color: var(--client-primary);
    font-size: 28px;
}

.client-empty-state strong {
    display: block;
    color: var(--client-text);
    font-size: 18px;
}

.client-bank-list {
    display: grid;
    gap: 10px;
}

.client-bank-item {
    padding: 13px;
    border: 1px solid var(--client-border);
    border-radius: 14px;
    background: var(--client-input);
}

.client-bank-item strong,
.client-bank-item span {
    display: block;
}

.client-bank-item span {
    margin-top: 5px;
    color: var(--client-muted);
}

.client-progress {
    display: block;
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
}

.client-progress b {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--client-primary);
}

.vip-demo-page {
    background: #151518;
}

.vip-demo-shell {
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 0 0 86px;
    color: #fff;
}

.vip-stage {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background:
        radial-gradient(circle at 50% 16%, rgba(255, 255, 255, .25), transparent 24%),
        radial-gradient(circle at 50% 58%, rgba(255, 145, 35, .28), transparent 32%),
        linear-gradient(180deg, #232327 0%, #17171b 100%);
}

.vip-stage::before,
.vip-stage::after {
    content: "";
    position: absolute;
    top: 40px;
    bottom: 64px;
    width: 76px;
    background: linear-gradient(90deg, #5b3411, #b57826 38%, #33200d);
    box-shadow: inset 0 0 22px rgba(0, 0, 0, .45);
}

.vip-stage::before {
    left: -18px;
    transform: skewY(-10deg);
}

.vip-stage::after {
    right: -18px;
    transform: skewY(10deg);
}

.vip-topbar {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    padding: 0 16px;
    color: rgba(255, 255, 255, .82);
    background: rgba(0, 0, 0, .22);
}

.vip-topbar a {
    color: inherit;
}

.vip-mascot {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    padding-top: 24px;
}

.vip-spotlight {
    position: absolute;
    top: -12px;
    width: 210px;
    height: 180px;
    clip-path: polygon(32% 0, 68% 0, 100% 100%, 0 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, .03));
    filter: blur(.2px);
}

.vip-bull {
    position: relative;
    display: grid;
    place-items: center;
    width: 92px;
    height: 108px;
    margin-top: 18px;
    border-radius: 44px 44px 38px 38px;
    background: linear-gradient(180deg, #1d1b1b, #080808);
    box-shadow: 0 16px 28px rgba(0, 0, 0, .5);
}

.vip-bull .horn {
    position: absolute;
    top: 6px;
    width: 28px;
    height: 22px;
    border-top: 8px solid #fff2d0;
    border-radius: 50% 50% 0 0;
}

.vip-bull .horn.left {
    left: -12px;
    transform: rotate(-28deg);
}

.vip-bull .horn.right {
    right: -12px;
    transform: rotate(28deg);
}

.vip-bull .face {
    display: grid;
    place-items: center;
    width: 58px;
    height: 48px;
    color: #7b3d12;
    border-radius: 22px;
    background: #f2b47b;
}

.vip-bull .face i {
    color: #ff8c20;
    font-size: 22px;
}

.vip-mascot img {
    position: relative;
    z-index: 2;
    width: 126px;
    height: auto;
    margin-top: 6px;
    object-fit: contain;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, .45));
}

.vip-mascot strong {
    margin-top: 12px;
    color: #ff8b24;
    font-size: 16px;
    text-shadow: 0 2px 0 #fff0bb;
}

.vip-mascot small {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 800;
}

.vip-rail {
    position: absolute;
    z-index: 3;
    left: 22px;
    right: 22px;
    bottom: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.vip-rail::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 26px;
    height: 2px;
    background: linear-gradient(90deg, #d68c2d, #918a81, #d68c2d);
}

.vip-rail span {
    position: relative;
    display: grid;
    gap: 8px;
    justify-items: center;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-style: italic;
}

.vip-rail span::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid #dfbf7b;
    border-radius: 50%;
    background: #343136;
}

.vip-rail span.active::before {
    background: #ff8b24;
    box-shadow: 0 0 0 4px rgba(255, 139, 36, .18);
}

.vip-rail b {
    min-height: 18px;
    padding: 3px 7px;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffb347, #ff7c1d);
    font-size: 10px;
}

.vip-progress-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 28px;
    color: #a9a4bf;
    background: #363241;
    font-size: 12px;
}

.vip-progress-strip i,
.vip-progress-strip strong {
    color: #ff8b24;
}

.vip-claim-card,
.vip-benefit-card,
.vip-policy-card,
.vip-level-group {
    margin: 9px 7px;
    border-radius: 10px;
    background: #24222d;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.vip-claim-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 13px;
}

.vip-claim-card span,
.vip-reward-item span,
.vip-policy-card li {
    color: #a9a4b5;
}

.vip-claim-card strong {
    display: block;
    margin: 8px 0;
    color: #ff8b24;
    font-size: 25px;
}

.vip-claim-card a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.vip-claim-card button,
.vip-reward-item button {
    min-width: 94px;
    min-height: 34px;
    color: #fff;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #a96d35, #7d4f29);
    font-weight: 800;
}

.vip-claim-card button:disabled,
.vip-reward-item button:disabled {
    color: #8f8a97;
    background: rgba(160, 99, 47, .42);
}

.vip-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    padding: 2px 18px 4px;
}

.vip-tabs a {
    position: relative;
    min-height: 24px;
    display: grid;
    place-items: center;
    color: #a7a2b0;
    background: #373541;
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
    font-size: 12px;
    font-weight: 900;
}

.vip-tabs a.active {
    color: #fff;
    background: linear-gradient(180deg, #ffad3d, #ff7420);
}

.vip-benefit-card {
    padding: 12px 10px 14px;
}

.vip-benefit-head {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 74px;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.vip-benefit-head > i {
    color: #d8edff;
    font-size: 30px;
    filter: drop-shadow(0 5px 8px rgba(104, 172, 255, .3));
}

.vip-benefit-head h1 {
    margin: 0 0 3px;
    font-size: 20px;
}

.vip-benefit-head p {
    margin: 0;
    color: #c5bfd0;
    font-size: 12px;
}

.vip-benefit-head span {
    height: 62px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(118, 122, 142, .6), transparent 62%),
        linear-gradient(135deg, rgba(255, 255, 255, .1), transparent);
}

.vip-reward-list {
    display: grid;
    gap: 9px;
}

.vip-reward-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    background: #302d38;
}

.vip-reward-item > i {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #ff8b24;
    border-radius: 10px;
    background: rgba(255, 139, 36, .14);
}

.vip-reward-item strong,
.vip-reward-item b,
.vip-reward-item span {
    display: block;
}

.vip-reward-item strong {
    font-size: 14px;
}

.vip-reward-item b {
    color: #ff8b24;
    font-size: 22px;
    line-height: 1.05;
}

.vip-reward-item span {
    margin-top: 4px;
    font-size: 11px;
}

.vip-next-note {
    margin: 10px 2px 0;
    color: #aaa4b4;
    font-size: 12px;
}

.vip-policy-card {
    padding: 12px 13px;
}

.vip-policy-card h2 {
    display: inline-block;
    margin: 0 0 10px;
    padding: 7px 12px;
    border-radius: 4px;
    background: #45414e;
    font-size: 14px;
}

.vip-policy-card ol {
    display: grid;
    gap: 7px;
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.55;
}

.vip-level-system {
    padding-top: 4px;
}

.vip-level-group {
    overflow: hidden;
}

.vip-level-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 15px;
    cursor: pointer;
    list-style: none;
}

.vip-level-group summary::-webkit-details-marker {
    display: none;
}

.vip-level-group summary span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.vip-level-group summary .fa-crown {
    color: #dbeaff;
    font-size: 22px;
}

.vip-level-group.blue summary .fa-crown {
    color: #6ec7ff;
}

.vip-level-group.orange summary .fa-crown {
    color: #ff9c5a;
}

.vip-level-group.gold summary .fa-crown {
    color: #ffd84c;
}

.vip-level-group.diamond summary .fa-crown {
    color: #aebdff;
}

.vip-level-group[open] summary > .fa-chevron-right {
    transform: rotate(90deg);
}

.vip-level-table-wrap {
    overflow-x: auto;
}

.vip-level-table {
    width: 100%;
    min-width: 355px;
    border-collapse: collapse;
    font-size: 12px;
}

.vip-level-table th,
.vip-level-table td {
    padding: 9px 7px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-right: 1px solid rgba(255, 255, 255, .07);
    text-align: center;
}

.vip-level-table th:last-child,
.vip-level-table td:last-child {
    border-right: 0;
}

.vip-level-table th {
    color: #fff;
    font-weight: 800;
}

.vip-level-table td:first-child {
    color: #fff;
    font-weight: 900;
}

.promo-mobile-page {
    background: #121217;
}

.promo-mobile-shell {
    width: min(100%, 430px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 0 88px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 139, 36, .12), transparent 30%),
        #15151b;
}

.promo-mobile-top {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    height: 52px;
    padding: 0 9px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background: rgba(28, 27, 34, .96);
    backdrop-filter: blur(12px);
}

.promo-mobile-top a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, .78);
}

.promo-mobile-top nav {
    display: flex;
    justify-content: center;
}

.promo-mobile-top strong {
    position: relative;
    color: #ff8b24;
    font-size: 15px;
    font-weight: 800;
}

.promo-mobile-top strong::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 18px;
    height: 3px;
    border-radius: 99px;
    background: #ff8b24;
    transform: translateX(-50%);
}

.promo-list {
    display: grid;
    gap: 10px;
    padding: 10px 14px 16px;
}

.promo-banner {
    position: relative;
    overflow: hidden;
    min-height: 178px;
    border: 3px solid #ffc15a;
    border-radius: 8px;
    background: #20222a;
    box-shadow:
        0 8px 18px rgba(0, 0, 0, .38),
        inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.promo-banner img,
.promo-banner-image {
    width: 100%;
    height: 100%;
    min-height: 178px;
    object-fit: cover;
}

.promo-image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 84px 12px 13px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .76));
}

.promo-image-caption span,
.promo-image-caption strong {
    display: block;
}

.promo-image-caption span {
    color: #ffb13a;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.promo-image-caption strong {
    margin-top: 3px;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}

.promo-art {
    position: relative;
    min-height: 178px;
    padding: 20px 16px 16px;
    background:
        radial-gradient(circle at 82% 28%, rgba(255, 255, 255, .18), transparent 20%),
        linear-gradient(135deg, rgba(255, 140, 35, .18), transparent 34%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .48));
}

.promo-banner.worldcup .promo-art {
    background:
        radial-gradient(circle at 78% 42%, rgba(42, 255, 146, .34), transparent 22%),
        radial-gradient(circle at 62% 68%, rgba(255, 216, 42, .22), transparent 25%),
        linear-gradient(135deg, #16351f, #1d2229 54%, #15191e);
}

.promo-banner.usdt .promo-art {
    background:
        radial-gradient(circle at 78% 52%, rgba(20, 225, 187, .36), transparent 26%),
        linear-gradient(135deg, #112d35, #242735 58%, #14171d);
}

.promo-banner.viprule .promo-art {
    background:
        radial-gradient(circle at 78% 52%, rgba(255, 128, 190, .26), transparent 28%),
        linear-gradient(135deg, #272015, #26222a 56%, #15161d);
}

.promo-banner.pgbonus .promo-art {
    background:
        radial-gradient(circle at 75% 60%, rgba(86, 169, 255, .32), transparent 28%),
        linear-gradient(135deg, #132942, #252635 58%, #15161d);
}

.promo-brand {
    display: inline-block;
    margin-bottom: 12px;
    color: #ffe265;
    font-size: 20px;
    font-weight: 1000;
    font-style: italic;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .55);
}

.promo-art h2,
.promo-modal-hero h2 {
    max-width: 78%;
    margin: 0;
    color: #fff;
    font-size: 25px;
    line-height: 1.03;
    text-transform: uppercase;
    text-shadow:
        0 3px 0 rgba(0, 0, 0, .5),
        0 0 16px rgba(255, 139, 36, .4);
}

.promo-banner.worldcup h2,
.promo-banner.pgbonus h2 {
    color: #51cfff;
    -webkit-text-stroke: .6px #fff466;
}

.promo-banner.usdt h2 {
    color: #ff3b34;
    -webkit-text-stroke: .5px #fff;
}

.promo-banner.viprule h2 {
    color: #ff9b2f;
    -webkit-text-stroke: .5px #ffe1a3;
}

.promo-art p {
    max-width: 72%;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.promo-prize {
    position: absolute;
    right: 14px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border: 3px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    color: #fff;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .42), transparent 24%),
        linear-gradient(180deg, #1cbf9f, #087663);
    box-shadow: 0 9px 18px rgba(0, 0, 0, .35);
    text-align: center;
}

.promo-prize strong {
    max-width: 68px;
    overflow-wrap: anywhere;
    font-size: 16px;
    line-height: 1;
}

.promo-prize span {
    font-size: 9px;
    font-weight: 900;
}

.promo-detail-btn {
    position: absolute;
    left: 13px;
    bottom: 12px;
    display: inline-flex;
    min-width: 54px;
    height: 22px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    background: linear-gradient(180deg, #ff4536, #b50f12);
    font-size: 10px;
    font-weight: 1000;
    text-transform: uppercase;
}

.promo-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 44px 16px;
    color: rgba(255, 255, 255, .68);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    background: #23222b;
    text-align: center;
}

.promo-empty i,
.promo-empty strong {
    color: #ff8b24;
}

.promo-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 44px 7px 82px;
    background: rgba(0, 0, 0, .72);
}

.promo-modal {
    width: min(100%, 390px);
    max-height: calc(100vh - 94px);
    overflow: hidden;
    border-radius: 9px;
    background: #24242d;
    box-shadow: 0 20px 42px rgba(0, 0, 0, .55);
}

.promo-modal > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #2f2d38;
}

.promo-modal > header h1 {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.promo-modal > header a {
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
}

.promo-modal-body {
    max-height: calc(100vh - 142px);
    overflow-y: auto;
    padding: 12px;
}

.promo-modal-hero {
    overflow: hidden;
    min-height: 172px;
    padding: 17px 14px;
    border-radius: 7px;
    background: linear-gradient(135deg, #16351f, #1d2229 54%, #15191e);
}

.promo-modal-hero img {
    display: block;
    width: 100%;
    border-radius: 7px;
}

.promo-modal-summary {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.65;
    text-align: center;
}

.promo-modal-section {
    margin-top: 12px;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    line-height: 1.65;
}

.promo-html-content {
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
}

.promo-html-content p,
.promo-html-content ul,
.promo-html-content ol,
.promo-html-content table {
    margin: 0 0 10px;
}

.promo-html-content ul,
.promo-html-content ol {
    padding-left: 18px;
}

.promo-html-content a {
    color: #ffb13a;
    font-weight: 800;
}

.promo-html-content table {
    width: 100%;
    border-collapse: collapse;
}

.promo-html-content th,
.promo-html-content td {
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.promo-modal-section h3 {
    width: fit-content;
    margin: 0 auto 8px;
    padding: 7px 16px;
    color: #7c3f00;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffe57a, #ff9d28);
    font-size: 14px;
    text-transform: uppercase;
}

.promo-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.promo-modal-grid div {
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.promo-modal-grid span,
.promo-modal-grid strong {
    display: block;
}

.promo-modal-grid span {
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    text-transform: uppercase;
}

.promo-modal-grid strong {
    margin-top: 4px;
    color: #ffb13a;
    overflow-wrap: anywhere;
}

@media (min-width: 760px) {
    .promo-mobile-shell {
        margin-top: 18px;
        margin-bottom: 18px;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 16px;
        overflow: hidden;
    }
}

.client-content-list {
    display: grid;
    gap: 12px;
}

.client-content-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    padding: 14px;
    border: 1px solid var(--client-border);
    border-radius: 16px;
    background: var(--client-input);
}

.client-content-row i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--client-primary);
    border-radius: 14px;
    background: rgba(var(--client-primary-rgb), .1);
}

.client-content-row strong {
    display: block;
    margin-bottom: 5px;
}

.client-content-row p {
    color: var(--client-muted);
    line-height: 1.65;
}

@media (max-width: 920px) {
    .client-page-hero,
    .client-page-grid.two {
        grid-template-columns: 1fr;
    }

    .client-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .client-page-shell {
        width: min(100% - 18px, var(--client-max-width));
        padding-top: 15px;
        padding-bottom: 84px;
    }

    .client-page-hero-main,
    .client-page-hero-side,
    .client-page-panel,
    .client-page-card {
        border-radius: 14px;
    }

    .client-page-hero-main {
        padding: 21px 17px;
    }

    .client-page-grid {
        grid-template-columns: 1fr;
    }

    .client-table-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .client-table-filter {
        grid-template-columns: 1fr;
    }

    .client-pagination {
        align-items: flex-start;
        flex-direction: column;
    }
}
