.vv-form,
.vv-referral-link,
.vv-share,
.vv-stats,
.vv-progress,
.vv-leaderboard,
.vv-gate,
.vv-hub,
.vv-countdown,
.vv-standard-page {
    --vv-bg: #fffaf0;
    --vv-ink: #1f2933;
    --vv-muted: #667085;
    --vv-line: #f1d7a6;
    --vv-accent: #cf5c36;
    --vv-accent-ink: #ffffff;
    color: var(--vv-ink);
    font-family: inherit;
}

.vv-form {
    background: linear-gradient(135deg, #fff8e7, #f7efe0);
    border: 1px solid var(--vv-line);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(75, 50, 20, 0.12);
    display: grid;
    gap: 14px;
    padding: 22px;
}

.vv-field {
    display: grid;
    gap: 7px;
}

.vv-field span,
.vv-label,
.vv-progress-top span {
    color: var(--vv-muted);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vv-field input,
.vv-copy-row input {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--vv-line);
    border-radius: 12px;
    color: var(--vv-ink);
    font: inherit;
    min-height: 46px;
    padding: 0 13px;
    width: 100%;
}

.vv-button,
.vv-share-button {
    align-items: center;
    background: var(--vv-accent);
    border: 0;
    border-radius: 999px;
    color: var(--vv-accent-ink);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 800;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.vv-button:hover,
.vv-share-button:hover {
    box-shadow: 0 10px 22px rgba(207, 92, 54, 0.24);
    transform: translateY(-1px);
}

.vv-button:disabled,
.vv-share-button[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.55;
}

.vv-button-secondary {
    background: #25324a;
}

.vv-form-message {
    color: #166534;
    font-size: 0.95rem;
    min-height: 1.3em;
}

.vv-form-message.is-error {
    color: #b42318;
}

.vv-copy-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.vv-share {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vv-empty,
.vv-admin-notice,
.vv-gate {
    background: #fff7ed;
    border: 1px solid var(--vv-line);
    border-radius: 12px;
    color: var(--vv-muted);
    margin: 10px 0 0;
    padding: 12px;
}

.vv-stats .vv-empty {
    grid-column: 1 / -1;
}

.vv-countdown {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(72px, 1fr));
}

.vv-countdown-item,
.vv-stats > div {
    background: var(--vv-bg);
    border: 1px solid var(--vv-line);
    border-radius: 16px;
    padding: 14px;
    text-align: center;
}

.vv-countdown-item strong,
.vv-stats strong {
    display: block;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    line-height: 1;
}

.vv-countdown-item span,
.vv-stats span {
    color: var(--vv-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vv-stats {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vv-progress {
    background: var(--vv-bg);
    border: 1px solid var(--vv-line);
    border-radius: 16px;
    padding: 16px;
}

.vv-progress-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.vv-progress-bar {
    background: rgba(207, 92, 54, 0.14);
    border-radius: 999px;
    height: 12px;
    overflow: hidden;
}

.vv-progress-bar span {
    background: linear-gradient(90deg, #cf5c36, #f2a65a);
    border-radius: inherit;
    display: block;
    height: 100%;
    transition: width 260ms ease;
}

.vv-leaderboard {
    display: grid;
    gap: 8px;
    list-style-position: inside;
    margin-left: 0;
    padding-left: 0;
}

.vv-leaderboard li {
    align-items: center;
    background: var(--vv-bg);
    border: 1px solid var(--vv-line);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
}

.vv-hub {
    display: grid;
    gap: 22px;
}

.vv-hub-hero {
    background:
        radial-gradient(circle at top right, rgba(207, 92, 54, 0.2), transparent 18rem),
        linear-gradient(135deg, #25324a, #172033);
    border-radius: 24px;
    color: #fff;
    padding: clamp(22px, 4vw, 42px);
}

.vv-hub-hero h2 {
    color: inherit;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: -0.06em;
    line-height: 0.96;
    margin: 0 0 12px;
}

.vv-hub-hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    margin: 0;
}

.vv-kicker {
    color: #f2a65a !important;
    font-size: 0.8rem !important;
    font-weight: 900;
    letter-spacing: 0.16em;
    margin-bottom: 14px !important;
    text-transform: uppercase;
}

.vv-hub-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vv-hub-card,
.vv-hub-section {
    background: var(--vv-bg);
    border: 1px solid var(--vv-line);
    border-radius: 18px;
    padding: 16px;
}

.vv-hub-card span {
    color: var(--vv-muted);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vv-hub-card strong {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -0.05em;
    line-height: 1;
    margin-top: 8px;
}

.vv-hub-section h3 {
    font-size: 1.15rem;
    margin: 0 0 10px;
}

.vv-hub-section p {
    color: var(--vv-muted);
    margin-top: 0;
}

.vv-hub-share {
    margin-top: 12px;
}

.vv-referral-list {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vv-referral-list li {
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--vv-line);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
}

.vv-referral-list time {
    color: var(--vv-muted);
    font-size: 0.9rem;
}

.vv-standard-page {
    background:
        radial-gradient(circle at top left, rgba(242, 166, 90, 0.24), transparent 34rem),
        linear-gradient(135deg, #fffaf0, #ffffff 54%, #f6efe4);
    border: 1px solid var(--vv-line);
    border-radius: 26px;
    box-shadow: 0 24px 80px rgba(75, 50, 20, 0.12);
    margin: 40px auto;
    padding: clamp(24px, 5vw, 58px);
}

.vv-standard-page h1 {
    font-size: clamp(2.4rem, 8vw, 5.6rem);
    letter-spacing: -0.07em;
    line-height: 0.94;
    margin-bottom: 0.25em;
}

.vv-standard-page h2 {
    margin-top: 1.4em;
}

.vv-standard-page > p {
    color: var(--vv-muted);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    max-width: 680px;
}

.vv-standard-page .vv-form,
.vv-standard-page .vv-countdown,
.vv-standard-page .vv-referral-link,
.vv-standard-page .vv-share,
.vv-standard-page .vv-stats,
.vv-standard-page .vv-progress,
.vv-standard-page .vv-leaderboard {
    margin-top: 22px;
}

@media (max-width: 640px) {
    .vv-copy-row,
    .vv-stats {
        grid-template-columns: 1fr;
    }

    .vv-copy-row {
        display: grid;
    }

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

    .vv-hub-grid {
        grid-template-columns: 1fr;
    }

    .vv-referral-list li {
        align-items: flex-start;
        display: grid;
        gap: 4px;
    }
}
