/* Player profile / wallet modal */

.nav-action-btn.profile {
    flex: 1;
    max-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 4px 8px;
    border-radius: 14px;
    background: var(--bg-secondary);
    border: none;
    color: var(--text-primary);
    min-height: 36px;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.22), 3px 0 10px rgba(0, 0, 0, 0.22);
    transition: box-shadow 0.2s, transform 0.15s;
}

.nav-action-btn.profile .nav-btn-icon {
    font-size: 1.1rem;
    line-height: 1.1;
}

.nav-action-btn.profile .nav-btn-label {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent-color);
}

.nav-action-btn.profile:hover {
    box-shadow: -4px 0 14px color-mix(in srgb, var(--accent-color) 25%, transparent), 4px 0 14px color-mix(in srgb, var(--accent-color) 25%, transparent);
    transform: translateY(-1px);
    border: 1px solid color-mix(in srgb, var(--accent-color) 45%, transparent);
}

.profile-overlay {
    position: fixed;
    inset: 0;
    /* Above top chrome (10000), app menu (10002), loader (9998), and other overlays */
    z-index: 10100;
    background: var(--overlay-bg);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.profile-overlay[hidden] {
    display: none !important;
}

body.profile-open {
    overflow: hidden;
}

.profile-modal {
    width: 100%;
    max-width: 480px;
    /* Keep the same sheet height on every tab (deposit is the tallest). */
    min-height: min(420px, 72dvh);
    height: min(78dvh, 640px);
    max-height: min(92dvh, 720px);
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: none;
    border-radius: 16px 16px 0 0;
    color: var(--text-primary);
    box-shadow:
        0 -8px 32px rgba(0, 0, 0, 0.35),
        -6px 0 20px rgba(0, 0, 0, 0.18),
        6px 0 20px rgba(0, 0, 0, 0.18);
    color-scheme: dark;
}

html[data-theme="light"] .profile-modal {
    color-scheme: light;
}

@media (min-width: 500px) {
    .profile-overlay {
        align-items: center;
        padding: 12px;
    }
    .profile-modal {
        border-radius: 16px;
        min-height: min(440px, 68dvh);
        height: min(72dvh, 620px);
        max-height: min(90dvh, 680px);
    }
}

.profile-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    flex-shrink: 0;
}

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

.profile-header-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 2px;
}

.profile-header h2 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.25;
}

.profile-header-phone {
    margin: 0 0 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
}

.profile-meta-status {
    text-transform: capitalize;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 8px;
    background: rgba(76, 175, 80, 0.15);
    color: var(--primary-600);
}

.profile-meta-status.suspended,
.profile-meta-status.blocked,
.profile-meta-status.inactive {
    background: rgba(244, 67, 54, 0.15);
    color: var(--error);
}

.profile-header .profile-balance {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1.2;
}

.profile-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    cursor: pointer;
    flex-shrink: 0;
}

.profile-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.profile-header-actions .profile-close:disabled {
    opacity: 0.45;
    cursor: wait;
}

.profile-live-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.08));
    border-bottom: 1px solid rgba(34, 197, 94, 0.25);
    flex-shrink: 0;
}

.profile-live-notice[hidden] {
    display: none !important;
}

.profile-live-notice__text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
}

.profile-live-notice__btn {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    background: #16a34a;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
}

.profile-live-notice__btn:hover {
    background: #15803d;
}

.profile-tabs {
    display: flex;
    gap: 4px;
    padding: 8px 10px;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    flex-shrink: 0;
    scrollbar-width: none;
}

.profile-tabs::-webkit-scrollbar {
    display: none;
}

.profile-tab {
    flex-shrink: 0;
    padding: 8px 12px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.profile-tab.active {
    background: var(--accent-color);
    color: #fff;
}

.profile-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px 14px 16px;
    -webkit-overflow-scrolling: touch;
}

.profile-panel {
    display: none;
    min-height: 100%;
}

.profile-panel.active {
    display: block;
}

.profile-info-grid {
    display: grid;
    gap: 10px;
    font-size: 0.82rem;
}

.profile-info-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.profile-form .field {
    margin-bottom: 12px;
}

.profile-form label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.profile-form input,
.profile-form select,
.profile-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.85rem;
}

.profile-form textarea {
    min-height: 72px;
    resize: vertical;
}

.profile-form .field-reference textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.45;
    padding: 10px 12px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background-color: #2d3259;
    color: #f5f7ff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

html[data-theme="light"] .profile-form .field-reference textarea {
    background-color: #ffffff;
    color: #1a202c;
}

.profile-form .field-reference textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.85;
}

.profile-form .field-reference textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.profile-hint {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.profile-submit {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
}

.profile-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.profile-tx-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-tx-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
    padding: 0 4px;
}

.profile-tx-table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    font-size: 0.68rem;
    line-height: 1.25;
}

.profile-tx-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 6px 5px;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: left;
    color: var(--text-secondary);
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.profile-tx-table tbody td {
    padding: 7px 5px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    color: var(--text-primary);
}

.profile-tx-table tbody tr:last-child td {
    border-bottom: none;
}

.profile-tx-table tbody tr:active {
    background: var(--bg-secondary);
}

.profile-tx-type {
    font-weight: 700;
    white-space: nowrap;
}

.profile-tx-amt {
    font-weight: 800;
    white-space: nowrap;
    font-size: 0.66rem;
}

.profile-tx-amt.plus {
    color: var(--accent-color);
}

.profile-tx-amt.minus {
    color: var(--error);
}

.profile-tx-date {
    white-space: nowrap;
    color: var(--text-secondary);
    font-size: 0.62rem;
}

.profile-tx-ref {
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.62rem;
    color: var(--text-secondary);
}

.profile-tx-col-ref {
    max-width: 72px;
}

.profile-tx-muted {
    color: var(--text-secondary);
}

.profile-tx-status {
    display: inline-block;
    padding: 2px 5px;
    border-radius: 6px;
    font-size: 0.56rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.profile-tx-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: var(--secondary-600);
}

.profile-tx-status.approved {
    background: rgba(76, 175, 80, 0.2);
    color: var(--primary-600);
}

.profile-tx-status.rejected {
    background: rgba(244, 67, 54, 0.2);
    color: var(--error);
}

@media (max-width: 360px) {
    .profile-tx-table {
        font-size: 0.62rem;
    }

    .profile-tx-table .profile-tx-col-ref {
        display: none;
    }
}

.profile-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.deposit-pay-compact {
    margin-bottom: 10px;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-secondary);
}

.deposit-provider-select {
    width: 100%;
    margin-bottom: 0;
    padding: 8px 28px 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: #2d3259;
    color: #f5f7ff;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f5f7ff' d='M2.5 4.5 6 8l3.5-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

html[data-theme="light"] .deposit-provider-select {
    background-color: #ffffff;
    color: #1a202c;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a202c' d='M2.5 4.5 6 8l3.5-3.5'/%3E%3C/svg%3E");
}

.deposit-provider-select option {
    background-color: #2d3259;
    color: #f5f7ff;
}

html[data-theme="light"] .deposit-provider-select option {
    background-color: #ffffff;
    color: #1a202c;
}

.deposit-pay-compact .field-compact,
.withdraw-pay-compact .field-compact {
    margin-bottom: 8px;
}

.deposit-pay-compact .field-compact:last-child,
.withdraw-pay-compact .field-compact:last-child {
    margin-bottom: 0;
}

.deposit-pay-compact .field-compact label,
.withdraw-pay-compact .field-compact label,
.field-reference label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.field-reference label {
    margin-bottom: 6px;
}

.withdraw-pay-compact .field-compact input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: #2d3259;
    color: #f5f7ff;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
}

.withdraw-pay-compact .field-compact input::placeholder {
    color: rgba(245, 247, 255, 0.45);
}

html[data-theme="light"] .withdraw-pay-compact .field-compact input {
    background-color: #ffffff;
    color: #1a202c;
}

html[data-theme="light"] .withdraw-pay-compact .field-compact input::placeholder {
    color: rgba(26, 32, 44, 0.45);
}

.withdraw-pay-compact .field-compact input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.deposit-provider-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.profile-deposit-unavailable {
    margin-bottom: 10px;
}

.deposit-account-card {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}

.deposit-account-card .profile-empty {
    padding: 0.5rem 0;
    font-size: 0.72rem;
}

.deposit-account-card h4 {
    display: none;
}

.deposit-account-paybox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
}

.deposit-account-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.deposit-account-primary {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    word-break: break-all;
    line-height: 1.2;
    color: var(--text-primary);
}

.deposit-account-holder {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.25;
    text-transform: capitalize;
}

.deposit-copy-btn {
    flex-shrink: 0;
    padding: 5px 8px;
    border-radius: 6px;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.deposit-copy-btn:active {
    transform: scale(0.97);
}

.deposit-copy-btn.copied {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.ethiomark-bottom-navbar.has-profile {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
}

.ethiomark-bottom-navbar.has-profile .nav-action-btn.profile {
    justify-self: start;
}

.ethiomark-bottom-navbar.has-profile .nav-action-btn.start {
    justify-self: center;
    flex: none;
    width: auto;
    min-width: 120px;
}

.ethiomark-bottom-navbar.has-profile .nav-action-btn.prize {
    justify-self: end;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.support-link-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.15));
    border-radius: 10px;
    background: var(--bg-secondary, #1e293b);
    color: var(--text-primary, #f8fafc);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.15s ease;
}

.support-link-btn:hover {
    background: var(--bg-primary, #0f172a);
}

.support-rules-wrap {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
}

.support-rules-title {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
}

.support-rules-text {
    margin: 0;
    white-space: pre-wrap;
    font-family: inherit;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-secondary, #94a3b8);
    max-height: 180px;
    overflow: auto;
}

/* Deposit help — red CTA + portrait video modal */
.deposit-help-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 11px 14px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 45%, #b91c1c 100%);
    box-shadow:
        0 4px 14px rgba(220, 38, 38, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    animation: deposit-help-btn-pulse 2.4s ease-in-out infinite;
}

.deposit-help-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.5);
}

.deposit-help-btn:active {
    transform: translateY(0);
}

.deposit-help-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    font-size: 0.58rem;
}

@keyframes deposit-help-btn-pulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(220, 38, 38, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 4px 22px rgba(239, 68, 68, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

.deposit-help-steps {
    margin: 0.5rem 0 0;
    padding-left: 1.15rem;
    font-size: 0.74rem;
    line-height: 1.5;
    color: var(--text-secondary, #94a3b8);
}

.deposit-help-steps li + li {
    margin-top: 0.35rem;
}

.support-deposit-help {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
}

.support-deposit-help .deposit-help-btn {
    margin-top: 0.75rem;
    margin-bottom: 0;
}

body.deposit-help-open {
    overflow: hidden;
}

.deposit-help-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10250;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    background: rgba(0, 0, 0, 0.92);
}

.deposit-help-modal-overlay[hidden] {
    display: none !important;
}

.deposit-help-modal {
    width: min(100%, 440px);
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #000;
    border-radius: 0;
    color: var(--text-primary);
    box-shadow: none;
    overflow: hidden;
}

.deposit-help-modal--video .deposit-help-modal__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: max(10px, env(safe-area-inset-top)) 12px 10px;
    border-bottom: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
}

.deposit-help-modal--video .deposit-help-modal__header h2 {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.deposit-help-modal--video .deposit-help-modal__close {
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.deposit-help-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-shrink: 0;
}

.deposit-help-modal__header h2 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
}

.deposit-help-modal__close {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.deposit-help-modal__body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.deposit-help-modal__video-stage {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.deposit-help-video-wrap {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: unset;
    border-radius: 0;
    overflow: hidden;
    background: #000;
    box-shadow: none;
}

.deposit-help-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.deposit-help-modal__steps {
    flex-shrink: 0;
    max-height: 26dvh;
    overflow-y: auto;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    background: var(--card-bg, #1e293b);
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
    -webkit-overflow-scrolling: touch;
}

.deposit-help-modal__steps .deposit-help-steps {
    margin-top: 0;
    font-size: 0.72rem;
}

.deposit-help-modal__footer {
    flex-shrink: 0;
    padding: 8px 14px max(10px, env(safe-area-inset-bottom));
    background: var(--card-bg, #1e293b);
}

.deposit-help-modal__done {
    width: 100%;
    padding: 11px 14px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

@media (min-width: 500px) {
    .deposit-help-modal-overlay {
        align-items: center;
        padding: 12px;
        background: rgba(0, 0, 0, 0.88);
    }

    .deposit-help-modal {
        height: min(96dvh, 900px);
        max-height: min(96dvh, 900px);
        border-radius: 16px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    }

    .deposit-help-modal--video .deposit-help-modal__header {
        position: relative;
        background: var(--bg-secondary, rgba(15, 23, 42, 0.6));
        border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
        padding: 12px 14px;
    }

    .deposit-help-modal--video .deposit-help-modal__header h2 {
        color: var(--text-primary);
        text-shadow: none;
    }

    .deposit-help-modal--video .deposit-help-modal__close {
        color: var(--text-secondary);
        background: transparent;
        border-radius: 0;
        width: auto;
        height: auto;
    }
}
