:root {
    --vv-bg: #0c0e1a;
    --vv-bg-elevated: #141829;
    --vv-bg-card: #1a1f35;
    --vv-surface: #222842;
    --vv-primary: #8b5cf6;
    --vv-primary-dark: #6d28d9;
    --vv-accent: #06b6d4;
    --vv-accent-soft: rgba(6, 182, 212, 0.15);
    --vv-warning: #f59e0b;
    --vv-warning-bg: rgba(245, 158, 11, 0.12);
    --vv-text: #f1f5f9;
    --vv-text-muted: #94a3b8;
    --vv-border: rgba(148, 163, 184, 0.15);
    --vv-radius: 12px;
    --vv-radius-sm: 8px;
    --vv-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --vv-font-heading: 'Outfit', system-ui, sans-serif;
    --vv-font-body: 'DM Sans', system-ui, sans-serif;
    --vv-container: 1140px;
    --vv-header-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--vv-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--vv-text);
    background: var(--vv-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--vv-accent);
    text-decoration: none;
}

a:hover {
    color: #67e8f9;
}

.vv-container {
    width: 100%;
    max-width: var(--vv-container);
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.vv-topbar {
    background: linear-gradient(90deg, #1a1030 0%, #0f1a2e 100%);
    border-bottom: 1px solid var(--vv-border);
}

.vv-topbar__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-block: 0.5rem;
}

.vv-topbar__badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 1.5rem;
    padding-inline: 0.4rem;
    font-family: var(--vv-font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--vv-warning);
    background: var(--vv-warning-bg);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 4px;
}

.vv-topbar__text {
    font-size: 0.78rem;
    color: var(--vv-text-muted);
    line-height: 1.4;
}

.vv-header {
    position: relative;
    background: var(--vv-bg-elevated);
    border-bottom: 1px solid var(--vv-border);
    box-shadow: var(--vv-shadow);
}

.vv-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--vv-header-height);
    gap: 1rem;
}

.vv-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--vv-text);
    text-decoration: none;
    flex-shrink: 0;
}

.vv-logo:hover {
    color: var(--vv-text);
}

.vv-logo__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.vv-logo__icon svg {
    width: 100%;
    height: 100%;
}

.vv-logo__text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.vv-logo__name {
    font-family: var(--vv-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #e2e8f0 0%, #a78bfa 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vv-logo__tagline {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--vv-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vv-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--vv-surface);
    border: 1px solid var(--vv-border);
    border-radius: var(--vv-radius-sm);
    cursor: pointer;
    z-index: 110;
}

.vv-nav-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--vv-text);
    border-radius: 2px;
}

.vv-nav-toggle[aria-expanded="true"] .vv-nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.vv-nav-toggle[aria-expanded="true"] .vv-nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.vv-nav-toggle[aria-expanded="true"] .vv-nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.vv-nav-toggle__bar {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.vv-nav__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.vv-nav__link {
    display: inline-block;
    padding: 0.55rem 1rem;
    font-family: var(--vv-font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--vv-text-muted);
    border-radius: var(--vv-radius-sm);
    transition: color 0.15s ease, background 0.15s ease;
}

.vv-nav__link:hover,
.vv-nav__link--active {
    color: var(--vv-text);
    background: var(--vv-accent-soft);
}

.vv-main {
    flex: 1;
}

.vv-hero {
    position: relative;
    padding-block: 2.5rem 3rem;
    background:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(139, 92, 246, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 50%, rgba(6, 182, 212, 0.12) 0%, transparent 60%),
        var(--vv-bg);
    border-bottom: 1px solid var(--vv-border);
}

.vv-hero__inner {
    max-width: 820px;
}

.vv-hero__content {
    text-align: center;
}

.vv-hero__title {
    font-family: var(--vv-font-heading);
    font-size: clamp(1.65rem, 4.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--vv-text);
    margin-bottom: 0.85rem;
}

.vv-hero__subtitle {
    font-family: var(--vv-font-body);
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    font-weight: 400;
    line-height: 1.65;
    color: var(--vv-text-muted);
    max-width: 640px;
    margin-inline: auto;
}

.vv-footer {
    margin-top: auto;
    background: var(--vv-bg-elevated);
    border-top: 1px solid var(--vv-border);
    padding-block: 2.5rem 2rem;
}

.vv-footer__inner {
    text-align: center;
}

.vv-footer__brand {
    font-family: var(--vv-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vv-text);
    margin-bottom: 1.5rem;
}

.vv-footer__disclaimers {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 780px;
    margin-inline: auto;
}

.vv-footer__disclaimer {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--vv-text-muted);
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--vv-primary);
    border-radius: 0 var(--vv-radius-sm) var(--vv-radius-sm) 0;
}

.vv-footer__policies {
    margin-bottom: 2rem;
}

.vv-footer__policy-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    list-style: none;
}

.vv-footer__policy-link {
    font-family: var(--vv-font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--vv-text-muted);
    transition: color 0.15s ease;
}

.vv-footer__policy-link:hover,
.vv-footer__policy-link--active {
    color: var(--vv-accent);
}

.vv-footer__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1.75rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--vv-border);
    border-radius: var(--vv-radius);
}

.vv-footer__badge-link,
.vv-footer__badge-static {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--vv-radius-sm);
    transition: background 0.15s ease, transform 0.15s ease;
}

.vv-footer__badge-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.vv-footer__badge-img {
    width: auto;
    height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.vv-footer__copy {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.7);
}

.vv-page {
    padding-block: 3rem 4rem;
}

.vv-page__inner {
    max-width: 720px;
}

.vv-page__title {
    font-family: var(--vv-font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--vv-text);
    margin-bottom: 1.5rem;
}

.vv-page__content {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--vv-text-muted);
}

.vv-page__content p {
    margin-bottom: 1rem;
}

.vv-page__content h2 {
    font-family: var(--vv-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vv-text);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.vv-page__content h2:first-child {
    margin-top: 0;
}

.vv-page__content ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.vv-page__content li {
    margin-bottom: 0.45rem;
}

.vv-page__content a {
    color: var(--vv-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vv-page__content a:hover {
    color: #67e8f9;
}

.vv-page__content strong {
    color: var(--vv-text);
    font-weight: 600;
}

.vv-page__email-wrap {
    margin-bottom: 1rem;
}

.vv-page__email {
    display: inline-block;
    font-family: var(--vv-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--vv-accent);
    text-decoration: none;
    padding: 0.65rem 1.15rem;
    background: var(--vv-accent-soft);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--vv-radius-sm);
}

.vv-page__email:hover {
    color: #67e8f9;
    background: rgba(6, 182, 212, 0.22);
}

.vv-page__content p:last-child {
    margin-bottom: 0;
}

.vv-page__back {
    margin-top: 2rem;
}

.vv-body--age-pending .vv-site,
.vv-body--age-denied .vv-site {
    visibility: hidden;
    pointer-events: none;
}

.vv-age-gate[hidden],
.vv-age-restricted[hidden],
.vv-cookie-banner[hidden] {
    display: none !important;
}

.vv-age-gate {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.vv-age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 20, 0.92);
    backdrop-filter: blur(8px);
}

.vv-age-gate__dialog {
    position: relative;
    width: 100%;
    max-width: 440px;
    padding: 2rem 1.75rem;
    text-align: center;
    background: var(--vv-bg-card);
    border: 1px solid var(--vv-border);
    border-radius: var(--vv-radius);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.vv-age-gate__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    font-family: var(--vv-font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vv-warning);
    background: var(--vv-warning-bg);
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 50%;
}

.vv-age-gate__title {
    font-family: var(--vv-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--vv-text);
    margin-bottom: 0.75rem;
}

.vv-age-gate__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--vv-text-muted);
    margin-bottom: 1.5rem;
}

.vv-age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.vv-age-gate__btn {
    width: 100%;
    padding: 0.8rem 1.25rem;
    font-family: var(--vv-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--vv-radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: filter 0.15s ease;
}

.vv-age-gate__btn--yes {
    color: #fff;
    background: linear-gradient(135deg, var(--vv-primary) 0%, var(--vv-primary-dark) 100%);
    border-color: rgba(139, 92, 246, 0.45);
}

.vv-age-gate__btn--yes:hover {
    filter: brightness(1.1);
}

.vv-age-gate__btn--no {
    color: var(--vv-text-muted);
    background: transparent;
    border-color: var(--vv-border);
}

.vv-age-gate__btn--no:hover {
    color: var(--vv-text);
    background: rgba(255, 255, 255, 0.04);
}

.vv-age-restricted {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: var(--vv-bg);
}

.vv-age-restricted__inner {
    max-width: 480px;
    text-align: center;
}

.vv-age-restricted__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1.25rem;
    font-family: var(--vv-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.12);
    border: 2px solid rgba(239, 68, 68, 0.35);
    border-radius: 50%;
}

.vv-age-restricted__title {
    font-family: var(--vv-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--vv-text);
    margin-bottom: 0.85rem;
}

.vv-age-restricted__text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--vv-text-muted);
    margin-bottom: 1rem;
}

.vv-age-restricted__hint {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.7);
}

.vv-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 1rem 1.25rem;
    background: var(--vv-bg-elevated);
    border-top: 1px solid var(--vv-border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

.vv-cookie-banner__inner {
    max-width: var(--vv-container);
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vv-cookie-banner__text {
    flex: 1 1 280px;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--vv-text-muted);
}

.vv-cookie-banner__text a {
    color: var(--vv-accent);
    text-decoration: underline;
}

.vv-cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex-shrink: 0;
}

.vv-cookie-banner__btn {
    padding: 0.6rem 1.15rem;
    font-family: var(--vv-font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--vv-radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: filter 0.15s ease, background 0.15s ease;
}

.vv-cookie-banner__btn--accept {
    color: #fff;
    background: linear-gradient(135deg, var(--vv-primary) 0%, var(--vv-primary-dark) 100%);
    border-color: rgba(139, 92, 246, 0.45);
}

.vv-cookie-banner__btn--accept:hover {
    filter: brightness(1.1);
}

.vv-cookie-banner__btn--decline {
    color: var(--vv-text-muted);
    background: transparent;
    border-color: var(--vv-border);
}

.vv-cookie-banner__btn--decline:hover {
    color: var(--vv-text);
    background: rgba(255, 255, 255, 0.04);
}

.vv-error {
    padding-block: 4rem 5rem;
    text-align: center;
}

.vv-error__code {
    font-family: var(--vv-font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--vv-primary) 0%, var(--vv-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.vv-error__title {
    font-family: var(--vv-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.vv-error__text {
    color: var(--vv-text-muted);
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-inline: auto;
}

.vv-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    font-family: var(--vv-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--vv-primary) 0%, var(--vv-primary-dark) 100%);
    border-radius: var(--vv-radius-sm);
    border: 1px solid rgba(139, 92, 246, 0.4);
    transition: filter 0.15s ease;
}

.vv-btn:hover {
    color: #fff;
    filter: brightness(1.1);
}

.vv-listing {
    padding-block: 3rem 4rem;
    background:
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        var(--vv-bg);
}

.vv-listing__header {
    text-align: center;
    margin-bottom: 2rem;
}

.vv-listing__title {
    font-family: var(--vv-font-heading);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--vv-text);
    margin-bottom: 0.5rem;
}

.vv-listing__intro {
    font-size: 0.92rem;
    color: var(--vv-text-muted);
    max-width: 520px;
    margin-inline: auto;
}

.vv-offers {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vv-offer {
    background: var(--vv-bg-card);
    border: 1px solid var(--vv-border);
    border-radius: var(--vv-radius);
    overflow: hidden;
    box-shadow: var(--vv-shadow);
    position: relative;
}

.vv-offer::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vv-primary) 0%, var(--vv-accent) 50%, var(--vv-primary) 100%);
}

.vv-offer__row {
    display: grid;
    grid-template-columns: 52px 150px 1.1fr 1.6fr 90px 160px;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
}

.vv-offer__col {
    min-width: 0;
}

.vv-offer__label {
    display: none;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vv-text-muted);
    margin-bottom: 0.35rem;
}

.vv-offer__rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    font-family: var(--vv-font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--vv-primary) 0%, #5b21b6 100%);
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.45);
}

.vv-offer__rank-label {
    display: none;
}

.vv-offer__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--vv-border);
    border-radius: var(--vv-radius-sm);
}

.vv-offer__image {
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 56px;
    object-fit: contain;
}

.vv-offer__image-wrap--brand {
    background: #fff;
}

.vv-offer__name {
    font-family: var(--vv-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vv-text);
    line-height: 1.3;
}

.vv-offer__bonus {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--vv-accent);
    line-height: 1.45;
}

.vv-offer__score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1rem;
    padding: 0.5rem 0.65rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: var(--vv-radius-sm);
}

.vv-offer__score-value {
    font-family: var(--vv-font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--vv-accent);
    line-height: 1;
}

.vv-offer__score-max {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--vv-text-muted);
}

.vv-offer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--vv-font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: var(--vv-radius-sm);
    border: 1px solid rgba(16, 185, 129, 0.45);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    transition: filter 0.15s ease, transform 0.15s ease;
}

.vv-offer__btn:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.vv-offer__disclaimer {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid var(--vv-border);
}

.vv-offer__disclaimer p {
    font-size: 0.72rem;
    line-height: 1.55;
    color: rgba(148, 163, 184, 0.85);
}

@media (max-width: 992px) {
    .vv-offer__row {
        grid-template-columns: 48px 130px 1fr 1.4fr 80px 140px;
        gap: 0.75rem;
        padding: 1rem 1.15rem;
    }

    .vv-offer__name {
        font-size: 1rem;
    }

    .vv-offer__bonus {
        font-size: 0.82rem;
    }

    .vv-offer__btn {
        font-size: 0.75rem;
        padding: 0.65rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .vv-listing {
        padding-block: 2.5rem 3rem;
    }

    .vv-topbar__text {
        font-size: 0.72rem;
    }

    .vv-nav-toggle {
        display: flex;
    }

    .vv-nav {
        position: fixed;
        inset: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(12, 14, 26, 0.97);
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: calc(var(--vv-header-height) + 2rem);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 100;
    }

    .vv-nav--open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .vv-nav__list {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 0.25rem;
    }

    .vv-nav__link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 1.25rem;
        font-size: 1.05rem;
        border: 1px solid var(--vv-border);
        background: var(--vv-bg-card);
    }

    .vv-hero {
        padding-block: 2rem 2.5rem;
    }

    .vv-logo__tagline {
        display: none;
    }

    .vv-footer__policy-list {
        flex-direction: column;
        gap: 0.65rem;
    }

    .vv-footer__badges {
        gap: 0.5rem;
    }

    .vv-cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .vv-cookie-banner__actions {
        width: 100%;
    }

    .vv-cookie-banner__btn {
        flex: 1;
    }

    .vv-offer__row {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.25rem;
    }

    .vv-offer__col--rank {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .vv-offer__rank-label {
        display: block;
        font-family: var(--vv-font-heading);
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--vv-text-muted);
    }

    .vv-offer__col--image,
    .vv-offer__col--name,
    .vv-offer__col--bonus,
    .vv-offer__col--score {
        display: flex;
        flex-direction: column;
    }

    .vv-offer__label {
        display: block;
    }

    .vv-offer__col--image .vv-offer__image-wrap {
        width: 100%;
    }

    .vv-offer__col--score .vv-offer__score {
        align-self: flex-start;
    }

    .vv-offer__col--cta {
        margin-top: 0.25rem;
    }

    .vv-offer__btn {
        font-size: 0.9rem;
        padding: 0.85rem 1.25rem;
    }

    .vv-offer__disclaimer {
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 400px) {
    .vv-logo__name {
        font-size: 1rem;
    }

    .vv-logo__icon {
        width: 36px;
        height: 36px;
    }

    .vv-footer__badge-img {
        height: 34px;
    }
}
