:root {
    --tv-yellow: #FFE000;
    --tv-yellow-soft: #FFF27A;
    --tv-yellow-dark: #B89E00;

    --tv-olive: #38362A;
    --tv-olive-light: #4A4737;
    --tv-olive-deep: #201F18;

    --tv-black: #0B0C09;
    --tv-black-soft: #11120E;
    --tv-panel: rgba(56, 54, 42, .68);
    --tv-panel-solid: #27261D;

    --tv-text: #FFFDF2;
    --tv-muted: #B7B4A4;
    --tv-border: rgba(255, 224, 0, .16);

    --tv-success: #56E49A;
    --tv-danger: #FF6F71;
    --tv-warning: #FFE000;

    --tv-radius-xl: 30px;
    --tv-radius-lg: 22px;
    --tv-radius-md: 15px;

    --tv-shadow:
        0 30px 100px rgba(0, 0, 0, .48);

    --tv-yellow-shadow:
        0 18px 50px rgba(255, 224, 0, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;

    color: var(--tv-text);
    background:
        radial-gradient(
            circle at 82% 10%,
            rgba(255, 224, 0, .11),
            transparent 29%
        ),
        radial-gradient(
            circle at 10% 60%,
            rgba(96, 91, 57, .28),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #090A07 0%,
            #11120D 50%,
            #0A0B08 100%
        );

    font-family: "Cairo", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .018) 1px,
            transparent 1px
        );

    background-size: 58px 58px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .9),
            transparent 90%
        );
}

body::after {
    content: "";
    position: fixed;
    width: 420px;
    height: 420px;
    left: -180px;
    bottom: -190px;
    z-index: -1;
    pointer-events: none;

    border-radius: 50%;
    background: rgba(255, 224, 0, .055);
    filter: blur(50px);
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

.tv-container {
    width: min(1240px, calc(100% - 34px));
    margin-inline: auto;
}

/* Header */

.tv-header {
    position: sticky;
    top: 0;
    z-index: 100;

    border-bottom:
        1px solid rgba(255, 224, 0, .10);

    background:
        linear-gradient(
            to bottom,
            rgba(11, 12, 9, .94),
            rgba(11, 12, 9, .76)
        );

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.tv-header-inner {
    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tv-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.tv-logo {
    display: inline-flex;
    width: var(--tv-logo-size);
    height: var(--tv-logo-size);
    flex: 0 0 auto;

    transform-style: preserve-3d;

    filter:
        drop-shadow(0 10px 15px rgba(0, 0, 0, .34))
        drop-shadow(0 0 18px rgba(255, 224, 0, .14));
}

.tv-logo svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.tv-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tv-brand-name {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.tv-brand-subtitle {
    color: var(--tv-muted);
    font-size: 10px;
    line-height: 1.4;
}

.tv-nav {
    display: flex;
    align-items: center;
    gap: 9px;
}

.tv-nav-link,
.tv-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 42px;
    padding: 0 15px;

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 13px;

    color: var(--tv-muted);
    background: rgba(255, 255, 255, .025);

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
    transition:
        transform .24s ease,
        color .24s ease,
        border-color .24s ease,
        background .24s ease;
}

.tv-nav-link:hover,
.tv-logout:hover {
    color: var(--tv-yellow);
    border-color: rgba(255, 224, 0, .28);
    background: rgba(255, 224, 0, .055);
    transform: translateY(-2px);
}

.tv-user-chip {
    padding: 8px 13px;

    border:
        1px solid rgba(255, 224, 0, .16);

    border-radius: 999px;

    color: #F6EFA7;
    background: rgba(255, 224, 0, .055);

    font-size: 11px;
    font-weight: 700;
}

/* Page */

.tv-main {
    padding: 50px 0 90px;
}

.tv-hero {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(340px, .85fr);

    align-items: center;
    gap: 60px;

    margin-bottom: 42px;
}

.tv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;
    padding: 8px 13px;

    border:
        1px solid rgba(255, 224, 0, .18);

    border-radius: 999px;

    color: var(--tv-yellow);
    background: rgba(255, 224, 0, .05);

    font-size: 12px;
    font-weight: 800;
}

.tv-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;

    background: var(--tv-yellow);

    box-shadow:
        0 0 0 5px rgba(255, 224, 0, .08),
        0 0 18px rgba(255, 224, 0, .7);
}

.tv-title {
    margin: 0;

    font-size: clamp(40px, 6vw, 78px);
    line-height: 1.13;
    font-weight: 950;
    letter-spacing: -2.5px;
}

.tv-title-highlight {
    position: relative;
    display: inline-block;
    color: var(--tv-yellow);
}

.tv-title-highlight::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 5px;
    z-index: -1;

    height: 12px;

    border-radius: 999px;
    background: rgba(255, 224, 0, .11);
    filter: blur(3px);
}

.tv-lead {
    max-width: 700px;
    margin: 22px 0 0;

    color: var(--tv-muted);

    font-size: 16px;
    line-height: 2;
}

.tv-stage {
    position: relative;
    min-height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1200px;
    transform-style: preserve-3d;
}

.tv-stage::before,
.tv-stage::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.tv-stage::before {
    width: 320px;
    height: 320px;

    border: 1px solid rgba(255, 224, 0, .20);

    box-shadow:
        inset 0 0 80px rgba(255, 224, 0, .035),
        0 0 80px rgba(255, 224, 0, .06);

    animation: tv-orbit 16s linear infinite;
}

.tv-stage::after {
    width: 240px;
    height: 70px;
    bottom: 22px;

    background: rgba(255, 224, 0, .14);
    filter: blur(35px);
    transform: rotateX(72deg);
}

.tv-logo-platform {
    position: relative;
    z-index: 2;

    width: 245px;
    height: 245px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 224, 0, .17);

    border-radius: 48px;

    background:
        linear-gradient(
            145deg,
            rgba(74, 71, 55, .78),
            rgba(31, 30, 23, .88)
        );

    box-shadow:
        -20px 25px 80px rgba(0, 0, 0, .52),
        inset 1px 1px 0 rgba(255, 255, 255, .08),
        inset -1px -1px 0 rgba(0, 0, 0, .65),
        0 0 80px rgba(255, 224, 0, .07);

    transform:
        rotateX(10deg)
        rotateY(-12deg)
        rotateZ(2deg);

    transform-style: preserve-3d;

    animation:
        tv-float 6s ease-in-out infinite;
}

.tv-logo-platform::before {
    content: "";
    position: absolute;
    inset: 14px;

    border:
        1px solid rgba(255, 224, 0, .10);

    border-radius: 38px;

    transform: translateZ(24px);
}

.tv-logo-platform .tv-logo {
    transform: translateZ(56px);
}

/* Panels */

.tv-panel {
    position: relative;
    overflow: hidden;

    border: 1px solid var(--tv-border);
    border-radius: var(--tv-radius-xl);

    background:
        linear-gradient(
            145deg,
            rgba(68, 65, 49, .70),
            rgba(28, 28, 21, .78)
        );

    box-shadow: var(--tv-shadow);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    transform-style: preserve-3d;
}

.tv-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 8%;
    left: 8%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 224, 0, .62),
            transparent
        );
}

.tv-panel-body {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.tv-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 26px;
}

.tv-panel-title {
    margin: 0 0 7px;
    font-size: 24px;
    font-weight: 900;
}

.tv-panel-description {
    margin: 0;
    color: var(--tv-muted);
    line-height: 1.8;
    font-size: 13px;
}

/* Metrics */

.tv-metrics {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
    margin-bottom: 28px;
}

.tv-metric {
    position: relative;
    overflow: hidden;

    min-height: 118px;
    padding: 20px;

    border:
        1px solid rgba(255, 255, 255, .06);

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .035),
            rgba(0, 0, 0, .10)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04);
}

.tv-metric::after {
    content: "";
    position: absolute;
    width: 85px;
    height: 85px;
    left: -35px;
    bottom: -45px;

    border-radius: 50%;

    background: rgba(255, 224, 0, .08);
    filter: blur(12px);
}

.tv-metric-label {
    display: block;
    color: var(--tv-muted);
    font-size: 11px;
    font-weight: 700;
}

.tv-metric-value {
    display: block;
    margin-top: 8px;

    color: var(--tv-yellow);

    font-size: 26px;
    line-height: 1.2;
    font-weight: 950;
}

/* Forms */

.tv-form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.tv-field-full {
    grid-column: 1 / -1;
}

.tv-label {
    display: block;
    margin-bottom: 9px;

    color: #F7F3D8;

    font-size: 13px;
    font-weight: 800;
}

.tv-input,
.tv-select,
.tv-textarea {
    width: 100%;
    min-height: 52px;

    padding: 13px 15px;

    border:
        1px solid rgba(255, 255, 255, .09);

    border-radius: 14px;

    outline: none;

    color: var(--tv-text);
    background: rgba(9, 10, 7, .66);

    font-size: 14px;

    transition:
        border-color .22s ease,
        box-shadow .22s ease,
        transform .22s ease,
        background .22s ease;
}

.tv-textarea {
    min-height: 116px;
    resize: vertical;
}

.tv-input:focus,
.tv-select:focus,
.tv-textarea:focus {
    border-color: rgba(255, 224, 0, .65);

    background: rgba(9, 10, 7, .86);

    box-shadow:
        0 0 0 4px rgba(255, 224, 0, .07),
        0 10px 35px rgba(0, 0, 0, .22);

    transform: translateY(-1px);
}

.tv-select option {
    color: white;
    background: #1E1E17;
}

.tv-help {
    margin: 7px 0 0;
    color: var(--tv-muted);
    font-size: 11px;
    line-height: 1.7;
}

/* Methods */

.tv-method-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}

.tv-method-option {
    position: relative;
}

.tv-method-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tv-method-card {
    min-height: 96px;
    padding: 17px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    border:
        1px solid rgba(255, 255, 255, .075);

    border-radius: 17px;

    color: var(--tv-muted);
    background: rgba(0, 0, 0, .15);

    cursor: pointer;

    transition:
        transform .24s ease,
        border-color .24s ease,
        background .24s ease,
        box-shadow .24s ease;
}

.tv-method-card strong {
    color: var(--tv-text);
    font-size: 14px;
}

.tv-method-card small {
    font-size: 10px;
}

.tv-method-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 224, 0, .25);
}

.tv-method-option input:checked + .tv-method-card {
    border-color: rgba(255, 224, 0, .72);

    color: #FFF8BD;

    background:
        linear-gradient(
            145deg,
            rgba(255, 224, 0, .16),
            rgba(255, 224, 0, .045)
        );

    box-shadow:
        0 14px 40px rgba(255, 224, 0, .08),
        inset 0 1px 0 rgba(255, 255, 255, .08);

    transform:
        translateY(-4px)
        translateZ(15px);
}

/* Upload */

.tv-upload {
    position: relative;

    min-height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 22px;

    border:
        1px dashed rgba(255, 224, 0, .34);

    border-radius: 20px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 224, 0, .055),
            transparent 65%
        ),
        rgba(0, 0, 0, .12);

    cursor: pointer;

    transition:
        border-color .25s ease,
        transform .25s ease,
        background .25s ease;
}

.tv-upload:hover {
    border-color: rgba(255, 224, 0, .75);
    transform: translateY(-3px);
    background: rgba(255, 224, 0, .045);
}

.tv-upload input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    cursor: pointer;
}

.tv-upload-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: var(--tv-yellow);
    background: rgba(255, 224, 0, .10);

    font-size: 25px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .09);
}

.tv-upload-title {
    font-size: 14px;
    font-weight: 900;
}

.tv-upload-file {
    margin-top: 7px;
    color: var(--tv-muted);
    font-size: 11px;
}

/* Buttons */

.tv-button {
    min-height: 52px;
    padding: 0 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 0;
    border-radius: 15px;

    font-size: 13px;
    font-weight: 900;

    cursor: pointer;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        filter .22s ease;
}

.tv-button:hover {
    transform: translateY(-3px);
}

.tv-button:active {
    transform: translateY(0);
}

.tv-button:disabled {
    opacity: .55;
    cursor: wait;
    transform: none;
}

.tv-button-primary {
    color: #19170B;

    background:
        linear-gradient(
            145deg,
            #FFF36D,
            #FFE000 52%,
            #D9B900
        );

    box-shadow:
        0 10px 0 #8E7900,
        0 18px 40px rgba(255, 224, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .65);
}

.tv-button-primary:hover {
    box-shadow:
        0 7px 0 #8E7900,
        0 22px 50px rgba(255, 224, 0, .24),
        inset 0 1px 0 rgba(255, 255, 255, .65);
}

.tv-button-secondary {
    color: var(--tv-text);

    border:
        1px solid rgba(255, 255, 255, .10);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .055),
            rgba(255, 255, 255, .018)
        );
}

.tv-button-danger {
    color: white;

    background:
        linear-gradient(
            145deg,
            #D95D61,
            #8E3033
        );

    box-shadow:
        0 9px 0 #561C1E,
        0 18px 38px rgba(255, 80, 85, .12);
}

/* Alerts */

.tv-alert {
    display: none;
    margin-top: 18px;
    padding: 14px 16px;

    border-radius: 14px;

    font-size: 13px;
    line-height: 1.8;
}

.tv-alert.is-visible {
    display: block;
}

.tv-alert-success {
    color: #B2FFD1;

    border:
        1px solid rgba(86, 228, 154, .28);

    background: rgba(86, 228, 154, .08);
}

.tv-alert-error {
    color: #FFB7B9;

    border:
        1px solid rgba(255, 111, 113, .28);

    background: rgba(255, 111, 113, .08);
}

/* History */

.tv-section {
    margin-top: 30px;
}

.tv-history {
    display: grid;
    gap: 12px;
}

.tv-history-row {
    display: grid;
    grid-template-columns:
        minmax(210px, 1.4fr)
        repeat(4, minmax(100px, 1fr));

    align-items: center;
    gap: 16px;

    padding: 17px 19px;

    border:
        1px solid rgba(255, 255, 255, .055);

    border-radius: 17px;

    background: rgba(0, 0, 0, .14);

    transition:
        transform .23s ease,
        border-color .23s ease,
        background .23s ease;
}

.tv-history-row:hover {
    transform: translateX(-4px);
    border-color: rgba(255, 224, 0, .19);
    background: rgba(255, 224, 0, .025);
}

.tv-history-key {
    display: block;
    margin-bottom: 4px;

    color: var(--tv-muted);

    font-size: 10px;
    font-weight: 700;
}

.tv-history-value {
    display: block;
    font-size: 13px;
    font-weight: 800;
}

.tv-request-id {
    overflow: hidden;
    color: #ECE6B9;
    text-overflow: ellipsis;
}

.tv-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    width: max-content;

    padding: 7px 11px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
}

.tv-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 12px currentColor;
}

.tv-status-pending {
    color: #FFE86E;
    background: rgba(255, 224, 0, .09);
}

.tv-status-confirmed {
    color: #7CF0B0;
    background: rgba(86, 228, 154, .09);
}

.tv-status-rejected {
    color: #FF9698;
    background: rgba(255, 111, 113, .09);
}

/* Admin */

.tv-admin-request {
    margin-bottom: 25px;
}

.tv-admin-grid {
    display: grid;
    grid-template-columns:
        minmax(320px, .85fr)
        minmax(400px, 1.15fr);

    gap: 25px;
}

.tv-detail-list {
    display: grid;
    gap: 15px;
}

.tv-detail-item {
    padding: 15px;

    border:
        1px solid rgba(255, 255, 255, .055);

    border-radius: 15px;

    background: rgba(0, 0, 0, .12);
}

.tv-detail-label {
    display: block;
    margin-bottom: 4px;

    color: var(--tv-muted);

    font-size: 10px;
    font-weight: 800;
}

.tv-detail-value {
    font-size: 14px;
    font-weight: 850;
    overflow-wrap: anywhere;
}

.tv-detail-amount {
    color: var(--tv-yellow);
    font-size: 25px;
    font-weight: 950;
}

.tv-proof-frame {
    position: relative;
    overflow: hidden;

    min-height: 380px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 224, 0, .14);

    border-radius: 22px;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 224, 0, .04),
            transparent 68%
        ),
        #0A0B08;
}

.tv-proof-frame::before {
    content: "إثبات التحويل";
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;

    padding: 7px 11px;

    border-radius: 999px;

    color: var(--tv-yellow);

    background: rgba(11, 12, 9, .78);

    font-size: 10px;
    font-weight: 900;

    backdrop-filter: blur(10px);
}

.tv-proof-image {
    display: block;

    width: 100%;
    max-height: 520px;

    object-fit: contain;

    transition:
        transform .35s ease,
        filter .35s ease;
}

.tv-proof-frame:hover .tv-proof-image {
    transform: scale(1.025);
    filter: contrast(1.04);
}

.tv-admin-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;

    margin-top: 20px;
}

/* Empty */

.tv-empty {
    padding: 55px 25px;
    text-align: center;
}

.tv-empty-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 224, 0, .18);

    border-radius: 23px;

    color: var(--tv-yellow);
    background: rgba(255, 224, 0, .06);

    font-size: 28px;
}

.tv-empty h3 {
    margin: 0 0 7px;
}

.tv-empty p {
    margin: 0;
    color: var(--tv-muted);
}

/* Pagination */

.tv-pagination {
    margin-top: 22px;

    display: flex;
    justify-content: center;
    gap: 10px;
}

.tv-pagination a,
.tv-pagination span {
    padding: 10px 15px;

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 12px;

    color: var(--tv-muted);
    background: rgba(255, 255, 255, .025);

    font-size: 12px;
    font-weight: 800;
}

.tv-pagination a:hover {
    color: var(--tv-yellow);
    border-color: rgba(255, 224, 0, .28);
}

/* Animations */

@keyframes tv-float {
    0%,
    100% {
        transform:
            translateY(0)
            rotateX(10deg)
            rotateY(-12deg)
            rotateZ(2deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotateX(5deg)
            rotateY(-5deg)
            rotateZ(-1deg);
    }
}

@keyframes tv-orbit {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */

@media (max-width: 980px) {
    .tv-hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tv-stage {
        min-height: 330px;
    }

    .tv-admin-grid {
        grid-template-columns: 1fr;
    }

    .tv-history-row {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .tv-container {
        width: min(100% - 22px, 1240px);
    }

    .tv-header-inner {
        min-height: auto;
        padding: 13px 0;

        align-items: flex-start;
        flex-direction: column;
    }

    .tv-brand-subtitle {
        display: none;
    }

    .tv-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .tv-user-chip {
        display: none;
    }

    .tv-main {
        padding-top: 30px;
    }

    .tv-title {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .tv-lead {
        font-size: 14px;
    }

    .tv-stage {
        min-height: 290px;
    }

    .tv-logo-platform {
        width: 200px;
        height: 200px;
        border-radius: 39px;
    }

    .tv-stage::before {
        width: 255px;
        height: 255px;
    }

    .tv-panel-body {
        padding: 20px;
    }

    .tv-panel-header {
        flex-direction: column;
    }

    .tv-metrics,
    .tv-form-grid,
    .tv-method-grid {
        grid-template-columns: 1fr;
    }

    .tv-field-full {
        grid-column: auto;
    }

    .tv-history-row {
        grid-template-columns: 1fr;
    }

    .tv-admin-actions {
        flex-direction: column;
    }

    .tv-admin-actions .tv-button {
        width: 100%;
    }

    .tv-proof-frame {
        min-height: 270px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Refined typography scale */

.tv-title {
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.tv-lead {
    font-size: 14.5px;
    line-height: 1.95;
}

.tv-panel-title {
    font-size: 20px;
}

.tv-panel-description {
    font-size: 12.5px;
}

.tv-metric-value {
    font-size: 22px;
}

.tv-detail-amount {
    font-size: 21px;
}

@media (max-width: 720px) {
    .tv-title {
        font-size: 34px;
        line-height: 1.25;
        letter-spacing: -1px;
    }

    .tv-lead {
        font-size: 13.5px;
    }

    .tv-panel-title {
        font-size: 18px;
    }
}

/* =========================================================
   Public Website
   ========================================================= */

.tv-nav-login {
    min-height: 42px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: #1b190d;
    background: var(--tv-yellow);

    font-size: 12px;
    font-weight: 900;

    box-shadow:
        0 8px 22px rgba(255, 224, 0, .15);

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.tv-nav-login:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(255, 224, 0, .22);
}

.tv-public-hero {
    min-height: 650px;

    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(390px, .95fr);

    align-items: center;
    gap: 55px;

    padding: 45px 0 65px;
}

.tv-public-title {
    margin: 0;

    font-size: clamp(38px, 5.1vw, 64px);
    line-height: 1.2;
    letter-spacing: -2px;
    font-weight: 900;
}

.tv-public-title span {
    color: var(--tv-yellow);
}

.tv-public-lead {
    max-width: 690px;
    margin: 22px 0 0;

    color: var(--tv-muted);

    font-size: 15px;
    line-height: 2;
}

.tv-public-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;

    margin-top: 28px;
}

.tv-public-points {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;

    margin-top: 26px;

    color: var(--tv-muted);

    font-size: 11px;
    font-weight: 700;
}

.tv-public-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.tv-public-points span::before {
    content: "";
    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: var(--tv-yellow);

    box-shadow:
        0 0 12px rgba(255, 224, 0, .8);
}

.tv-public-stage {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1300px;
}

.tv-public-logo-platform {
    position: relative;
    z-index: 3;

    width: 255px;
    height: 255px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 224, 0, .20);

    border-radius: 56px;

    background:
        linear-gradient(
            145deg,
            rgba(77, 74, 56, .9),
            rgba(27, 27, 20, .94)
        );

    box-shadow:
        -24px 35px 90px rgba(0, 0, 0, .52),
        inset 1px 1px 0 rgba(255, 255, 255, .09),
        inset -2px -2px 0 rgba(0, 0, 0, .55),
        0 0 80px rgba(255, 224, 0, .09);

    transform:
        rotateX(9deg)
        rotateY(-12deg)
        rotateZ(2deg);

    animation:
        tv-public-float 6s ease-in-out infinite;
}

.tv-public-logo-platform::before {
    content: "";
    position: absolute;
    inset: 15px;

    border:
        1px solid rgba(255, 224, 0, .12);

    border-radius: 44px;
}

.tv-public-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 224, 0, .14);
}

.orbit-one {
    width: 360px;
    height: 360px;

    animation: tv-orbit 18s linear infinite;
}

.orbit-two {
    width: 450px;
    height: 450px;

    border-style: dashed;
    opacity: .52;

    animation: tv-orbit-reverse 28s linear infinite;
}

.tv-floating-card {
    position: absolute;
    z-index: 5;

    min-width: 155px;
    padding: 15px 17px;

    border:
        1px solid rgba(255, 224, 0, .16);

    border-radius: 17px;

    background:
        rgba(27, 27, 20, .84);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .35);

    backdrop-filter: blur(15px);
}

.tv-floating-card span {
    display: block;

    color: var(--tv-muted);
    font-size: 10px;
}

.tv-floating-card strong {
    display: block;
    margin-top: 4px;

    color: var(--tv-yellow);
    font-size: 14px;
}

.card-one {
    top: 85px;
    left: 5px;
}

.card-two {
    right: 0;
    bottom: 75px;
}

.tv-public-section {
    padding: 75px 0;
}

.tv-section-heading {
    max-width: 730px;
    margin-bottom: 30px;
}

.tv-section-heading-row {
    max-width: none;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.tv-section-kicker {
    display: inline-block;

    margin-bottom: 9px;

    color: var(--tv-yellow);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .4px;
}

.tv-section-heading h2,
.tv-home-cta h2,
.tv-transparency-panel h2 {
    margin: 0;

    font-size: clamp(26px, 3.5vw, 41px);
    line-height: 1.35;
    letter-spacing: -1px;
}

.tv-section-heading p,
.tv-transparency-panel p {
    margin: 12px 0 0;

    color: var(--tv-muted);

    font-size: 13px;
    line-height: 1.95;
}

.tv-text-link {
    color: var(--tv-yellow);
    font-size: 12px;
    font-weight: 900;
}

.tv-feature-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.tv-feature-card {
    position: relative;
    overflow: hidden;

    min-height: 285px;
    padding: 30px;

    border:
        1px solid rgba(255, 255, 255, .07);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(62, 60, 46, .72),
            rgba(25, 25, 19, .86)
        );

    box-shadow:
        0 28px 75px rgba(0, 0, 0, .27);
}

.tv-feature-card.is-yellow {
    color: #1c1a0d;

    border-color: rgba(255, 224, 0, .55);

    background:
        linear-gradient(
            145deg,
            #fff173,
            #ffe000 58%,
            #d1b200
        );
}

.tv-feature-number {
    display: inline-flex;

    color: var(--tv-yellow);

    font-size: 13px;
    font-weight: 900;
}

.tv-feature-card.is-yellow .tv-feature-number {
    color: rgba(28, 26, 13, .62);
}

.tv-feature-card h3 {
    margin: 45px 0 12px;

    font-size: 26px;
}

.tv-feature-card p {
    max-width: 540px;
    margin: 0;

    color: var(--tv-muted);

    font-size: 13px;
    line-height: 1.9;
}

.tv-feature-card.is-yellow p {
    color: rgba(28, 26, 13, .72);
}

.tv-feature-card a {
    display: inline-flex;
    margin-top: 26px;

    color: var(--tv-yellow);

    font-size: 12px;
    font-weight: 900;
}

.tv-feature-card.is-yellow a {
    color: #1c1a0d;
}

.tv-level-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}

.tv-level-card {
    position: relative;
    overflow: hidden;

    min-height: 255px;
    padding: 23px;

    border:
        1px solid rgba(255, 255, 255, .065);

    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .032),
            rgba(0, 0, 0, .16)
        );

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.tv-level-card::after {
    content: "";

    position: absolute;
    width: 120px;
    height: 120px;

    left: -55px;
    bottom: -55px;

    border-radius: 50%;

    background: rgba(255, 224, 0, .065);
    filter: blur(10px);
}

.tv-level-card:hover {
    transform: translateY(-7px);

    border-color: rgba(255, 224, 0, .35);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .3);
}

.tv-level-index {
    color: var(--tv-yellow);

    font-size: 12px;
    font-weight: 900;
}

.tv-level-card h3 {
    margin: 42px 0 11px;

    font-size: 18px;
}

.tv-level-card p {
    margin: 0;

    color: var(--tv-muted);

    font-size: 11.5px;
    line-height: 1.85;
}

.tv-level-arrow {
    display: inline-flex;
    margin-top: 22px;

    color: #eee7b5;

    font-size: 11px;
    font-weight: 800;
}

.tv-course-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}

.tv-course-card {
    min-height: 310px;
    padding: 22px;

    display: flex;
    flex-direction: column;

    border:
        1px solid rgba(255, 255, 255, .065);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(64, 62, 47, .58),
            rgba(25, 25, 19, .82)
        );

    transition:
        transform .24s ease,
        border-color .24s ease;
}

.tv-course-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 224, 0, .28);
}

.tv-course-card-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.tv-course-level,
.tv-course-status {
    padding: 6px 9px;
    border-radius: 999px;

    font-size: 9px;
    font-weight: 900;
}

.tv-course-level {
    color: var(--tv-yellow);
    background: rgba(255, 224, 0, .08);
}

.tv-course-status {
    color: var(--tv-muted);
    background: rgba(255, 255, 255, .04);
}

.tv-course-card h3 {
    margin: 31px 0 10px;
    font-size: 17px;
    line-height: 1.55;
}

.tv-course-card p {
    margin: 0;

    color: var(--tv-muted);

    font-size: 11px;
    line-height: 1.85;
}

.tv-course-meta {
    display: flex;
    gap: 13px;

    margin-top: auto;
    padding-top: 20px;

    color: #d2cdb7;

    font-size: 9.5px;
}

.tv-course-link {
    display: flex;
    justify-content: space-between;

    margin-top: 16px;
    padding-top: 15px;

    border-top:
        1px solid rgba(255, 255, 255, .055);

    color: var(--tv-yellow);

    font-size: 10.5px;
    font-weight: 900;
}

.tv-process-panel {
    padding: 35px;

    border:
        1px solid rgba(255, 224, 0, .13);

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(61, 59, 45, .64),
            rgba(25, 25, 19, .85)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .3);
}

.tv-process-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}

.tv-process-step {
    padding: 21px;

    border:
        1px solid rgba(255, 255, 255, .055);

    border-radius: 19px;

    background: rgba(0, 0, 0, .12);
}

.tv-process-step > span {
    color: var(--tv-yellow);

    font-size: 11px;
    font-weight: 900;
}

.tv-process-step h3 {
    margin: 23px 0 8px;
    font-size: 15px;
}

.tv-process-step p {
    margin: 0;

    color: var(--tv-muted);

    font-size: 10.5px;
    line-height: 1.8;
}

.tv-transparency-panel {
    min-height: 290px;
    padding: 36px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 35px;

    border:
        1px solid rgba(255, 224, 0, .16);

    border-radius: 30px;

    background:
        radial-gradient(
            circle at left,
            rgba(255, 224, 0, .075),
            transparent 38%
        ),
        #1b1b14;
}

.tv-transparency-badge {
    width: 185px;
    height: 185px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 224, 0, .22);

    border-radius: 50%;

    background:
        rgba(255, 224, 0, .06);

    box-shadow:
        inset 0 0 50px rgba(255, 224, 0, .03);
}

.tv-transparency-badge span {
    color: var(--tv-muted);
    font-size: 10px;
}

.tv-transparency-badge strong {
    margin-top: 5px;
    color: var(--tv-yellow);
    font-size: 14px;
}

.tv-home-cta {
    margin: 65px 0 35px;
    padding: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border-radius: 30px;

    color: #1d1b0e;

    background:
        linear-gradient(
            145deg,
            #fff078,
            #ffe000 58%,
            #cdaa00
        );

    box-shadow:
        0 28px 65px rgba(255, 224, 0, .13);
}

.tv-home-cta .tv-section-kicker {
    color: rgba(29, 27, 14, .58);
}

.tv-home-cta .tv-button-primary {
    color: white;
    background: #28271d;
    box-shadow: none;
}

.tv-home-cta .tv-button-secondary {
    color: #29281e;
    border-color: rgba(41, 40, 30, .22);
    background: rgba(255, 255, 255, .25);
}

/* Academy */

.tv-academy-hero {
    min-height: 390px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        230px;

    align-items: center;
    gap: 40px;

    padding: 55px 0;
}

.tv-academy-hero h1 {
    margin: 0;

    font-size: clamp(36px, 5vw, 59px);
    line-height: 1.22;
}

.tv-academy-hero h1 span {
    color: var(--tv-yellow);
}

.tv-academy-hero p {
    max-width: 650px;
    margin: 18px 0 0;

    color: var(--tv-muted);

    font-size: 14px;
    line-height: 2;
}

.tv-academy-logo {
    width: 190px;
    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 224, 0, .18);

    border-radius: 45px;

    background:
        linear-gradient(
            145deg,
            rgba(77, 74, 56, .72),
            rgba(27, 27, 20, .88)
        );

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .35);
}

.tv-level-hero {
    padding: 50px 0 25px;
}

.tv-back-link {
    color: var(--tv-muted);

    font-size: 11px;
    font-weight: 700;
}

.tv-level-hero-content {
    display: flex;
    align-items: center;
    gap: 27px;

    margin-top: 35px;
}

.tv-level-hero-number {
    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 224, 0, .25);

    border-radius: 31px;

    color: var(--tv-yellow);
    background: rgba(255, 224, 0, .06);

    font-size: 26px;
    font-weight: 900;
}

.tv-level-hero h1 {
    margin: 0;

    font-size: clamp(32px, 4vw, 51px);
}

.tv-level-hero p {
    max-width: 670px;
    margin: 10px 0 0;

    color: var(--tv-muted);

    font-size: 13px;
    line-height: 1.9;
}

/* Footer */

.tv-footer {
    margin-top: 70px;
    padding: 45px 0 22px;

    border-top:
        1px solid rgba(255, 224, 0, .10);

    background: rgba(8, 9, 6, .55);
}

.tv-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.tv-footer-brand {
    color: var(--tv-yellow);

    font-size: 18px;
    font-weight: 900;
}

.tv-footer p {
    max-width: 520px;
    margin: 7px 0 0;

    color: var(--tv-muted);

    font-size: 10.5px;
    line-height: 1.8;
}

.tv-footer-links {
    display: flex;
    gap: 20px;

    color: var(--tv-muted);

    font-size: 11px;
    font-weight: 800;
}

.tv-footer-links a:hover {
    color: var(--tv-yellow);
}

.tv-risk-notice {
    margin-top: 28px;
    padding-top: 18px;

    border-top:
        1px solid rgba(255, 255, 255, .045);

    color: #777568;

    font-size: 9px;
    text-align: center;
}

/* Login */

.tv-login-body {
    min-height: 100vh;
}

.tv-login-shell {
    min-height: 100vh;

    display: grid;
    grid-template-columns:
        minmax(460px, .95fr)
        minmax(450px, 1.05fr);
}

.tv-login-visual {
    position: relative;
    overflow: hidden;

    min-height: 100vh;
    padding: 38px 48px;

    display: flex;
    flex-direction: column;

    border-left:
        1px solid rgba(255, 224, 0, .12);

    background:
        radial-gradient(
            circle at 30% 70%,
            rgba(255, 224, 0, .12),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #151610,
            #29271d
        );
}

.tv-login-visual-content {
    position: relative;
    z-index: 2;

    max-width: 590px;
    margin-top: 90px;
}

.tv-login-visual-content h1 {
    margin: 0;

    font-size: clamp(38px, 4.7vw, 64px);
    line-height: 1.23;
    letter-spacing: -2px;
}

.tv-login-visual-content h1 span {
    color: var(--tv-yellow);
}

.tv-login-visual-content p {
    max-width: 540px;
    margin: 18px 0 0;

    color: var(--tv-muted);

    font-size: 13.5px;
    line-height: 2;
}

.tv-login-visual-logo {
    position: absolute;
    left: 50px;
    bottom: -55px;

    opacity: .72;
    transform: scale(.78);
}

.tv-login-form-side {
    min-height: 100vh;
    padding: 40px 25px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-login-card {
    width: min(470px, 100%);
    padding: 32px;

    border:
        1px solid rgba(255, 255, 255, .07);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(57, 55, 42, .68),
            rgba(25, 25, 19, .88)
        );

    box-shadow:
        0 35px 90px rgba(0, 0, 0, .37);
}

.tv-login-home-link {
    color: var(--tv-muted);
    font-size: 10px;
    font-weight: 700;
}

.tv-login-heading {
    margin-top: 32px;
}

.tv-login-heading h2 {
    margin: 0;

    font-size: 31px;
}

.tv-login-heading p {
    margin: 7px 0 0;

    color: var(--tv-muted);

    font-size: 11.5px;
    line-height: 1.8;
}

.tv-google-button {
    min-height: 54px;
    margin-top: 25px;
    padding: 0 17px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border:
        1px solid rgba(255, 255, 255, .10);

    border-radius: 14px;

    color: var(--tv-text);
    background: rgba(255, 255, 255, .035);

    font-size: 12px;
    font-weight: 800;

    transition:
        border-color .22s ease,
        transform .22s ease;
}

.tv-google-button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 224, 0, .26);
}

.tv-google-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #171710;
    background: white;

    font-size: 13px;
    font-weight: 900;
}

.tv-auth-divider {
    position: relative;

    margin: 23px 0;

    color: var(--tv-muted);

    font-size: 9px;
    text-align: center;
}

.tv-auth-divider::before {
    content: "";

    position: absolute;
    right: 0;
    left: 0;
    top: 50%;

    height: 1px;

    background: rgba(255, 255, 255, .06);
}

.tv-auth-divider span {
    position: relative;
    z-index: 1;

    padding: 0 12px;
    background: #27261d;
}

.tv-auth-form {
    display: grid;
    gap: 17px;
}

.tv-auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    color: var(--tv-muted);

    font-size: 10px;
}

.tv-auth-row a {
    color: var(--tv-yellow);
}

.tv-remember {
    display: flex;
    align-items: center;
    gap: 7px;

    cursor: pointer;
}

.tv-remember input {
    accent-color: var(--tv-yellow);
}

.tv-auth-submit {
    width: 100%;
}

.tv-register-link {
    margin: 22px 0 0;

    color: var(--tv-muted);

    font-size: 10.5px;
    text-align: center;
}

.tv-register-link a {
    color: var(--tv-yellow);
    font-weight: 900;
}

.tv-auth-errors,
.tv-auth-success {
    margin-top: 18px;
    padding: 12px 14px;

    border-radius: 13px;

    font-size: 10.5px;
    line-height: 1.8;
}

.tv-auth-errors {
    color: #ffb2b4;

    border:
        1px solid rgba(255, 111, 113, .25);

    background: rgba(255, 111, 113, .07);
}

.tv-auth-success {
    color: #a6f5c7;

    border:
        1px solid rgba(86, 228, 154, .25);

    background: rgba(86, 228, 154, .07);
}

@keyframes tv-public-float {
    0%,
    100% {
        transform:
            translateY(0)
            rotateX(9deg)
            rotateY(-12deg)
            rotateZ(2deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotateX(5deg)
            rotateY(-5deg)
            rotateZ(-1deg);
    }
}

@keyframes tv-orbit-reverse {
    to {
        transform: rotate(-360deg);
    }
}

@media (max-width: 1080px) {
    .tv-level-grid,
    .tv-course-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

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

    .tv-login-shell {
        grid-template-columns:
            minmax(360px, .8fr)
            minmax(430px, 1.2fr);
    }
}

@media (max-width: 850px) {
    .tv-public-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tv-public-stage {
        min-height: 390px;
    }

    .tv-feature-grid {
        grid-template-columns: 1fr;
    }

    .tv-login-shell {
        display: block;
    }

    .tv-login-visual {
        min-height: 430px;
        padding: 28px;
    }

    .tv-login-visual-content {
        margin-top: 55px;
    }

    .tv-login-form-side {
        min-height: auto;
        padding: 45px 18px;
    }

    .tv-login-visual-logo {
        display: none;
    }
}

@media (max-width: 650px) {
    .tv-public-title {
        font-size: 37px;
        letter-spacing: -1px;
    }

    .tv-public-lead {
        font-size: 13px;
    }

    .tv-public-section {
        padding: 52px 0;
    }

    .tv-level-grid,
    .tv-course-grid,
    .tv-process-grid {
        grid-template-columns: 1fr;
    }

    .tv-section-heading-row,
    .tv-home-cta,
    .tv-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .tv-transparency-panel {
        grid-template-columns: 1fr;
    }

    .tv-transparency-badge {
        width: 145px;
        height: 145px;
    }

    .tv-public-stage {
        min-height: 340px;
    }

    .tv-public-logo-platform {
        width: 205px;
        height: 205px;
        border-radius: 44px;
    }

    .orbit-one {
        width: 285px;
        height: 285px;
    }

    .orbit-two {
        width: 330px;
        height: 330px;
    }

    .tv-floating-card {
        min-width: 130px;
        padding: 12px;
    }

    .card-one {
        left: -3px;
    }

    .card-two {
        right: -3px;
    }

    .tv-academy-hero {
        grid-template-columns: 1fr;
    }

    .tv-academy-logo {
        display: none;
    }

    .tv-level-hero-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .tv-footer-links {
        flex-wrap: wrap;
    }

    .tv-login-visual-content h1 {
        font-size: 38px;
    }

    .tv-login-card {
        padding: 23px;
    }
}

/* =========================================================
   Victor Trader Community
   ========================================================= */

.vt-community-hero {
    position: relative;
    overflow: hidden;

    min-height: 570px;
    margin-top: 25px;
    padding: 70px 55px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        230px;

    align-items: center;
    gap: 45px;

    border: 1px solid rgba(255, 224, 0, .16);
    border-radius: 36px;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(255, 224, 0, .12),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            #27271d,
            #11120d 63%,
            #080905
        );

    box-shadow:
        0 40px 100px rgba(0, 0, 0, .38);
}

.vt-community-hero-content {
    position: relative;
    z-index: 5;

    max-width: 700px;
}

.vt-community-hero h1 {
    margin: 0;

    font-size: clamp(39px, 5.2vw, 68px);
    line-height: 1.22;
    letter-spacing: -2px;
}

.vt-community-hero h1 span {
    color: var(--tv-yellow);
}

.vt-community-hero p {
    max-width: 680px;
    margin: 20px 0 0;

    color: var(--tv-muted);

    font-size: 14px;
    line-height: 2;
}

.vt-community-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 28px;
}

.vt-community-mark {
    position: relative;
    z-index: 5;

    width: 205px;
    height: 205px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 224, 0, .21);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 224, 0, .09),
            rgba(0, 0, 0, .15)
        );

    box-shadow:
        inset 0 0 55px rgba(255, 224, 0, .04),
        0 30px 70px rgba(0, 0, 0, .35);

    animation: vt-community-float 5s ease-in-out infinite;
}

.vt-community-mark span {
    margin-top: 8px;

    color: var(--tv-yellow);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 3px;
}

.vt-candle-field {
    position: absolute;
    z-index: 1;
    inset: 0;

    overflow: hidden;
    opacity: .48;

    pointer-events: none;

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            #000 27%,
            #000 100%
        );
}

.vt-chart-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 224, 0, .045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 224, 0, .035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}

.vt-candle {
    position: absolute;
    left: var(--candle-x);
    bottom: 80px;

    width: 11px;
    height: var(--body-height);

    border-radius: 3px;

    animation:
        vt-candle-pulse 3.8s
        var(--animation-delay)
        ease-in-out infinite;
}

.vt-candle::before {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    width: 2px;
    height: var(--wick-height);

    transform: translate(-50%, -50%);

    border-radius: 2px;
}

.vt-candle-up {
    background:
        linear-gradient(
            180deg,
            #fff36d,
            #ffe000 60%,
            #bba000
        );

    box-shadow:
        0 0 17px rgba(255, 224, 0, .28);
}

.vt-candle-up::before {
    z-index: -1;
    background: #ffe000;
}

.vt-candle-down {
    border: 2px solid rgba(255, 224, 0, .56);
    background: #11120d;
}

.vt-candle-down::before {
    z-index: -1;
    background: rgba(255, 224, 0, .65);
}

.vt-chart-line {
    position: absolute;
    right: -5%;
    bottom: 152px;

    width: 105%;
    height: 170px;

    opacity: .35;

    border-top: 3px solid var(--tv-yellow);
    border-radius: 50%;

    transform:
        rotate(-8deg)
        skewX(-18deg);

    box-shadow:
        0 -5px 25px rgba(255, 224, 0, .14);
}

.vt-community-statistics {
    position: relative;
    z-index: 7;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;

    margin-top: -35px;
    padding: 0 27px;
}

.vt-community-statistics article {
    min-height: 118px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid rgba(255, 224, 0, .13);
    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(62, 60, 46, .92),
            rgba(22, 22, 16, .96)
        );

    box-shadow:
        0 20px 48px rgba(0, 0, 0, .31);

    backdrop-filter: blur(15px);
}

.vt-community-statistics span {
    color: var(--tv-muted);

    font-size: 9.5px;
    font-weight: 700;
}

.vt-community-statistics strong {
    margin-top: 7px;

    color: var(--tv-yellow);

    font-size: 23px;
    line-height: 1.3;
}

.vt-community-statistics small {
    font-size: 9px;
}

.vt-community-statistics .vt-stat-text {
    color: #f3eed7;

    font-size: 14px;
}

.vt-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--tv-muted);

    font-size: 9.5px;
    font-weight: 700;
}

.vt-live-indicator span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--tv-yellow);

    box-shadow:
        0 0 0 5px rgba(255, 224, 0, .08),
        0 0 17px rgba(255, 224, 0, .75);

    animation: vt-live-pulse 1.8s ease-in-out infinite;
}

.vt-members-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.vt-member-card {
    position: relative;
    overflow: hidden;

    min-height: 350px;
    padding: 23px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(67, 65, 49, .68),
            rgba(24, 24, 18, .92)
        );

    box-shadow:
        0 26px 65px rgba(0, 0, 0, .27);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.vt-member-card:hover {
    transform: translateY(-7px);

    border-color: rgba(255, 224, 0, .30);

    box-shadow:
        0 34px 80px rgba(0, 0, 0, .38);
}

.vt-member-card-glow {
    position: absolute;
    width: 150px;
    height: 150px;

    left: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: rgba(255, 224, 0, .07);
    filter: blur(15px);
}

.vt-member-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vt-member-rank {
    color: var(--tv-yellow);

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.vt-founder-badge,
.vt-member-badge {
    padding: 6px 9px;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 900;
}

.vt-founder-badge {
    color: #1a190d;
    background: var(--tv-yellow);
}

.vt-member-badge {
    color: #d7d2bb;
    background: rgba(255, 255, 255, .055);
}

.vt-member-identity {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 30px;
}

.vt-member-avatar {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(255, 224, 0, .23);
    border-radius: 18px;

    color: #1b1a0d;

    background:
        linear-gradient(
            145deg,
            #fff272,
            #ffe000,
            #bda200
        );

    box-shadow:
        0 12px 30px rgba(255, 224, 0, .12);

    font-size: 22px;
    font-weight: 900;
}

.vt-member-identity h3 {
    margin: 0;

    font-size: 17px;
}

.vt-member-identity p {
    margin: 5px 0 0;

    color: var(--tv-muted);

    font-size: 9.5px;
}

.vt-member-data {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 27px;
}

.vt-member-data > div {
    min-height: 88px;
    padding: 14px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 15px;

    background: rgba(0, 0, 0, .14);
}

.vt-member-data span {
    color: var(--tv-muted);

    font-size: 8.5px;
}

.vt-member-data strong {
    margin-top: 7px;

    color: #f0ebd7;

    font-size: 15px;
}

.vt-member-data small {
    font-size: 7.5px;
}

.vt-member-data .vt-profit-value {
    color: var(--tv-yellow);
}

.vt-member-data .vt-private-value {
    color: #777466;

    font-size: 12px;
}

.vt-member-footer {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;
    padding-top: 21px;

    border-top: 1px solid rgba(255, 255, 255, .055);
}

.vt-member-footer > span {
    display: flex;
    align-items: center;
    gap: 7px;

    color: var(--tv-muted);

    font-size: 8.5px;
}

.vt-member-footer i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--tv-yellow);
    box-shadow: 0 0 10px rgba(255, 224, 0, .7);
}

.vt-community-empty {
    min-height: 390px;
    padding: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px dashed rgba(255, 224, 0, .20);
    border-radius: 28px;

    background:
        radial-gradient(
            circle,
            rgba(255, 224, 0, .05),
            transparent 43%
        ),
        rgba(0, 0, 0, .10);

    text-align: center;
}

.vt-community-empty-icon {
    width: 130px;
    height: 130px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 224, 0, .17);
    border-radius: 50%;

    background: rgba(255, 224, 0, .035);
}

.vt-community-empty h3 {
    margin: 22px 0 7px;

    font-size: 21px;
}

.vt-community-empty p {
    max-width: 480px;
    margin: 0 0 23px;

    color: var(--tv-muted);

    font-size: 11.5px;
    line-height: 1.9;
}

.vt-community-pagination {
    margin-top: 30px;
}

.vt-community-privacy {
    margin: 45px 0;
    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border: 1px solid rgba(255, 224, 0, .13);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(59, 57, 43, .58),
            rgba(22, 22, 16, .84)
        );
}

.vt-community-privacy h2 {
    margin: 0;

    font-size: 28px;
}

.vt-community-privacy p {
    max-width: 610px;
    margin: 10px 0 0;

    color: var(--tv-muted);

    font-size: 11px;
    line-height: 1.9;
}

.vt-privacy-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.vt-privacy-items span {
    padding: 9px 12px;

    border: 1px solid rgba(255, 224, 0, .14);
    border-radius: 999px;

    color: #dbd6bd;
    background: rgba(255, 224, 0, .035);

    font-size: 9px;
    font-weight: 800;
}

/* Community settings */

.vt-settings-hero {
    min-height: 330px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        160px;

    align-items: center;
    gap: 35px;

    padding: 50px 0 30px;
}

.vt-settings-hero h1 {
    margin: 0;

    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.3;
}

.vt-settings-hero h1 span {
    color: var(--tv-yellow);
}

.vt-settings-hero p {
    max-width: 620px;
    margin: 13px 0 0;

    color: var(--tv-muted);

    font-size: 13px;
    line-height: 1.9;
}

.vt-settings-logo {
    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 224, 0, .18);
    border-radius: 38px;

    background:
        linear-gradient(
            145deg,
            rgba(76, 73, 55, .75),
            rgba(24, 24, 18, .92)
        );
}

.vt-community-settings-card {
    max-width: 820px;
    margin: 0 auto 70px;
    padding: 29px;

    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            rgba(62, 60, 46, .66),
            rgba(24, 24, 18, .91)
        );

    box-shadow:
        0 35px 90px rgba(0, 0, 0, .31);
}

.vt-community-form {
    display: grid;
    gap: 22px;
}

.vt-community-switch-card {
    position: relative;

    min-height: 95px;
    padding: 19px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border: 1px solid rgba(255, 224, 0, .14);
    border-radius: 18px;

    background: rgba(255, 224, 0, .035);

    cursor: pointer;
}

.vt-community-switch-card strong,
.vt-privacy-option strong {
    display: block;

    font-size: 13px;
}

.vt-community-switch-card small,
.vt-privacy-option small {
    display: block;
    margin-top: 4px;

    color: var(--tv-muted);

    font-size: 9.5px;
    line-height: 1.7;
}

.vt-community-switch-card input {
    position: absolute;
    opacity: 0;
}

.vt-community-switch-card i {
    position: relative;

    width: 52px;
    height: 29px;

    flex-shrink: 0;

    border-radius: 999px;

    background: rgba(255, 255, 255, .10);

    transition: .25s ease;
}

.vt-community-switch-card i::after {
    content: "";

    position: absolute;
    top: 4px;
    right: 4px;

    width: 21px;
    height: 21px;

    border-radius: 50%;

    background: #aaa696;

    transition: .25s ease;
}

.vt-community-switch-card input:checked + i {
    background: var(--tv-yellow);
}

.vt-community-switch-card input:checked + i::after {
    right: 27px;
    background: #1b1a0d;
}

.vt-community-field p {
    margin: 7px 0 0;

    color: var(--tv-muted);

    font-size: 9px;
}

.vt-community-options {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px;
}

.vt-privacy-option {
    min-height: 105px;
    padding: 18px;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 17px;

    background: rgba(0, 0, 0, .12);

    cursor: pointer;
}

.vt-privacy-option input {
    width: 18px;
    height: 18px;

    margin-top: 3px;

    flex-shrink: 0;

    accent-color: var(--tv-yellow);
}

.vt-community-security-note {
    padding: 15px 17px;

    border-right: 4px solid var(--tv-yellow);
    border-radius: 12px;

    color: var(--tv-muted);
    background: rgba(255, 224, 0, .045);

    font-size: 10px;
    line-height: 1.8;
}

.vt-community-security-note strong {
    color: var(--tv-yellow);
}

@keyframes vt-community-float {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes vt-candle-pulse {
    0%,
    100% {
        transform: translateY(0);
        opacity: .68;
    }

    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

@keyframes vt-live-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
    }
}

@media (max-width: 1050px) {
    .vt-members-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .vt-community-statistics {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .vt-community-hero {
        min-height: 600px;
        padding: 45px 25px;

        grid-template-columns: 1fr;
    }

    .vt-community-mark {
        width: 145px;
        height: 145px;
    }

    .vt-community-statistics {
        margin-top: -20px;
        padding: 0 12px;
    }

    .vt-community-privacy {
        align-items: flex-start;
        flex-direction: column;
    }

    .vt-privacy-items {
        justify-content: flex-start;
    }

    .vt-settings-hero {
        grid-template-columns: 1fr;
    }

    .vt-settings-logo {
        display: none;
    }
}

@media (max-width: 590px) {
    .vt-community-hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .vt-community-statistics,
    .vt-members-grid,
    .vt-community-options {
        grid-template-columns: 1fr;
    }

    .vt-community-statistics {
        margin-top: 16px;
        padding: 0;
    }

    .vt-community-statistics article {
        min-height: 95px;
    }

    .vt-member-data {
        grid-template-columns: 1fr;
    }

    .vt-community-settings-card {
        padding: 20px;
    }
}

/* =========================================================
   Capital Management Focus
   ========================================================= */

.vt-capital-hero {
    position: relative;
    overflow: hidden;

    min-height: 650px;
    padding: 60px 0;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(390px, .9fr);

    align-items: center;
    gap: 55px;
}

.vt-capital-hero-copy {
    position: relative;
    z-index: 4;
}

.vt-capital-hero h1 {
    max-width: 790px;
    margin: 0;

    font-size: clamp(43px, 5.4vw, 70px);
    line-height: 1.22;
    letter-spacing: -2px;
}

.vt-capital-hero h1 span {
    display: block;
    color: var(--tv-yellow);
}

.vt-capital-hero-copy > p {
    max-width: 690px;
    margin: 21px 0 0;

    color: var(--tv-muted);

    font-size: 14.5px;
    line-height: 2;
}

.vt-capital-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 25px;
}

.vt-capital-hero-tags span {
    padding: 8px 11px;

    border: 1px solid rgba(255, 224, 0, .13);
    border-radius: 999px;

    color: #d8d3bc;
    background: rgba(255, 224, 0, .035);

    font-size: 9px;
    font-weight: 800;
}

.vt-capital-visual {
    position: relative;
    overflow: hidden;

    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 224, 0, .14);
    border-radius: 35px;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 224, 0, .10),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(65, 63, 47, .73),
            rgba(15, 16, 11, .95)
        );

    box-shadow:
        0 40px 100px rgba(0, 0, 0, .37);
}

.vt-capital-grid {
    position: absolute;
    inset: 0;

    opacity: .6;

    background-image:
        linear-gradient(
            rgba(255, 224, 0, .045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 224, 0, .04) 1px,
            transparent 1px
        );

    background-size: 55px 55px;
}

.vt-capital-candles {
    position: absolute;
    inset: 0;
}

.vt-capital-candle {
    position: absolute;
    left: var(--x);
    bottom: 70px;

    width: 13px;
    height: var(--body);

    border-radius: 3px;

    animation:
        vt-capital-candle-float
        4s
        var(--delay)
        ease-in-out infinite;
}

.vt-capital-candle::before {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    width: 2px;
    height: var(--wick);

    transform: translate(-50%, -50%);

    background: var(--tv-yellow);
}

.vt-capital-candle.vt-candle-up {
    background:
        linear-gradient(
            #fff477,
            #ffe000,
            #aa9100
        );

    box-shadow:
        0 0 22px rgba(255, 224, 0, .27);
}

.vt-capital-candle.vt-candle-down {
    border: 2px solid rgba(255, 224, 0, .58);
    background: #12130e;
}

.vt-capital-logo {
    position: relative;
    z-index: 5;

    width: 215px;
    height: 215px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 224, 0, .18);
    border-radius: 50%;

    background:
        rgba(15, 16, 11, .86);

    box-shadow:
        0 30px 75px rgba(0, 0, 0, .43),
        inset 0 0 55px rgba(255, 224, 0, .035);

    backdrop-filter: blur(12px);
}

.vt-capital-logo span {
    margin-top: 9px;

    color: var(--tv-yellow);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.vt-capital-metrics {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 13px;
}

.vt-capital-metrics article {
    min-height: 175px;
    padding: 21px;

    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(65, 63, 48, .62),
            rgba(22, 22, 16, .88)
        );
}

.vt-capital-metrics span {
    color: var(--tv-muted);

    font-size: 9px;
    font-weight: 700;
}

.vt-capital-metrics strong {
    display: block;
    margin-top: 18px;

    color: var(--tv-yellow);

    font-size: 24px;
    line-height: 1.3;
}

.vt-capital-metrics p {
    margin: 9px 0 0;

    color: var(--tv-muted);

    font-size: 9.5px;
    line-height: 1.75;
}

.vt-capital-process {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}

.vt-capital-process article {
    min-height: 210px;
    padding: 23px;

    display: flex;
    align-items: flex-start;
    gap: 16px;

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(60, 58, 44, .55),
            rgba(21, 21, 16, .88)
        );

    transition:
        transform .23s ease,
        border-color .23s ease;
}

.vt-capital-process article:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 224, 0, .25);
}

.vt-capital-process article > span {
    color: var(--tv-yellow);

    font-size: 11px;
    font-weight: 900;
}

.vt-capital-process h3 {
    margin: 0;

    font-size: 16px;
}

.vt-capital-process p {
    margin: 9px 0 0;

    color: var(--tv-muted);

    font-size: 10.5px;
    line-height: 1.85;
}

.vt-capital-risk-panel {
    padding: 38px;

    display: grid;
    grid-template-columns:
        minmax(0, .8fr)
        minmax(0, 1.2fr);

    gap: 45px;

    border: 1px solid rgba(255, 224, 0, .16);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(255, 224, 0, .08),
            transparent 35%
        ),
        #171812;
}

.vt-capital-risk-copy h2 {
    margin: 0;

    font-size: clamp(28px, 3.7vw, 43px);
    line-height: 1.35;
}

.vt-capital-risk-copy p {
    margin: 14px 0 0;

    color: var(--tv-muted);

    font-size: 12px;
    line-height: 1.95;
}

.vt-capital-risk-items {
    display: grid;
    gap: 11px;
}

.vt-capital-risk-items article {
    padding: 17px;

    display: flex;
    gap: 14px;

    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 17px;

    background: rgba(0, 0, 0, .14);
}

.vt-capital-risk-items article > span {
    color: var(--tv-yellow);

    font-size: 9px;
    font-weight: 900;
}

.vt-capital-risk-items h3 {
    margin: 0;

    font-size: 13px;
}

.vt-capital-risk-items p {
    margin: 6px 0 0;

    color: var(--tv-muted);

    font-size: 9.5px;
    line-height: 1.75;
}

.vt-capital-ledger-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}

.vt-capital-ledger-grid article {
    min-height: 245px;
    padding: 22px;

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(61, 59, 44, .58),
            rgba(20, 20, 15, .9)
        );
}

.vt-ledger-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 224, 0, .20);
    border-radius: 14px;

    color: var(--tv-yellow);
    background: rgba(255, 224, 0, .05);

    font-size: 10px;
    font-weight: 900;
}

.vt-capital-ledger-grid h3 {
    margin: 31px 0 10px;

    font-size: 17px;
}

.vt-capital-ledger-grid p {
    margin: 0;

    color: var(--tv-muted);

    font-size: 10.5px;
    line-height: 1.85;
}

.vt-capital-split {
    padding: 38px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        320px;

    align-items: center;
    gap: 45px;

    border: 1px solid rgba(255, 224, 0, .14);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(68, 65, 49, .64),
            rgba(19, 20, 14, .9)
        );
}

.vt-capital-split h2 {
    margin: 0;

    font-size: clamp(28px, 3.6vw, 43px);
}

.vt-capital-split p {
    max-width: 680px;
    margin: 13px 0 0;

    color: var(--tv-muted);

    font-size: 12px;
    line-height: 1.95;
}

.vt-profit-circle {
    display: grid;
    grid-template-columns:
        1fr auto 1fr;

    align-items: center;
    gap: 13px;
}

.vt-profit-circle > div {
    aspect-ratio: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 224, 0, .19);
    border-radius: 50%;

    background: rgba(255, 224, 0, .045);
}

.vt-profit-circle span {
    color: var(--tv-muted);

    font-size: 8px;
}

.vt-profit-circle strong {
    margin-top: 4px;

    color: var(--tv-yellow);

    font-size: 24px;
}

.vt-profit-circle i {
    width: 1px;
    height: 80px;

    background:
        linear-gradient(
            transparent,
            var(--tv-yellow),
            transparent
        );
}

.vt-capital-transparency {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}

.vt-capital-transparency article {
    min-height: 80px;
    padding: 17px;

    display: flex;
    align-items: center;
    gap: 11px;

    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 17px;

    color: #d9d4be;
    background: rgba(255, 255, 255, .025);

    font-size: 10.5px;
    font-weight: 700;
}

.vt-capital-transparency span {
    color: var(--tv-yellow);

    font-size: 15px;
}

.vt-capital-support-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 17px;
}

.vt-capital-support-grid article {
    min-height: 280px;
    padding: 28px;

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(63, 61, 46, .63),
            rgba(22, 22, 16, .9)
        );
}

.vt-capital-support-grid h3 {
    margin: 25px 0 11px;

    font-size: 23px;
}

.vt-capital-support-grid p {
    margin: 0;

    color: var(--tv-muted);

    font-size: 11.5px;
    line-height: 1.9;
}

.vt-capital-support-grid a {
    display: inline-flex;
    margin-top: 24px;

    color: var(--tv-yellow);

    font-size: 11px;
    font-weight: 900;
}

.vt-capital-final-cta {
    margin: 55px 0 25px;
    padding: 37px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border-radius: 30px;

    color: #1c1b0e;

    background:
        linear-gradient(
            145deg,
            #fff477,
            #ffe000 60%,
            #c7aa00
        );
}

.vt-capital-final-cta .tv-section-kicker {
    color: rgba(28, 27, 14, .58);
}

.vt-capital-final-cta h2 {
    margin: 0;

    font-size: clamp(25px, 3vw, 38px);
}

.vt-capital-final-cta .tv-button-primary {
    color: white;
    background: #27261c;
    box-shadow: none;
}

/* Home capital focus */

.vt-home-capital-summary {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;

    margin-top: -20px;
}

.vt-home-capital-summary article {
    min-height: 170px;
    padding: 21px;

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(64, 62, 47, .65),
            rgba(22, 22, 16, .92)
        );
}

.vt-home-capital-summary span {
    color: var(--tv-yellow);

    font-size: 10px;
    font-weight: 900;
}

.vt-home-capital-summary h3 {
    margin: 25px 0 8px;

    font-size: 15px;
}

.vt-home-capital-summary p {
    margin: 0;

    color: var(--tv-muted);

    font-size: 9.5px;
    line-height: 1.8;
}

.vt-home-risk-strip {
    padding: 30px;

    display: grid;
    grid-template-columns:
        minmax(260px, .6fr)
        minmax(0, 1.4fr);

    align-items: center;
    gap: 35px;

    border-right: 5px solid var(--tv-yellow);
    border-radius: 23px;

    background:
        linear-gradient(
            90deg,
            rgba(255, 224, 0, .075),
            rgba(255, 255, 255, .025)
        );
}

.vt-home-risk-strip h2 {
    margin: 0;

    font-size: 29px;
}

.vt-home-risk-strip p {
    margin: 0;

    color: var(--tv-muted);

    font-size: 11.5px;
    line-height: 1.95;
}

.vt-home-community {
    min-height: 300px;
    padding: 35px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        180px;

    align-items: center;
    gap: 35px;

    border: 1px solid rgba(255, 224, 0, .14);
    border-radius: 29px;

    background:
        radial-gradient(
            circle at left,
            rgba(255, 224, 0, .07),
            transparent 35%
        ),
        #181912;
}

.vt-home-community h2 {
    margin: 0;

    font-size: clamp(27px, 3.4vw, 41px);
}

.vt-home-community p {
    max-width: 650px;
    margin: 12px 0 23px;

    color: var(--tv-muted);

    font-size: 11.5px;
    line-height: 1.95;
}

.vt-home-community-logo {
    width: 160px;
    height: 160px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 224, 0, .18);
    border-radius: 50%;

    background: rgba(255, 224, 0, .035);
}

/* Deposit focus */

.vt-deposit-capital-intro {
    margin-bottom: 28px;
    padding: 30px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(310px, .7fr);

    align-items: center;
    gap: 30px;

    border: 1px solid rgba(255, 224, 0, .14);
    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            rgba(64, 62, 47, .67),
            rgba(21, 21, 16, .91)
        );
}

.vt-deposit-capital-intro h1 {
    margin: 0;

    font-size: clamp(29px, 3.8vw, 46px);
}

.vt-deposit-capital-intro h1 span {
    color: var(--tv-yellow);
}

.vt-deposit-capital-intro p {
    max-width: 670px;
    margin: 12px 0 0;

    color: var(--tv-muted);

    font-size: 11px;
    line-height: 1.9;
}

.vt-deposit-steps {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 9px;
}

.vt-deposit-steps span {
    padding: 12px;

    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 13px;

    color: #dcd7c0;
    background: rgba(0, 0, 0, .13);

    font-size: 9px;
    font-weight: 800;
}

@keyframes vt-capital-candle-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1050px) {
    .vt-capital-metrics,
    .vt-capital-ledger-grid,
    .vt-home-capital-summary {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .vt-capital-process,
    .vt-capital-transparency {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .vt-capital-hero,
    .vt-capital-risk-panel,
    .vt-capital-split,
    .vt-deposit-capital-intro {
        grid-template-columns: 1fr;
    }

    .vt-capital-visual {
        min-height: 410px;
    }

    .vt-capital-split {
        gap: 30px;
    }

    .vt-profit-circle {
        max-width: 320px;
    }
}

@media (max-width: 650px) {
    .vt-capital-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .vt-capital-metrics,
    .vt-capital-process,
    .vt-capital-ledger-grid,
    .vt-capital-transparency,
    .vt-capital-support-grid,
    .vt-home-capital-summary,
    .vt-deposit-steps {
        grid-template-columns: 1fr;
    }

    .vt-capital-risk-panel,
    .vt-capital-split,
    .vt-capital-final-cta {
        padding: 25px;
    }

    .vt-capital-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .vt-home-risk-strip,
    .vt-home-community {
        grid-template-columns: 1fr;
    }

    .vt-home-community-logo {
        display: none;
    }
}

/* =========================================================
   Victor Trader theme system, FAQ and resources
   ========================================================= */

html {
    color-scheme: dark;
}

html[data-theme="light"] {
    color-scheme: light;

    --tv-bg: #f4f1e7;
    --tv-surface: #fffdf8;
    --tv-panel: #fffdf8;
    --tv-text: #24231d;
    --tv-muted: #716c5e;
    --tv-border: rgba(56, 54, 42, .13);
    --tv-olive: #38362a;
    --tv-yellow: #ffe000;
}

.vt-theme-toggle {
    position: fixed;
    z-index: 9999;
    left: 18px;
    bottom: 18px;

    min-width: 92px;
    min-height: 44px;
    padding: 8px 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 1px solid rgba(255, 224, 0, .23);
    border-radius: 999px;

    color: #f7f1d7;
    background:
        rgba(28, 29, 21, .88);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .28);

    backdrop-filter: blur(14px);

    font-family: inherit;
    font-size: 10px;
    font-weight: 900;

    cursor: pointer;

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.vt-theme-toggle:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 224, 0, .55);
}

.vt-theme-icon {
    color: var(--tv-yellow);

    font-size: 17px;
    line-height: 1;
}

html[data-theme="light"] .vt-theme-toggle {
    color: #38362a;
    background:
        rgba(255, 253, 248, .92);

    border-color: rgba(56, 54, 42, .16);

    box-shadow:
        0 15px 42px rgba(56, 54, 42, .15);
}

/* FAQ */

.vt-faq-section {
    position: relative;
}

.vt-faq-list {
    display: grid;
    gap: 12px;

    max-width: 980px;
}

.vt-faq-list details {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(63, 61, 46, .58),
            rgba(21, 21, 16, .91)
        );

    transition:
        border-color .22s ease,
        transform .22s ease;
}

.vt-faq-list details:hover,
.vt-faq-list details[open] {
    border-color: rgba(255, 224, 0, .25);
}

.vt-faq-list details[open] {
    transform: translateY(-2px);
}

.vt-faq-list summary {
    position: relative;

    min-height: 74px;
    padding: 22px 60px 22px 22px;

    display: flex;
    align-items: center;

    list-style: none;

    color: #f0ebd7;

    font-size: 13px;
    font-weight: 900;

    cursor: pointer;
}

.vt-faq-list summary::-webkit-details-marker {
    display: none;
}

.vt-faq-list summary::before,
.vt-faq-list summary::after {
    content: "";

    position: absolute;
    right: 23px;
    top: 50%;

    width: 15px;
    height: 2px;

    border-radius: 3px;

    background: var(--tv-yellow);

    transition: transform .22s ease;
}

.vt-faq-list summary::after {
    transform: rotate(90deg);
}

.vt-faq-list details[open] summary::after {
    transform: rotate(0deg);
}

.vt-faq-answer {
    padding: 0 22px 22px;

    color: var(--tv-muted);

    font-size: 11px;
    line-height: 2;

    border-top:
        1px solid rgba(255, 255, 255, .045);
}

/* Contact */

.vt-contact-panel {
    min-height: 280px;
    padding: 35px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(350px, .8fr);

    align-items: center;
    gap: 40px;

    border: 1px solid rgba(255, 224, 0, .14);
    border-radius: 29px;

    background:
        linear-gradient(
            145deg,
            rgba(65, 63, 47, .66),
            rgba(20, 21, 15, .92)
        );
}

.vt-contact-copy h2 {
    margin: 0;

    font-size: clamp(27px, 3.6vw, 43px);
    line-height: 1.35;
}

.vt-contact-copy p {
    margin: 12px 0 0;

    color: var(--tv-muted);

    font-size: 11px;
    line-height: 1.9;
}

.vt-contact-links {
    display: grid;
    gap: 11px;
}

.vt-contact-link {
    min-height: 85px;
    padding: 15px;

    display: flex;
    align-items: center;
    gap: 14px;

    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 17px;

    color: inherit;
    background: rgba(0, 0, 0, .14);

    text-decoration: none;

    transition:
        transform .22s ease,
        border-color .22s ease;
}

.vt-contact-link:hover {
    transform: translateX(-5px);
    border-color: rgba(255, 224, 0, .30);
}

.vt-contact-symbol {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    color: #1b1a0d;

    background:
        linear-gradient(
            145deg,
            #fff477,
            #ffe000,
            #c4a800
        );

    font-size: 10px;
    font-weight: 900;
}

.vt-contact-link small {
    display: block;

    color: var(--tv-muted);

    font-size: 8.5px;
}

.vt-contact-link strong {
    display: block;
    margin-top: 3px;

    color: #f0ebd7;

    direction: ltr;

    font-size: 12px;
}

.vt-footer-contact {
    max-width: 1200px;
    margin: 22px auto 0;
    padding: 17px 0;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;

    border-top:
        1px solid rgba(255, 255, 255, .06);

    color: var(--tv-muted);

    font-size: 9px;
}

.vt-footer-contact a {
    color: var(--tv-yellow);

    text-decoration: none;
    font-weight: 800;
}

/* =========================================================
   Pearl light theme
   ========================================================= */

html[data-theme="light"] body {
    color: #24231d;

    background:
        radial-gradient(
            circle at 80% 5%,
            rgba(255, 224, 0, .10),
            transparent 25%
        ),
        #f4f1e7;
}

html[data-theme="light"] :is(
    .tv-header,
    .tv-site-header
) {
    border-color: rgba(56, 54, 42, .10);

    background:
        rgba(244, 241, 231, .90);

    box-shadow:
        0 10px 40px rgba(56, 54, 42, .08);
}

html[data-theme="light"] :is(
    .tv-footer,
    .tv-site-footer,
    footer
) {
    color: #38362a;

    border-color: rgba(56, 54, 42, .10);

    background: #ebe6d8;
}

html[data-theme="light"] :is(
    .tv-brand-name,
    .tv-nav-link,
    .tv-public-title,
    .tv-section-heading h2,
    .tv-feature-card h3,
    .tv-level-card h3,
    .vt-capital-hero h1,
    .vt-capital-process h3,
    .vt-capital-risk-copy h2,
    .vt-capital-ledger-grid h3,
    .vt-capital-split h2,
    .vt-community-hero h1,
    .vt-member-identity h3,
    .vt-community-privacy h2,
    .vt-settings-hero h1,
    .vt-free-resources-heading h2,
    .vt-resource-card h3,
    .vt-contact-copy h2,
    .vt-faq-list summary
) {
    color: #24231d;
}

html[data-theme="light"] :is(
    .tv-brand-subtitle,
    .tv-public-lead,
    .tv-section-heading p,
    .tv-feature-card p,
    .tv-level-card p,
    .vt-capital-hero-copy > p,
    .vt-capital-metrics p,
    .vt-capital-process p,
    .vt-capital-risk-copy p,
    .vt-capital-risk-items p,
    .vt-capital-ledger-grid p,
    .vt-capital-split p,
    .vt-community-hero p,
    .vt-member-identity p,
    .vt-community-privacy p,
    .vt-settings-hero p,
    .vt-faq-answer,
    .vt-resource-card p,
    .vt-contact-copy p
) {
    color: #716c5e;
}

html[data-theme="light"] :is(
    .tv-public-stage,
    .tv-floating-card,
    .tv-feature-card:not(.is-yellow),
    .tv-level-card,
    .vt-home-capital-summary article,
    .vt-home-community,
    .vt-capital-visual,
    .vt-capital-metrics article,
    .vt-capital-process article,
    .vt-capital-risk-panel,
    .vt-capital-risk-items article,
    .vt-capital-ledger-grid article,
    .vt-capital-split,
    .vt-capital-transparency article,
    .vt-capital-support-grid article,
    .vt-community-hero,
    .vt-community-statistics article,
    .vt-member-card,
    .vt-community-privacy,
    .vt-community-settings-card,
    .vt-settings-logo,
    .vt-deposit-capital-intro,
    .vt-faq-list details,
    .vt-free-resources,
    .vt-resource-card,
    .vt-contact-panel,
    .vt-contact-link
) {
    border-color: rgba(56, 54, 42, .12) !important;

    background:
        linear-gradient(
            145deg,
            #fffdf8,
            #f3efe3
        ) !important;

    box-shadow:
        0 24px 65px rgba(56, 54, 42, .10);
}

html[data-theme="light"] :is(
    .vt-member-data > div,
    .vt-resource-card,
    .vt-contact-link,
    .vt-capital-risk-items article,
    .vt-capital-transparency article,
    .vt-deposit-steps span
) {
    background:
        rgba(56, 54, 42, .035) !important;
}

html[data-theme="light"] :is(
    .tv-input,
    input,
    textarea,
    select
) {
    color: #24231d;

    border-color: rgba(56, 54, 42, .15);

    background: #fffdf8;
}

html[data-theme="light"] :is(
    .vt-contact-link strong,
    .vt-member-data strong,
    .vt-community-statistics .vt-stat-text
) {
    color: #38362a;
}

html[data-theme="light"] .vt-faq-answer {
    border-color: rgba(56, 54, 42, .08);
}

html[data-theme="light"] .vt-footer-contact {
    border-color: rgba(56, 54, 42, .10);
}

html[data-theme="light"] :is(
    .tv-public-title span,
    .vt-capital-hero h1 span,
    .vt-community-hero h1 span,
    .vt-settings-hero h1 span,
    .tv-section-kicker,
    .vt-resource-number,
    .vt-resource-card strong,
    .vt-footer-contact a
) {
    color: #9a8200;
}

@media (max-width: 850px) {
    .vt-contact-panel {
        grid-template-columns: 1fr;
    }

    .vt-resource-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .vt-theme-toggle {
        left: 11px;
        bottom: 11px;

        min-width: 48px;
        min-height: 48px;
        padding: 9px;
    }

    .vt-theme-label {
        display: none;
    }

    .vt-free-resources,
    .vt-contact-panel {
        padding: 24px;
    }

    .vt-faq-list summary {
        padding:
            19px
            52px
            19px
            17px;

        font-size: 11.5px;
    }

    .vt-footer-contact {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vt-theme-toggle,
    .vt-faq-list details,
    .vt-resource-card,
    .vt-contact-link {
        transition: none;
    }
}

/* =========================================================
   Victor Trader theme system, FAQ and resources
   ========================================================= */

html {
    color-scheme: dark;
}

html[data-theme="light"] {
    color-scheme: light;

    --tv-bg: #f4f1e7;
    --tv-surface: #fffdf8;
    --tv-panel: #fffdf8;
    --tv-text: #24231d;
    --tv-muted: #716c5e;
    --tv-border: rgba(56, 54, 42, .13);
    --tv-olive: #38362a;
    --tv-yellow: #ffe000;
}

.vt-theme-toggle {
    position: fixed;
    z-index: 9999;
    left: 18px;
    bottom: 18px;

    min-width: 92px;
    min-height: 44px;
    padding: 8px 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 1px solid rgba(255, 224, 0, .23);
    border-radius: 999px;

    color: #f7f1d7;
    background:
        rgba(28, 29, 21, .88);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .28);

    backdrop-filter: blur(14px);

    font-family: inherit;
    font-size: 10px;
    font-weight: 900;

    cursor: pointer;

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.vt-theme-toggle:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 224, 0, .55);
}

.vt-theme-icon {
    color: var(--tv-yellow);

    font-size: 17px;
    line-height: 1;
}

html[data-theme="light"] .vt-theme-toggle {
    color: #38362a;
    background:
        rgba(255, 253, 248, .92);

    border-color: rgba(56, 54, 42, .16);

    box-shadow:
        0 15px 42px rgba(56, 54, 42, .15);
}

/* FAQ */

.vt-faq-section {
    position: relative;
}

.vt-faq-list {
    display: grid;
    gap: 12px;

    max-width: 980px;
}

.vt-faq-list details {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(63, 61, 46, .58),
            rgba(21, 21, 16, .91)
        );

    transition:
        border-color .22s ease,
        transform .22s ease;
}

.vt-faq-list details:hover,
.vt-faq-list details[open] {
    border-color: rgba(255, 224, 0, .25);
}

.vt-faq-list details[open] {
    transform: translateY(-2px);
}

.vt-faq-list summary {
    position: relative;

    min-height: 74px;
    padding: 22px 60px 22px 22px;

    display: flex;
    align-items: center;

    list-style: none;

    color: #f0ebd7;

    font-size: 13px;
    font-weight: 900;

    cursor: pointer;
}

.vt-faq-list summary::-webkit-details-marker {
    display: none;
}

.vt-faq-list summary::before,
.vt-faq-list summary::after {
    content: "";

    position: absolute;
    right: 23px;
    top: 50%;

    width: 15px;
    height: 2px;

    border-radius: 3px;

    background: var(--tv-yellow);

    transition: transform .22s ease;
}

.vt-faq-list summary::after {
    transform: rotate(90deg);
}

.vt-faq-list details[open] summary::after {
    transform: rotate(0deg);
}

.vt-faq-answer {
    padding: 0 22px 22px;

    color: var(--tv-muted);

    font-size: 11px;
    line-height: 2;

    border-top:
        1px solid rgba(255, 255, 255, .045);
}

/* Free resources */

.vt-free-resources {
    padding: 38px;

    border: 1px solid rgba(255, 224, 0, .14);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 224, 0, .07),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(63, 61, 46, .62),
            rgba(19, 20, 14, .92)
        );
}

.vt-free-resources-heading {
    max-width: 720px;
}

.vt-free-resources-heading h2 {
    margin: 0;

    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.35;
}

.vt-free-resources-heading p {
    margin: 12px 0 0;

    color: var(--tv-muted);

    font-size: 11.5px;
    line-height: 1.9;
}

.vt-resource-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;

    margin-top: 27px;
}

.vt-resource-card {
    min-height: 260px;
    padding: 23px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 21px;

    color: inherit;
    background: rgba(0, 0, 0, .14);

    text-decoration: none;

    transition:
        transform .24s ease,
        border-color .24s ease,
        box-shadow .24s ease;
}

.vt-resource-card:hover {
    transform: translateY(-7px);

    border-color: rgba(255, 224, 0, .32);

    box-shadow:
        0 28px 65px rgba(0, 0, 0, .24);
}

.vt-resource-number {
    color: var(--tv-yellow);

    font-size: 10px;
    font-weight: 900;
}

.vt-resource-card h3 {
    margin: 32px 0 10px;

    font-size: 18px;
}

.vt-resource-card p {
    margin: 0;

    color: var(--tv-muted);

    font-size: 10.5px;
    line-height: 1.85;
}

.vt-resource-card strong {
    margin-top: auto;
    padding-top: 24px;

    color: var(--tv-yellow);

    font-size: 10px;
}

.vt-external-disclaimer {
    margin-top: 17px;
    padding: 13px 16px;

    border-right: 4px solid var(--tv-yellow);
    border-radius: 12px;

    color: var(--tv-muted);
    background: rgba(255, 224, 0, .035);

    font-size: 9px;
    line-height: 1.8;
}

/* Contact */

.vt-contact-panel {
    min-height: 280px;
    padding: 35px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(350px, .8fr);

    align-items: center;
    gap: 40px;

    border: 1px solid rgba(255, 224, 0, .14);
    border-radius: 29px;

    background:
        linear-gradient(
            145deg,
            rgba(65, 63, 47, .66),
            rgba(20, 21, 15, .92)
        );
}

.vt-contact-copy h2 {
    margin: 0;

    font-size: clamp(27px, 3.6vw, 43px);
    line-height: 1.35;
}

.vt-contact-copy p {
    margin: 12px 0 0;

    color: var(--tv-muted);

    font-size: 11px;
    line-height: 1.9;
}

.vt-contact-links {
    display: grid;
    gap: 11px;
}

.vt-contact-link {
    min-height: 85px;
    padding: 15px;

    display: flex;
    align-items: center;
    gap: 14px;

    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 17px;

    color: inherit;
    background: rgba(0, 0, 0, .14);

    text-decoration: none;

    transition:
        transform .22s ease,
        border-color .22s ease;
}

.vt-contact-link:hover {
    transform: translateX(-5px);
    border-color: rgba(255, 224, 0, .30);
}

.vt-contact-symbol {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    color: #1b1a0d;

    background:
        linear-gradient(
            145deg,
            #fff477,
            #ffe000,
            #c4a800
        );

    font-size: 10px;
    font-weight: 900;
}

.vt-contact-link small {
    display: block;

    color: var(--tv-muted);

    font-size: 8.5px;
}

.vt-contact-link strong {
    display: block;
    margin-top: 3px;

    color: #f0ebd7;

    direction: ltr;

    font-size: 12px;
}

.vt-footer-contact {
    max-width: 1200px;
    margin: 22px auto 0;
    padding: 17px 0;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;

    border-top:
        1px solid rgba(255, 255, 255, .06);

    color: var(--tv-muted);

    font-size: 9px;
}

.vt-footer-contact a {
    color: var(--tv-yellow);

    text-decoration: none;
    font-weight: 800;
}

/* =========================================================
   Pearl light theme
   ========================================================= */

html[data-theme="light"] body {
    color: #24231d;

    background:
        radial-gradient(
            circle at 80% 5%,
            rgba(255, 224, 0, .10),
            transparent 25%
        ),
        #f4f1e7;
}

html[data-theme="light"] :is(
    .tv-header,
    .tv-site-header
) {
    border-color: rgba(56, 54, 42, .10);

    background:
        rgba(244, 241, 231, .90);

    box-shadow:
        0 10px 40px rgba(56, 54, 42, .08);
}

html[data-theme="light"] :is(
    .tv-footer,
    .tv-site-footer,
    footer
) {
    color: #38362a;

    border-color: rgba(56, 54, 42, .10);

    background: #ebe6d8;
}

html[data-theme="light"] :is(
    .tv-brand-name,
    .tv-nav-link,
    .tv-public-title,
    .tv-section-heading h2,
    .tv-feature-card h3,
    .tv-level-card h3,
    .vt-capital-hero h1,
    .vt-capital-process h3,
    .vt-capital-risk-copy h2,
    .vt-capital-ledger-grid h3,
    .vt-capital-split h2,
    .vt-community-hero h1,
    .vt-member-identity h3,
    .vt-community-privacy h2,
    .vt-settings-hero h1,
    .vt-free-resources-heading h2,
    .vt-resource-card h3,
    .vt-contact-copy h2,
    .vt-faq-list summary
) {
    color: #24231d;
}

html[data-theme="light"] :is(
    .tv-brand-subtitle,
    .tv-public-lead,
    .tv-section-heading p,
    .tv-feature-card p,
    .tv-level-card p,
    .vt-capital-hero-copy > p,
    .vt-capital-metrics p,
    .vt-capital-process p,
    .vt-capital-risk-copy p,
    .vt-capital-risk-items p,
    .vt-capital-ledger-grid p,
    .vt-capital-split p,
    .vt-community-hero p,
    .vt-member-identity p,
    .vt-community-privacy p,
    .vt-settings-hero p,
    .vt-faq-answer,
    .vt-resource-card p,
    .vt-contact-copy p
) {
    color: #716c5e;
}

html[data-theme="light"] :is(
    .tv-public-stage,
    .tv-floating-card,
    .tv-feature-card:not(.is-yellow),
    .tv-level-card,
    .vt-home-capital-summary article,
    .vt-home-community,
    .vt-capital-visual,
    .vt-capital-metrics article,
    .vt-capital-process article,
    .vt-capital-risk-panel,
    .vt-capital-risk-items article,
    .vt-capital-ledger-grid article,
    .vt-capital-split,
    .vt-capital-transparency article,
    .vt-capital-support-grid article,
    .vt-community-hero,
    .vt-community-statistics article,
    .vt-member-card,
    .vt-community-privacy,
    .vt-community-settings-card,
    .vt-settings-logo,
    .vt-deposit-capital-intro,
    .vt-faq-list details,
    .vt-free-resources,
    .vt-resource-card,
    .vt-contact-panel,
    .vt-contact-link
) {
    border-color: rgba(56, 54, 42, .12) !important;

    background:
        linear-gradient(
            145deg,
            #fffdf8,
            #f3efe3
        ) !important;

    box-shadow:
        0 24px 65px rgba(56, 54, 42, .10);
}

html[data-theme="light"] :is(
    .vt-member-data > div,
    .vt-resource-card,
    .vt-contact-link,
    .vt-capital-risk-items article,
    .vt-capital-transparency article,
    .vt-deposit-steps span
) {
    background:
        rgba(56, 54, 42, .035) !important;
}

html[data-theme="light"] :is(
    .tv-input,
    input,
    textarea,
    select
) {
    color: #24231d;

    border-color: rgba(56, 54, 42, .15);

    background: #fffdf8;
}

html[data-theme="light"] :is(
    .vt-contact-link strong,
    .vt-member-data strong,
    .vt-community-statistics .vt-stat-text
) {
    color: #38362a;
}

html[data-theme="light"] .vt-faq-answer {
    border-color: rgba(56, 54, 42, .08);
}

html[data-theme="light"] .vt-footer-contact {
    border-color: rgba(56, 54, 42, .10);
}

html[data-theme="light"] :is(
    .tv-public-title span,
    .vt-capital-hero h1 span,
    .vt-community-hero h1 span,
    .vt-settings-hero h1 span,
    .tv-section-kicker,
    .vt-resource-number,
    .vt-resource-card strong,
    .vt-footer-contact a
) {
    color: #9a8200;
}

@media (max-width: 850px) {
    .vt-contact-panel {
        grid-template-columns: 1fr;
    }

    .vt-resource-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .vt-theme-toggle {
        left: 11px;
        bottom: 11px;

        min-width: 48px;
        min-height: 48px;
        padding: 9px;
    }

    .vt-theme-label {
        display: none;
    }

    .vt-free-resources,
    .vt-contact-panel {
        padding: 24px;
    }

    .vt-faq-list summary {
        padding:
            19px
            52px
            19px
            17px;

        font-size: 11.5px;
    }

    .vt-footer-contact {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vt-theme-toggle,
    .vt-faq-list details,
    .vt-resource-card,
    .vt-contact-link {
        transition: none;
    }
}

/* =========================================================
   Deposit destinations and copy controls
   ========================================================= */

.vt-deposit-destinations {
    margin-top: 25px;

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 13px;
}

.vt-deposit-destination {
    min-width: 0;
    padding: 19px;

    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(66, 64, 48, .60),
            rgba(22, 22, 16, .89)
        );

    box-shadow:
        0 20px 55px rgba(0, 0, 0, .16);
}

.vt-destination-heading {
    display: flex;
    align-items: center;
    gap: 11px;
}

.vt-destination-badge {
    min-width: 48px;
    height: 42px;
    padding: 0 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #201f0f;
    background: var(--tv-yellow);

    font-size: 9px;
    font-weight: 900;
}

.vt-destination-heading strong {
    display: block;

    color: #f3eedb;

    font-size: 11.5px;
}

.vt-destination-heading small {
    display: block;
    margin-top: 3px;

    color: var(--tv-muted);

    font-size: 8px;
}

.vt-copy-row {
    margin-top: 16px;
    padding: 9px;

    display: flex;
    align-items: center;
    gap: 8px;

    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 13px;

    background: rgba(0, 0, 0, .18);
}

.vt-copy-row code {
    min-width: 0;
    flex: 1;

    color: #ded8be;

    font-family:
        Consolas,
        Monaco,
        monospace;

    font-size: 8.5px;
    line-height: 1.6;

    overflow-wrap: anywhere;
    word-break: break-all;
    user-select: all;
}

.vt-copy-button {
    min-width: 58px;
    min-height: 36px;
    padding: 7px 10px;

    flex-shrink: 0;

    border: 1px solid rgba(255, 224, 0, .25);
    border-radius: 10px;

    color: var(--tv-yellow);
    background: rgba(255, 224, 0, .07);

    font-family: inherit;
    font-size: 9px;
    font-weight: 900;

    cursor: pointer;

    transition:
        transform .2s ease,
        color .2s ease,
        background .2s ease;
}

.vt-copy-button:hover {
    transform: translateY(-2px);

    color: #201f0f;
    background: var(--tv-yellow);
}

.vt-copy-button.is-copied {
    color: #201f0f;
    background: var(--tv-yellow);
}

.vt-network-warning {
    margin: 11px 0 0;

    color: #e4b8a5;

    font-size: 8px;
    line-height: 1.7;
}

.vt-copy-message {
    min-height: 25px;
    margin-top: 9px;

    color: var(--tv-yellow);

    font-size: 9px;
    font-weight: 800;

    opacity: 0;

    transition: opacity .2s ease;
}

.vt-copy-message.is-visible {
    opacity: 1;
}

.vt-copy-message.is-error {
    color: #ff9c82;
}

.tv-method-link {
    color: inherit;
    text-decoration: none;
}

html[data-theme="light"] .vt-deposit-destination {
    border-color: rgba(56, 54, 42, .12);

    background:
        linear-gradient(
            145deg,
            #fffdf8,
            #f1ecdf
        );

    box-shadow:
        0 20px 55px rgba(56, 54, 42, .09);
}

html[data-theme="light"] .vt-copy-row {
    border-color: rgba(56, 54, 42, .10);
    background: rgba(56, 54, 42, .04);
}

html[data-theme="light"] .vt-copy-row code,
html[data-theme="light"] .vt-destination-heading strong {
    color: #38362a;
}

html[data-theme="light"] .vt-network-warning {
    color: #9a4935;
}

@media (max-width: 900px) {
    .vt-deposit-destinations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .vt-copy-row {
        align-items: stretch;
        flex-direction: column;
    }

    .vt-copy-button {
        width: 100%;
    }
}

/* Withdrawal system */

.vt-withdrawal-hero {
    min-height: 320px;
    padding: 45px 0 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.vt-withdrawal-hero h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 60px);
}

.vt-withdrawal-hero h1 span {
    color: var(--tv-yellow);
}

.vt-withdrawal-hero p {
    max-width: 700px;
    color: var(--tv-muted);
    line-height: 2;
}

.vt-withdrawal-balances {
    margin-bottom: 25px;

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 13px;
}

.vt-withdrawal-balances article {
    padding: 22px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(63,61,46,.65),
            rgba(21,21,16,.92)
        );
}

.vt-withdrawal-balances span {
    display: block;
    color: var(--tv-muted);
    font-size: 9px;
}

.vt-withdrawal-balances strong {
    display: block;
    margin-top: 8px;

    color: var(--tv-yellow);
    font-size: 20px;
}

.vt-withdrawal-address {
    margin: 18px 0;
    padding: 16px;

    border: 1px solid rgba(255,224,0,.15);
    border-radius: 14px;

    background: rgba(255,224,0,.04);
}

.vt-withdrawal-address span {
    display: block;
    color: var(--tv-muted);
    font-size: 9px;
}

.vt-withdrawal-address strong {
    display: block;
    margin-top: 6px;
}

.vt-withdrawal-otp {
    margin: 22px 0;

    display: grid;
    grid-template-columns:
        auto minmax(160px, 1fr) auto;

    gap: 10px;
}

.vt-withdrawal-history {
    margin-top: 20px;
    display: grid;
    gap: 11px;
}

.vt-withdrawal-history article {
    padding: 16px;

    display: grid;
    grid-template-columns:
        1fr 1fr auto;

    align-items: center;
    gap: 15px;

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 15px;

    background: rgba(0,0,0,.12);
}

.vt-withdrawal-history span {
    display: block;
    color: var(--tv-muted);
    font-size: 8px;
}

.vt-withdrawal-history strong {
    display: block;
    margin-top: 4px;
}

.vt-admin-withdrawals {
    display: grid;
    gap: 18px;
}

.vt-admin-withdrawal-actions {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.complete-withdrawal-form,
.reject-withdrawal-form {
    display: grid;
    grid-template-columns:
        minmax(180px, 1fr)
        minmax(180px, 1fr)
        auto;

    gap: 10px;
}

.reject-withdrawal-form {
    grid-template-columns:
        minmax(180px, 1fr)
        auto;
}

html[data-theme="light"] :is(
    .vt-withdrawal-balances article,
    .vt-withdrawal-history article
) {
    color: #24231d;
    border-color: rgba(56,54,42,.12);

    background:
        linear-gradient(
            145deg,
            #fffdf8,
            #f2eee2
        );
}

@media (max-width: 750px) {
    .vt-withdrawal-balances {
        grid-template-columns: 1fr;
    }

    .vt-withdrawal-otp,
    .complete-withdrawal-form,
    .reject-withdrawal-form,
    .vt-withdrawal-history article {
        grid-template-columns: 1fr;
    }
}

/* Profit distribution */

.vt-profit-summary {
    margin: 22px 0;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.vt-profit-summary article {
    padding: 18px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;

    background: rgba(0,0,0,.12);
}

.vt-profit-summary span {
    display: block;

    color: var(--tv-muted);
    font-size: 9px;
}

.vt-profit-summary strong {
    display: block;
    margin-top: 7px;

    color: var(--tv-yellow);
    font-size: 17px;
}

.vt-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.vt-profit-table {
    width: 100%;
    min-width: 850px;

    border-collapse: collapse;
}

.vt-profit-table th,
.vt-profit-table td {
    padding: 14px 12px;
    text-align: right;

    border-bottom:
        1px solid rgba(255,255,255,.07);
}

.vt-profit-table th {
    color: var(--tv-muted);
    font-size: 9px;
}

.vt-profit-table td {
    font-size: 11px;
}

.vt-profit-table small {
    display: block;
    margin-top: 4px;

    color: var(--tv-muted);
}

html[data-theme="light"]
.vt-profit-summary article {
    border-color: rgba(56,54,42,.12);
    background: rgba(255,255,255,.6);
}

html[data-theme="light"]
.vt-profit-table th,
html[data-theme="light"]
.vt-profit-table td {
    border-color: rgba(56,54,42,.12);
}

@media (max-width: 850px) {
    .vt-profit-summary {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

/* VT_MOBILE_DEPOSIT_ONLY_V2_START */

/*
|--------------------------------------------------------------------------
| Deposit page mobile only
|--------------------------------------------------------------------------
*/

@media (max-width: 760px) {
    /*
     * المقدمة الأساسية تكفي عالموبايل،
     * لذلك نخفي الـ Hero الثانية المكررة.
     */

    .vt-deposit-capital-intro + .tv-hero {
        display: none !important;
    }

    .vt-deposit-capital-intro {
        margin-top: 16px !important;
        margin-bottom: 13px !important;
        padding: 20px 16px !important;

        grid-template-columns: 1fr !important;
        gap: 15px !important;

        border-radius: 19px !important;
    }

    .vt-deposit-capital-intro h1 {
        margin: 7px 0 9px !important;

        font-size:
            clamp(
                28px,
                8vw,
                35px
            ) !important;

        line-height: 1.18 !important;
    }

    .vt-deposit-capital-intro p {
        max-width: 100% !important;
        margin: 0 !important;

        font-size: 12px !important;
        line-height: 1.8 !important;
    }

    .vt-deposit-steps {
        display: grid !important;
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            ) !important;

        gap: 7px !important;
    }

    .vt-deposit-steps span {
        min-height: 39px;
        padding: 8px 6px !important;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 11px !important;

        font-size: 8.5px !important;
        line-height: 1.4 !important;
        text-align: center;
    }

    /*
    |--------------------------------------------------------------------------
    | Deposit panels
    |--------------------------------------------------------------------------
    */

    .vt-deposit-capital-intro ~ .tv-panel {
        margin-top: 13px !important;

        border-radius: 18px !important;
        transform: none !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-panel-body {
        padding: 16px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-panel-header {
        margin-bottom: 16px !important;

        align-items: flex-start !important;
        gap: 9px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-panel-title {
        font-size: 17px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-panel-description {
        margin-top: 4px !important;

        font-size: 10.5px !important;
        line-height: 1.7 !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-status {
        padding: 6px 9px !important;

        font-size: 8px !important;
        white-space: nowrap;
    }

    /*
    |--------------------------------------------------------------------------
    | Metrics
    |--------------------------------------------------------------------------
    */

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-metrics {
        margin-bottom: 17px !important;

        display: grid !important;
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            ) !important;

        gap: 7px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-metric {
        min-width: 0;
        padding: 11px 6px !important;

        border-radius: 12px !important;
        text-align: center;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-metric-label {
        font-size: 7.5px !important;
        line-height: 1.4 !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-metric-value {
        margin-top: 4px !important;

        font-size: 18px !important;
    }

    /*
    |--------------------------------------------------------------------------
    | Deposit methods
    |--------------------------------------------------------------------------
    */

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-method-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            ) !important;

        gap: 8px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-method-option:nth-child(3) {
        grid-column: 1 / -1;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-method-card {
        min-height: 76px !important;
        padding: 10px 7px !important;

        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        border-radius: 13px !important;
        text-align: center;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-method-card strong {
        font-size: 11px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-method-card small {
        margin-top: 4px !important;

        font-size: 7.5px !important;
        line-height: 1.45 !important;
    }

    /*
    |--------------------------------------------------------------------------
    | Destination cards
    |--------------------------------------------------------------------------
    */

    .vt-deposit-destinations {
        margin-top: 14px !important;

        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .vt-deposit-destination {
        padding: 13px !important;

        border-radius: 15px !important;
    }

    .vt-destination-heading {
        gap: 9px !important;
    }

    .vt-destination-badge {
        min-width: 43px !important;
        height: 36px !important;

        border-radius: 10px !important;

        font-size: 8px !important;
    }

    .vt-destination-heading strong {
        font-size: 10.5px !important;
    }

    .vt-destination-heading small {
        font-size: 7.5px !important;
    }

    .vt-copy-row {
        margin-top: 11px !important;
        padding: 7px !important;

        align-items: center !important;
        flex-direction: row !important;
        gap: 6px !important;

        border-radius: 11px !important;
    }

    .vt-copy-row code {
        min-width: 0;

        font-size: 8px !important;
        line-height: 1.5 !important;

        overflow-wrap: anywhere;
        word-break: break-all;
    }

    .vt-copy-button {
        width: auto !important;
        min-width: 52px !important;
        min-height: 36px !important;
        padding: 6px 8px !important;

        font-size: 8px !important;
    }

    .vt-network-warning {
        margin-top: 8px !important;

        font-size: 8px !important;
        line-height: 1.65 !important;
    }

    /*
    |--------------------------------------------------------------------------
    | Form
    |--------------------------------------------------------------------------
    */

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-form-grid {
        grid-template-columns: 1fr !important;
        gap: 13px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    :is(
        .tv-input,
        .tv-select,
        .tv-textarea
    ) {
        width: 100%;
        min-height: 46px;
        padding: 11px 12px !important;

        border-radius: 12px !important;

        font-size: 16px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-textarea {
        min-height: 88px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-label {
        margin-bottom: 6px !important;

        font-size: 9px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-upload {
        min-height: 112px !important;
        padding: 15px 12px !important;

        border-radius: 14px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-upload-icon {
        font-size: 22px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-upload-title {
        margin-top: 5px !important;

        font-size: 11px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-upload-file {
        margin-top: 4px !important;

        font-size: 8px !important;
        line-height: 1.5 !important;
    }

    #submit-button {
        min-height: 49px !important;
        padding: 11px 14px !important;

        border-radius: 13px !important;

        font-size: 11px !important;
    }

    /*
    |--------------------------------------------------------------------------
    | History
    |--------------------------------------------------------------------------
    */

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-history {
        gap: 8px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-history-row {
        padding: 13px !important;

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            ) !important;

        gap: 11px 9px !important;

        border-radius: 14px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-history-row > div:first-child {
        grid-column: 1 / -1;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-history-key {
        font-size: 7.5px !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-history-value {
        margin-top: 3px !important;

        font-size: 9.5px !important;
        line-height: 1.55 !important;
    }

    .vt-deposit-capital-intro ~ .tv-panel
    .tv-request-id {
        display: block;
        max-width: 100%;

        overflow-wrap: anywhere;
        word-break: break-all;

        font-size: 8.5px !important;
    }
}

/* VT_MOBILE_DEPOSIT_ONLY_V2_END */

/* VT_MOBILE_DRAWER_V1_START */

.tv-mobile-menu-toggle,
.tv-mobile-menu-close,
.tv-mobile-menu-overlay,
.tv-mobile-menu-heading {
    display: none;
}

@media (max-width: 850px) {
    body.tv-mobile-menu-open {
        overflow: hidden;
        touch-action: none;
    }

    .tv-header {
        position: sticky;
        top: 0;
        z-index: 950;
    }

    .tv-header-inner {
        min-height: 68px;
        padding-top: 8px;
        padding-bottom: 8px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .tv-brand {
        min-width: 0;
        flex: 1;
    }

    .tv-brand .tv-logo {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .tv-brand-copy {
        min-width: 0;
    }

    .tv-brand-name {
        font-size: 12px;
        white-space: nowrap;
    }

    .tv-brand-subtitle {
        display: none;
    }

    /*
    |--------------------------------------------------------------------------
    | Hamburger button
    |--------------------------------------------------------------------------
    */

    .tv-mobile-menu-toggle {
        width: 46px;
        height: 46px;
        padding: 0;

        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        flex-shrink: 0;

        border:
            1px solid
            rgba(255, 255, 255, .11);

        border-radius: 14px;

        color: var(--tv-yellow);

        background:
            linear-gradient(
                145deg,
                rgba(70, 67, 49, .84),
                rgba(25, 24, 17, .96)
            );

        box-shadow:
            0 12px 35px
            rgba(0, 0, 0, .22);

        cursor: pointer;
    }

    .tv-mobile-menu-toggle span {
        width: 21px;
        height: 2px;

        display: block;

        border-radius: 10px;
        background: currentColor;

        transition:
            transform .22s ease,
            opacity .22s ease;
    }

    .tv-mobile-menu-toggle[
        aria-expanded="true"
    ] span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .tv-mobile-menu-toggle[
        aria-expanded="true"
    ] span:nth-child(2) {
        opacity: 0;
    }

    .tv-mobile-menu-toggle[
        aria-expanded="true"
    ] span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

    /*
    |--------------------------------------------------------------------------
    | Side drawer
    |--------------------------------------------------------------------------
    */

    .tv-nav {
        position: fixed !important;
        z-index: 1100;
        top: 0;
        right: 0;

        width: min(84vw, 330px);
        height: 100vh;
        height: 100dvh;
        padding:
            max(18px, env(safe-area-inset-top))
            17px
            max(20px, env(safe-area-inset-bottom));

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 7px !important;

        overflow-y: auto;
        overscroll-behavior: contain;

        border-left:
            1px solid
            rgba(255, 255, 255, .09);

        background:
            linear-gradient(
                165deg,
                #343227 0%,
                #1c1b14 72%,
                #15140f 100%
            );

        box-shadow:
            -28px 0 75px
            rgba(0, 0, 0, .42);

        transform: translateX(105%);
        visibility: hidden;

        transition:
            transform .28s ease,
            visibility .28s ease;
    }

    .tv-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .tv-mobile-menu-heading {
        min-height: 48px;
        margin-bottom: 8px;
        padding-bottom: 13px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;

        border-bottom:
            1px solid
            rgba(255, 255, 255, .08);
    }

    .tv-mobile-menu-heading strong {
        color: #f5f0da;

        font-size: 13px;
        font-weight: 900;
    }

    .tv-mobile-menu-close {
        width: 39px;
        height: 39px;
        padding: 0;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        border:
            1px solid
            rgba(255, 255, 255, .09);

        border-radius: 12px;

        color: var(--tv-yellow);
        background: rgba(255, 255, 255, .045);

        font-family: inherit;
        font-size: 25px;
        line-height: 1;

        cursor: pointer;
    }

    /*
    |--------------------------------------------------------------------------
    | Drawer links
    |--------------------------------------------------------------------------
    */

    .tv-nav .tv-nav-link,
    .tv-nav .tv-logout {
        width: 100%;
        min-height: 47px;
        padding: 11px 13px !important;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        border:
            1px solid
            rgba(255, 255, 255, .055);

        border-radius: 13px;

        color: #eee8d1;
        background: rgba(255, 255, 255, .025);

        font-size: 11px !important;
        font-weight: 800;
        text-align: right;
        text-decoration: none;
    }

    .tv-nav .tv-nav-link:hover,
    .tv-nav .tv-logout:hover {
        color: #211f11;

        border-color:
            rgba(255, 224, 0, .55);

        background: var(--tv-yellow);
    }

    .tv-nav form {
        width: 100%;
        margin: 0;
    }

    .tv-nav .tv-user-chip {
        width: 100%;
        min-height: 47px;
        margin-top: 7px;
        padding: 10px 13px;

        display: flex;
        align-items: center;

        border:
            1px solid
            rgba(255, 224, 0, .15);

        border-radius: 13px;

        color: var(--tv-yellow);
        background:
            rgba(255, 224, 0, .045);

        font-size: 10px;
        overflow-wrap: anywhere;
    }

    /*
    |--------------------------------------------------------------------------
    | Backdrop
    |--------------------------------------------------------------------------
    */

    .tv-mobile-menu-overlay {
        position: fixed;
        z-index: 1050;
        inset: 0;

        width: 100%;
        height: 100%;
        padding: 0;

        display: block;

        border: 0;

        background:
            rgba(8, 8, 6, .68);

        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            opacity .25s ease,
            visibility .25s ease;
    }

    .tv-mobile-menu-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /*
    |--------------------------------------------------------------------------
    | Light theme
    |--------------------------------------------------------------------------
    */

    html[data-theme="light"]
    .tv-mobile-menu-toggle {
        color: #806d00;

        border-color:
            rgba(56, 54, 42, .14);

        background:
            linear-gradient(
                145deg,
                #fffdf8,
                #eee8d8
            );

        box-shadow:
            0 12px 35px
            rgba(56, 54, 42, .13);
    }

    html[data-theme="light"]
    .tv-nav {
        border-left-color:
            rgba(56, 54, 42, .12);

        background:
            linear-gradient(
                165deg,
                #fffdf8 0%,
                #f0ebde 100%
            );

        box-shadow:
            -28px 0 75px
            rgba(56, 54, 42, .22);
    }

    html[data-theme="light"]
    .tv-mobile-menu-heading {
        border-bottom-color:
            rgba(56, 54, 42, .10);
    }

    html[data-theme="light"]
    .tv-mobile-menu-heading strong {
        color: #302f27;
    }

    html[data-theme="light"]
    .tv-mobile-menu-close {
        color: #806d00;

        border-color:
            rgba(56, 54, 42, .12);

        background:
            rgba(56, 54, 42, .04);
    }

    html[data-theme="light"]
    .tv-nav .tv-nav-link,
    html[data-theme="light"]
    .tv-nav .tv-logout {
        color: #38362a;

        border-color:
            rgba(56, 54, 42, .09);

        background:
            rgba(255, 255, 255, .54);
    }

    html[data-theme="light"]
    .tv-nav .tv-user-chip {
        color: #806d00;

        border-color:
            rgba(154, 130, 0, .20);

        background:
            rgba(255, 224, 0, .07);
    }

    html[data-theme="light"]
    .tv-mobile-menu-overlay {
        background:
            rgba(56, 54, 42, .33);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tv-nav,
    .tv-mobile-menu-overlay,
    .tv-mobile-menu-toggle span {
        transition: none !important;
    }
}

/* VT_MOBILE_DRAWER_V1_END */

/* VT_MOBILE_DRAWER_FIX_V2_START */

@media (max-width: 850px) {
    /*
    |--------------------------------------------------------------------------
    | Keep the hamburger at the far side of the header
    |--------------------------------------------------------------------------
    */

    .tv-header {
        position: sticky !important;
        top: 0;
        z-index: 1100 !important;
    }

    .tv-header-inner {
        width: 100% !important;
        min-height: 66px !important;

        padding-top: 8px !important;
        padding-bottom: 8px !important;

        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px !important;
    }

    .tv-brand {
        min-width: 0 !important;
        max-width: calc(100% - 58px);
        flex: 0 1 auto !important;
    }

    .tv-mobile-menu-toggle {
        position: relative !important;
        inset: auto !important;

        width: 46px !important;
        height: 46px !important;
        margin-right: auto !important;
        margin-left: 0 !important;

        flex: 0 0 46px !important;
        align-self: center !important;

        transform: none !important;
    }

    /*
    |--------------------------------------------------------------------------
    | Correct drawer stacking
    |--------------------------------------------------------------------------
    */

    .tv-nav {
        z-index: 1300 !important;

        opacity: 1 !important;
        filter: none !important;

        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;

        will-change: transform;
    }

    .tv-nav.is-open {
        opacity: 1 !important;
        visibility: visible !important;

        filter: none !important;
        transform: translate3d(0, 0, 0) !important;
    }

    /*
     * The overlay must stay behind the drawer.
     * Remove blur so the menu remains completely sharp.
     */

    .tv-mobile-menu-overlay {
        z-index: 1000 !important;

        background: rgba(8, 8, 6, .72) !important;

        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;

        filter: none !important;
    }

    /*
    |--------------------------------------------------------------------------
    | Sharp and readable drawer
    |--------------------------------------------------------------------------
    */

    .tv-mobile-menu-heading,
    .tv-nav .tv-nav-link,
    .tv-nav .tv-user-chip,
    .tv-nav .tv-logout {
        opacity: 1 !important;
        filter: none !important;

        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .tv-nav .tv-nav-link,
    .tv-nav .tv-logout {
        color: #f3eedb !important;
        background: #29281f !important;

        border-color:
            rgba(255, 255, 255, .09) !important;
    }

    .tv-nav .tv-nav-link:hover,
    .tv-nav .tv-nav-link:active,
    .tv-nav .tv-logout:hover,
    .tv-nav .tv-logout:active {
        color: #211f11 !important;
        background: var(--tv-yellow) !important;
    }

    .tv-mobile-menu-heading strong {
        color: #ffffff !important;
    }

    /*
    |--------------------------------------------------------------------------
    | Light theme
    |--------------------------------------------------------------------------
    */

    html[data-theme="light"] .tv-nav {
        background:
            linear-gradient(
                165deg,
                #fffdf8,
                #eee8da
            ) !important;
    }

    html[data-theme="light"]
    .tv-nav .tv-nav-link,
    html[data-theme="light"]
    .tv-nav .tv-logout {
        color: #302f27 !important;
        background: #fffdf8 !important;

        border-color:
            rgba(56, 54, 42, .13) !important;
    }

    html[data-theme="light"]
    .tv-mobile-menu-heading strong {
        color: #302f27 !important;
    }

    html[data-theme="light"]
    .tv-mobile-menu-overlay {
        background:
            rgba(30, 29, 23, .56) !important;
    }
}

/* VT_MOBILE_DRAWER_FIX_V2_END */

/* =========================================================
   Registration page
   ========================================================= */

.vt-register-page {
    min-height: calc(100vh - 180px);
    padding: 55px 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-register-card {
    width: min(100%, 980px);

    display: grid;
    grid-template-columns:
        minmax(0, .85fr)
        minmax(0, 1.15fr);

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(61,59,44,.78),
            rgba(21,21,15,.96)
        );

    box-shadow:
        0 35px 100px rgba(0,0,0,.30);
}

.vt-register-brand {
    min-width: 0;
    padding: 46px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left:
        1px solid rgba(255,255,255,.07);

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255,224,0,.12),
            transparent 44%
        );
}

.vt-register-logo {
    width: 112px;
    height: 112px;
    margin-bottom: 26px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-register-brand h1 {
    margin: 12px 0 15px;

    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
}

.vt-register-brand h1 span {
    display: block;
    color: var(--tv-yellow);
}

.vt-register-brand p {
    max-width: 430px;
    margin: 0;

    color: var(--tv-muted);

    font-size: 12px;
    line-height: 2;
}

.vt-register-form-panel {
    min-width: 0;
    padding: 46px;
}

.vt-register-heading {
    margin-bottom: 25px;
}

.vt-register-heading h2 {
    margin: 0;

    font-size: 25px;
}

.vt-register-heading p {
    margin: 7px 0 0;

    color: var(--tv-muted);

    font-size: 10px;
    line-height: 1.8;
}

.vt-register-form {
    margin-top: 22px;

    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 17px 13px;
}

.vt-register-form > :first-child,
.vt-register-form > :nth-child(2),
.vt-register-notice,
.vt-register-submit {
    grid-column: 1 / -1;
}

.vt-password-field {
    position: relative;
}

.vt-password-field .tv-input {
    padding-left: 70px;
}

.vt-password-toggle {
    position: absolute;
    top: 50%;
    left: 8px;

    min-width: 54px;
    min-height: 35px;
    padding: 6px 9px;

    border: 1px solid rgba(255,224,0,.18);
    border-radius: 10px;

    color: var(--tv-yellow);
    background: rgba(255,224,0,.055);

    font-family: inherit;
    font-size: 8px;
    font-weight: 900;

    cursor: pointer;

    transform: translateY(-50%);
}

.vt-register-notice {
    margin: 0;
    padding: 13px 14px;

    border: 1px solid rgba(255,224,0,.13);
    border-radius: 12px;

    color: var(--tv-muted);
    background: rgba(255,224,0,.035);

    font-size: 8.5px;
    line-height: 1.8;
}

.vt-register-submit {
    width: 100%;
    min-height: 51px;

    justify-content: center;
    gap: 12px;
}

.vt-register-errors {
    margin: 8px 0 0;
    padding-right: 18px;
}

.vt-register-errors li {
    margin-top: 4px;
}

.vt-register-divider {
    margin: 22px 0;

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--tv-muted);

    font-size: 8px;
}

.vt-register-divider::before,
.vt-register-divider::after {
    height: 1px;
    flex: 1;

    content: "";

    background: rgba(255,255,255,.08);
}

.vt-register-google {
    width: 100%;
    min-height: 48px;
    padding: 11px 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 13px;

    color: #f3eedb;
    background: rgba(255,255,255,.035);

    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
}

.vt-register-login {
    margin: 21px 0 0;

    color: var(--tv-muted);

    font-size: 9px;
    text-align: center;
}

.vt-register-login a {
    color: var(--tv-yellow);
    font-weight: 900;
    text-decoration: none;
}

html[data-theme="light"] .vt-register-card {
    border-color: rgba(56,54,42,.12);

    background:
        linear-gradient(
            145deg,
            #fffdf8,
            #f1ecdf
        );

    box-shadow:
        0 35px 100px rgba(56,54,42,.13);
}

html[data-theme="light"] .vt-register-brand {
    border-left-color: rgba(56,54,42,.10);
}

html[data-theme="light"] .vt-register-google {
    color: #302f27;
    border-color: rgba(56,54,42,.13);
    background: rgba(255,255,255,.60);
}

html[data-theme="light"] .vt-register-divider::before,
html[data-theme="light"] .vt-register-divider::after {
    background: rgba(56,54,42,.12);
}

@media (max-width: 800px) {
    .vt-register-page {
        min-height: auto;
        padding: 22px 0 35px;
    }

    .vt-register-card {
        grid-template-columns: 1fr;

        border-radius: 21px;
    }

    .vt-register-brand {
        padding: 24px 20px;

        align-items: center;

        border-left: 0;
        border-bottom:
            1px solid rgba(255,255,255,.07);

        text-align: center;
    }

    .vt-register-logo {
        width: 82px;
        height: 82px;
        margin-bottom: 10px;
    }

    .vt-register-logo .tv-logo,
    .vt-register-logo svg {
        width: 82px !important;
        height: 82px !important;
    }

    .vt-register-brand h1 {
        margin: 7px 0 8px;

        font-size: 32px;
    }

    .vt-register-brand h1 span {
        display: inline;
    }

    .vt-register-brand p {
        max-width: 520px;

        font-size: 10.5px;
        line-height: 1.75;
    }

    .vt-register-form-panel {
        padding: 22px 17px 25px;
    }

    .vt-register-heading {
        margin-bottom: 17px;
    }

    .vt-register-heading h2 {
        font-size: 21px;
    }

    .vt-register-form {
        margin-top: 17px;

        grid-template-columns: 1fr;
        gap: 13px;
    }

    .vt-register-form > * {
        grid-column: 1 !important;
    }

    .vt-register-form .tv-input {
        min-height: 48px;
        padding-top: 11px;
        padding-bottom: 11px;

        font-size: 16px;
    }

    .vt-register-submit {
        min-height: 49px;
    }

    .vt-register-divider {
        margin: 18px 0;
    }

    .vt-register-google {
        min-height: 47px;
    }
}

/* End registration page */

/* VT_ACCOUNT_OVERVIEW_CSS_START */

.vt-account-hero {
    margin: 34px 0 25px;
    padding: 38px 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    overflow: hidden;
    position: relative;

    border:
        1px solid
        rgba(255, 255, 255, .08);

    border-radius: 25px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 224, 0, .14),
            transparent 33%
        ),
        linear-gradient(
            145deg,
            rgba(64, 62, 47, .82),
            rgba(22, 21, 16, .96)
        );

    box-shadow:
        0 28px 75px
        rgba(0, 0, 0, .24);
}

.vt-account-hero-copy {
    min-width: 0;
    position: relative;
    z-index: 2;
}

.vt-account-hero h1 {
    margin: 12px 0 14px;

    font-size:
        clamp(
            35px,
            5vw,
            58px
        );

    line-height: 1.12;
}

.vt-account-hero h1 span {
    color: var(--tv-yellow);
}

.vt-account-hero p {
    max-width: 670px;
    margin: 0;

    color: var(--tv-muted);

    font-size: 12px;
    line-height: 2;
}

.vt-account-hero-logo {
    width: 180px;
    height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 180px;

    border:
        1px solid
        rgba(255, 224, 0, .14);

    border-radius: 50%;

    background:
        rgba(255, 224, 0, .035);

    box-shadow:
        inset 0 0 40px
        rgba(255, 224, 0, .055);
}

.vt-account-meta {
    margin-top: 23px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vt-account-meta > span {
    min-height: 37px;
    padding: 8px 11px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    border:
        1px solid
        rgba(255, 255, 255, .075);

    border-radius: 11px;

    color: var(--tv-muted);
    background: rgba(0, 0, 0, .12);

    font-size: 8.5px;
}

.vt-account-meta strong {
    color: #f5efda;
}

.vt-account-primary-grid {
    margin-bottom: 24px;

    display: grid;
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 12px;
}

.vt-account-primary-card {
    min-width: 0;
    min-height: 195px;
    padding: 22px;

    display: flex;
    flex-direction: column;

    border:
        1px solid
        rgba(255, 255, 255, .07);

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(57, 55, 42, .66),
            rgba(21, 20, 15, .94)
        );

    box-shadow:
        0 18px 48px
        rgba(0, 0, 0, .16);
}

.vt-account-primary-card.is-capital {
    border-color:
        rgba(255, 224, 0, .24);

    background:
        radial-gradient(
            circle at 90% 0,
            rgba(255, 224, 0, .12),
            transparent 48%
        ),
        linear-gradient(
            145deg,
            rgba(67, 64, 44, .84),
            rgba(24, 23, 16, .96)
        );
}

.vt-account-primary-card.is-profit {
    border-color:
        rgba(93, 214, 144, .19);
}

.vt-account-primary-card > span {
    color: var(--tv-muted);

    font-size: 9px;
    font-weight: 800;
}

.vt-account-primary-card > strong {
    margin-top: 17px;

    color: var(--tv-yellow);

    font-size:
        clamp(
            21px,
            2.3vw,
            29px
        );

    line-height: 1.15;
    overflow-wrap: anywhere;
}

.vt-account-primary-card > strong small {
    font-size: 9px;
    font-weight: 800;
}

.vt-account-primary-card > p {
    margin: auto 0 0;

    color: var(--tv-muted);

    font-size: 8.5px;
    line-height: 1.8;
}

.vt-account-section {
    margin-top: 24px;
    padding: 27px;

    border:
        1px solid
        rgba(255, 255, 255, .07);

    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(53, 51, 39, .54),
            rgba(20, 20, 15, .92)
        );
}

.vt-account-section-heading {
    margin-bottom: 21px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.vt-account-section-heading h2,
.vt-account-actions h2 {
    margin: 7px 0 0;

    font-size: 22px;
}

.vt-account-updated {
    color: var(--tv-muted);

    font-size: 8px;
}

.vt-account-detail-grid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 10px;
}

.vt-account-detail-grid article {
    min-width: 0;
    padding: 17px;

    border:
        1px solid
        rgba(255, 255, 255, .055);

    border-radius: 14px;

    background:
        rgba(0, 0, 0, .11);
}

.vt-account-detail-grid span {
    display: block;

    color: var(--tv-muted);

    font-size: 8px;
}

.vt-account-detail-grid strong {
    display: block;
    margin-top: 8px;

    color: #f3eedb;

    font-size: 14px;
    overflow-wrap: anywhere;
}

.vt-account-actions {
    margin-top: 24px;
    padding: 24px 27px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    border:
        1px solid
        rgba(255, 224, 0, .15);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 224, 0, .055),
            rgba(34, 32, 22, .88)
        );
}

.vt-account-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.vt-account-activity {
    display: grid;
    gap: 9px;
}

.vt-account-activity-row {
    min-width: 0;
    padding: 14px;

    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr) auto auto;

    align-items: center;
    gap: 14px;

    border:
        1px solid
        rgba(255, 255, 255, .055);

    border-radius: 14px;

    background:
        rgba(0, 0, 0, .115);
}

.vt-account-activity-icon {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 224, 0, .16);

    border-radius: 12px;

    color: var(--tv-yellow);
    background:
        rgba(255, 224, 0, .05);

    font-size: 17px;
    font-weight: 900;
}

.vt-account-activity-main {
    min-width: 0;
}

.vt-account-activity-main strong {
    display: block;

    color: #f2ecd8;

    font-size: 10.5px;
}

.vt-account-activity-main span,
.vt-account-activity-date span {
    display: block;
    margin-top: 4px;

    color: var(--tv-muted);

    font-size: 7.5px;
    line-height: 1.5;
}

.vt-account-activity-date strong {
    display: block;
    margin-top: 4px;

    color: #eee8d3;

    font-size: 8.5px;
    white-space: nowrap;
}

.vt-account-activity-amount {
    min-width: 105px;

    font-size: 11px;
    font-weight: 900;
    text-align: left;
    white-space: nowrap;
}

.vt-account-activity-amount.is-credit {
    color: #7be3a6;
}

.vt-account-activity-amount.is-debit {
    color: #ef927f;
}

.vt-account-empty {
    margin: 35px 0;
    padding: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    border:
        1px solid
        rgba(255, 224, 0, .15);

    border-radius: 22px;

    background:
        rgba(255, 224, 0, .035);
}

.vt-account-empty h2 {
    margin: 9px 0;

    font-size: 27px;
}

.vt-account-empty p {
    max-width: 650px;
    margin: 0;

    color: var(--tv-muted);

    font-size: 10px;
    line-height: 1.9;
}

.vt-account-no-activity {
    padding: 30px;

    border:
        1px dashed
        rgba(255, 255, 255, .10);

    border-radius: 15px;

    color: var(--tv-muted);

    font-size: 10px;
    text-align: center;
}

html[data-theme="light"]
:is(
    .vt-account-hero,
    .vt-account-primary-card,
    .vt-account-section
) {
    color: #2f2d24;

    border-color:
        rgba(56, 54, 42, .12);

    background:
        linear-gradient(
            145deg,
            #fffdf8,
            #eee8da
        );

    box-shadow:
        0 20px 55px
        rgba(56, 54, 42, .10);
}

html[data-theme="light"]
:is(
    .vt-account-meta strong,
    .vt-account-detail-grid strong,
    .vt-account-activity-main strong,
    .vt-account-activity-date strong
) {
    color: #302f27;
}

html[data-theme="light"]
:is(
    .vt-account-meta > span,
    .vt-account-detail-grid article,
    .vt-account-activity-row
) {
    border-color:
        rgba(56, 54, 42, .10);

    background:
        rgba(255, 255, 255, .52);
}

@media (max-width: 950px) {
    .vt-account-primary-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .vt-account-detail-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }
}

@media (max-width: 760px) {
    .vt-account-hero {
        margin-top: 18px;
        padding: 23px 17px;

        align-items: flex-start;
        gap: 15px;

        border-radius: 19px;
    }

    .vt-account-hero h1 {
        margin: 8px 0 10px;

        font-size: 31px;
    }

    .vt-account-hero p {
        font-size: 11px;
        line-height: 1.75;
    }

    .vt-account-hero-logo {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    .vt-account-hero-logo .tv-logo,
    .vt-account-hero-logo svg {
        width: 62px !important;
        height: 62px !important;
    }

    .vt-account-meta {
        margin-top: 16px;
        gap: 6px;
    }

    .vt-account-meta > span {
        min-height: 34px;

        font-size: 8px;
    }

    .vt-account-primary-grid {
        gap: 8px;
    }

    .vt-account-primary-card {
        min-height: 166px;
        padding: 15px;

        border-radius: 15px;
    }

    .vt-account-primary-card > strong {
        margin-top: 12px;

        font-size: 20px;
    }

    .vt-account-primary-card > p {
        font-size: 8px;
    }

    .vt-account-section {
        margin-top: 16px;
        padding: 18px 14px;

        border-radius: 17px;
    }

    .vt-account-section-heading {
        margin-bottom: 15px;

        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .vt-account-section-heading h2,
    .vt-account-actions h2 {
        font-size: 19px;
    }

    .vt-account-detail-grid {
        gap: 7px;
    }

    .vt-account-detail-grid article {
        padding: 13px 10px;
    }

    .vt-account-detail-grid strong {
        font-size: 12px;
    }

    .vt-account-actions {
        margin-top: 16px;
        padding: 18px 15px;

        align-items: stretch;
        flex-direction: column;

        border-radius: 17px;
    }

    .vt-account-action-buttons {
        display: grid;
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .vt-account-action-buttons .tv-button {
        width: 100%;
        justify-content: center;
    }

    .vt-account-activity-row {
        padding: 12px 10px;

        grid-template-columns:
            auto minmax(0, 1fr) auto;

        gap: 9px;
    }

    .vt-account-activity-date {
        display: none;
    }

    .vt-account-activity-amount {
        min-width: auto;

        font-size: 9px;
    }

    .vt-account-empty {
        margin: 20px 0;
        padding: 24px 17px;

        align-items: stretch;
        flex-direction: column;

        border-radius: 18px;
    }
}

@media (max-width: 430px) {
    .vt-account-hero-logo {
        display: none;
    }

    .vt-account-primary-grid,
    .vt-account-detail-grid {
        grid-template-columns: 1fr;
    }

    .vt-account-primary-card {
        min-height: 145px;
    }

    .vt-account-action-buttons {
        grid-template-columns: 1fr;
    }
}

/* VT_ACCOUNT_OVERVIEW_CSS_END */

/* VT_ADMIN_USERS_CSS_START */

.vt-admin-users-hero,
.vt-admin-user-header {
    margin: 32px 0 24px;
    padding: 34px 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 224, 0, .13),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(59, 57, 43, .78),
            rgba(20, 20, 15, .95)
        );

    box-shadow:
        0 24px 65px rgba(0, 0, 0, .20);
}

.vt-admin-users-hero h1,
.vt-admin-user-header h1 {
    margin: 10px 0 12px;

    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.12;
}

.vt-admin-users-hero h1 span {
    color: var(--tv-yellow);
}

.vt-admin-users-hero p,
.vt-admin-user-header p {
    max-width: 680px;
    margin: 0;

    color: var(--tv-muted);

    font-size: 14px;
    line-height: 1.9;
}

.vt-admin-users-stats,
.vt-admin-user-summary {
    margin-bottom: 23px;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 11px;
}

.vt-admin-user-summary {
    grid-template-columns:
        repeat(6, minmax(0, 1fr));
}

.vt-admin-users-stats article,
.vt-admin-user-summary article {
    min-width: 0;
    padding: 20px;

    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(55, 53, 40, .62),
            rgba(20, 20, 15, .92)
        );
}

.vt-admin-users-stats span,
.vt-admin-user-summary span {
    display: block;

    color: var(--tv-muted);

    font-size: 13px;
    line-height: 1.5;
}

.vt-admin-users-stats strong,
.vt-admin-user-summary strong {
    display: block;
    margin-top: 10px;

    color: var(--tv-yellow);

    font-size: clamp(21px, 2.5vw, 28px);
    overflow-wrap: anywhere;
}

.vt-admin-users-stats small,
.vt-admin-user-summary small,
.vt-admin-money small {
    font-size: 11px;
}

.vt-admin-users-panel {
    margin: 22px 0;
    padding: 23px;

    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(48, 47, 36, .50),
            rgba(18, 18, 14, .93)
        );
}

.vt-admin-users-filter {
    margin-bottom: 22px;

    display: grid;
    grid-template-columns:
        minmax(220px, 1.8fr)
        minmax(155px, .8fr)
        minmax(175px, .9fr)
        auto
        auto;

    align-items: end;
    gap: 10px;
}

.vt-admin-users-filter label {
    display: block;
    margin-bottom: 7px;

    color: var(--tv-muted);

    font-size: 13px;
    font-weight: 700;
}

.vt-admin-users-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.vt-admin-users-table {
    width: 100%;
    min-width: 1120px;

    border-collapse: collapse;
}

.vt-admin-users-table.is-deposits {
    min-width: 1250px;
}

.vt-admin-users-table th,
.vt-admin-users-table td {
    padding: 15px 12px;
    text-align: right;
    vertical-align: middle;

    border-bottom:
        1px solid rgba(255, 255, 255, .065);
}

.vt-admin-users-table th {
    color: var(--tv-muted);

    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.vt-admin-users-table td {
    color: #f2ecd9;

    font-size: 13px;
}

.vt-admin-user-identity {
    min-width: 220px;

    display: flex;
    align-items: center;
    gap: 11px;
}

.vt-admin-user-avatar {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;

    border: 1px solid rgba(255, 224, 0, .18);
    border-radius: 13px;

    color: var(--tv-yellow);
    background: rgba(255, 224, 0, .055);

    font-size: 17px;
    font-weight: 900;
}

.vt-admin-user-identity strong,
.vt-admin-user-identity a,
.vt-admin-user-identity small {
    display: block;
}

.vt-admin-user-identity strong {
    margin-bottom: 4px;

    color: #f5efdd;

    font-size: 14px;
}

.vt-admin-user-identity a,
.vt-admin-user-identity small {
    color: var(--tv-muted);

    font-size: 12px;
    line-height: 1.5;
}

.vt-admin-badge,
.vt-admin-deposit-status,
.vt-admin-count {
    min-height: 29px;
    padding: 5px 9px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 224, 0, .14);
    border-radius: 999px;

    color: #eee6cb;
    background: rgba(255, 224, 0, .045);

    font-size: 11px;
    font-weight: 800;
}

.vt-admin-badge.is-status {
    margin-top: 6px;
    display: flex;

    border-color: rgba(107, 209, 150, .18);
    background: rgba(107, 209, 150, .055);
}

.vt-admin-count {
    min-width: 31px;
}

.vt-admin-count.is-pending,
.vt-admin-deposit-status.is-awaiting-review {
    color: #f1d57d;
    border-color: rgba(241, 213, 125, .24);
    background: rgba(241, 213, 125, .07);
}

.vt-admin-deposit-status.is-confirmed {
    color: #81e0a7;
    border-color: rgba(129, 224, 167, .22);
    background: rgba(129, 224, 167, .065);
}

.vt-admin-deposit-status.is-rejected,
.vt-admin-deposit-status.is-failed {
    color: #ef9b8a;
    border-color: rgba(239, 155, 138, .22);
    background: rgba(239, 155, 138, .065);
}

.vt-admin-money {
    color: var(--tv-yellow);
    white-space: nowrap;
}

.vt-admin-muted {
    display: block;
    margin-top: 5px;

    color: var(--tv-muted);

    font-size: 11px;
    line-height: 1.5;
}

.vt-admin-user-open,
.vt-admin-proof-button {
    min-height: 38px;
    padding: 9px 12px;

    font-size: 11px;
    white-space: nowrap;
}

.vt-admin-users-empty {
    padding: 38px !important;

    color: var(--tv-muted) !important;

    text-align: center !important;
}

.vt-admin-users-pagination {
    margin-top: 20px;
}

.vt-admin-section-heading {
    margin-bottom: 20px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.vt-admin-section-heading h2 {
    margin: 7px 0 0;

    font-size: 24px;
}

.vt-admin-section-heading > span {
    color: var(--tv-muted);

    font-size: 12px;
}

.vt-admin-back-link {
    display: inline-flex;
    margin-bottom: 15px;

    color: var(--tv-yellow);

    font-size: 13px;
    font-weight: 800;
}

.vt-admin-request-id {
    display: block;
    max-width: 190px;

    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 11px;
    white-space: nowrap;
}

.vt-admin-reference {
    max-width: 175px;
    padding: 5px 7px;

    display: block;
    overflow: hidden;
    text-overflow: ellipsis;

    border-radius: 7px;

    color: #ddd3b6;
    background: rgba(0, 0, 0, .18);

    font-size: 10px;
    white-space: nowrap;
}

html[data-theme="light"]
:is(
    .vt-admin-users-hero,
    .vt-admin-user-header,
    .vt-admin-users-stats article,
    .vt-admin-user-summary article,
    .vt-admin-users-panel
) {
    color: #2e2c24;

    border-color: rgba(56, 54, 42, .12);

    background:
        linear-gradient(
            145deg,
            #fffdf8,
            #eee8da
        );

    box-shadow:
        0 18px 50px rgba(56, 54, 42, .09);
}

html[data-theme="light"]
.vt-admin-users-table td,
html[data-theme="light"]
.vt-admin-user-identity strong {
    color: #302e26;
}

html[data-theme="light"]
.vt-admin-users-table th,
html[data-theme="light"]
.vt-admin-users-table td {
    border-color: rgba(56, 54, 42, .10);
}

@media (max-width: 1100px) {
    .vt-admin-users-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .vt-admin-user-summary {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .vt-admin-users-filter {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .vt-admin-users-search {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .vt-admin-users-hero,
    .vt-admin-user-header {
        margin-top: 18px;
        padding: 22px 17px;

        align-items: stretch;
        flex-direction: column;

        border-radius: 18px;
    }

    .vt-admin-users-hero h1,
    .vt-admin-user-header h1 {
        font-size: 32px;
    }

    .vt-admin-users-hero p,
    .vt-admin-user-header p {
        font-size: 13px;
    }

    .vt-admin-users-stats,
    .vt-admin-user-summary {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }

    .vt-admin-users-stats article,
    .vt-admin-user-summary article {
        padding: 15px;

        border-radius: 14px;
    }

    .vt-admin-users-panel {
        padding: 14px 11px;

        border-radius: 17px;
    }

    .vt-admin-users-filter {
        grid-template-columns: 1fr;
    }

    .vt-admin-users-search {
        grid-column: auto;
    }

    .vt-admin-users-table-wrap {
        overflow: visible;
    }

    .vt-admin-users-table,
    .vt-admin-users-table.is-deposits,
    .vt-admin-users-table tbody,
    .vt-admin-users-table tr,
    .vt-admin-users-table td {
        width: 100%;
        min-width: 0;

        display: block;
    }

    .vt-admin-users-table thead {
        display: none;
    }

    .vt-admin-users-table tr {
        margin-bottom: 12px;
        padding: 7px 11px;

        border: 1px solid rgba(255, 255, 255, .07);
        border-radius: 15px;

        background: rgba(0, 0, 0, .10);
    }

    .vt-admin-users-table td {
        min-height: 43px;
        padding: 10px 2px;

        display: grid;
        grid-template-columns:
            minmax(95px, 36%)
            minmax(0, 1fr);

        align-items: center;
        gap: 10px;

        border-bottom:
            1px solid rgba(255, 255, 255, .055);
    }

    .vt-admin-users-table td:last-child {
        border-bottom: 0;
    }

    .vt-admin-users-table td::before {
        content: attr(data-label);

        color: var(--tv-muted);

        font-size: 11px;
        font-weight: 800;
    }

    .vt-admin-user-identity {
        min-width: 0;
    }

    .vt-admin-user-identity a {
        overflow-wrap: anywhere;
    }

    .vt-admin-user-open,
    .vt-admin-proof-button {
        width: 100%;
        justify-content: center;
    }

    .vt-admin-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 430px) {
    .vt-admin-users-stats,
    .vt-admin-user-summary {
        grid-template-columns: 1fr;
    }
}

/* VT_ADMIN_USERS_CSS_END */
