/* ==========================================================================
   Vavada Content CSS — uniqueness layer
   Iteration 1: Author block, Spec sheet, Welcome Bonus, Sticky CTA
   ========================================================================== */

html { scroll-behavior: smooth; }

/* ==========================================================================
   Gallery section header (between Brand Stats and slot grid)
   ========================================================================== */
.vc-gallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding: 30px 16px 18px;
    margin: 0 0 8px;
    border-bottom: 1px solid rgba(251,191,36,.12);
}
.vc-gallery-head-text {
    flex: 1;
    min-width: 0;
}
.vc-gallery-eyebrow {
    display: inline-block;
    color: var(--vc-accent);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.vc-gallery-title {
    color: #fff;
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 800;
    margin: 0 0 6px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}
.vc-gallery-sub {
    color: rgba(255,255,255,.6);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
    max-width: 720px;
}
.vc-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--vc-accent) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    border: 1px solid rgba(251,191,36,.3) !important;
    background: rgba(251,191,36,.06);
    padding: 8px 14px;
    border-radius: 999px;
    transition: all .2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}
.vc-gallery-link:hover {
    background: rgba(251,191,36,.15);
    border-color: var(--vc-accent) !important;
    transform: translateX(2px);
    color: var(--vc-accent) !important;
}
.vc-gallery-link svg { transition: transform .2s ease; }
.vc-gallery-link:hover svg { transform: translateX(2px); }
@media (max-width: 640px) {
    .vc-gallery-head { padding: 24px 14px 14px; }
    .vc-gallery-link { width: 100%; justify-content: center; }
}

/* Smooth transition between Brand Stats Strip and vs_content */
.vc-brand-hero {
    margin-bottom: 0 !important;
    border-bottom: none !important;
}
.vc-brand-hero::after {
    content: "";
    display: block;
    height: 24px;
    margin-bottom: -24px;
    background: linear-gradient(180deg, transparent 0%, rgba(13,21,37,.4) 100%);
    pointer-events: none;
}

/* ==========================================================================
   Hero banner with H1 overlay (image background + centered text)
   ========================================================================== */
.vc-hero-banner {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    min-height: 320px;
}
.vc-hero-banner picture,
.vc-hero-banner span[itemprop="image"] {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}
.vc-hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.vc-hero-overlay {
    position: relative;
    z-index: 2;
    min-height: 320px;
    padding: 30px 24px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    /* Stronger vignette + heavier center darkening to drown out EPIC WIN gold */
    background:
        radial-gradient(ellipse at center,
            rgba(13,21,37,.85) 0%,
            rgba(13,21,37,.55) 55%,
            rgba(13,21,37,.85) 100%),
        linear-gradient(180deg,
            rgba(13,21,37,.45) 0%,
            rgba(13,21,37,.7) 100%);
}
.vc-hero-overlay > * {
    position: relative;
    z-index: 2;
}
.vc-hero-eyebrow {
    display: inline-block;
    background: rgba(251,191,36,.18);
    border: 1px solid rgba(251,191,36,.5);
    color: var(--vc-accent);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin: 0 0 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
/* H1 sits inside a glass-frame for guaranteed readability over any image */
.vc-hero-h1 {
    color: #fff;
    font-size: clamp(24px, 4.8vw, 44px);
    font-weight: 900;
    line-height: 1.18;
    margin: 0;
    padding: 18px 28px;
    letter-spacing: -0.5px;
    max-width: 920px;
    background: linear-gradient(135deg, rgba(13,21,37,.65) 0%, rgba(30,10,60,.55) 100%);
    border: 1px solid rgba(251,191,36,.25);
    border-radius: 14px;
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    box-shadow: 0 8px 28px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
    text-shadow: 0 2px 12px rgba(0,0,0,.7);
}
.vc-hero-h1-brand {
    background: linear-gradient(180deg, #fff 0%, #fcd34d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}
.vc-hero-h1-sub {
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-weight: 800;
    display: inline-block;
}
@media (max-width: 720px) {
    .vc-hero-banner,
    .vc-hero-overlay {
        min-height: 260px;
    }
    .vc-hero-overlay {
        padding: 22px 16px 26px;
    }
    .vc-hero-h1 {
        padding: 14px 18px;
    }
}

:root {
    --vc-bg-deep: #0d1525;
    --vc-bg-card: #16213a;
    --vc-bg-card-hover: #1d2949;
    --vc-bg-accent: #1a2440;
    --vc-text: #e8edf5;
    --vc-text-muted: #94a3b8;
    --vc-text-dim: #64748b;
    --vc-accent: #fbbf24;
    --vc-accent-2: #f59e0b;
    --vc-success: #22c55e;
    --vc-danger: #ef4444;
    --vc-info: #3b82f6;
    --vc-purple: #a855f7;
    --vc-border: #2d3a5c;
    --vc-border-soft: rgba(255,255,255,.08);
    --vc-shadow: 0 4px 16px rgba(0,0,0,.35);
    --vc-shadow-hover: 0 8px 28px rgba(0,0,0,.5);
    --vc-radius: 12px;
    --vc-radius-lg: 18px;
    --vc-gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    --vc-gradient-card: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 100%);
    --vc-gradient-success: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --vc-gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --vc-gradient-purple: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
}

/* ==========================================================================
   Brand Hero Block — full-bleed brand intro (replaces jackpot counter)
   ========================================================================== */
.vc-brand-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 24px;
    padding: 32px 16px 30px;
    background:
        linear-gradient(135deg, #1e0a3c 0%, #0d1525 50%, #1a0f2e 100%);
    overflow: hidden;
    color: var(--vc-text);
    border-bottom: 1px solid rgba(251,191,36,.18);
}
.vc-bh-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.vc-bh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
}
.vc-bh-orb-1 {
    width: 480px;
    height: 480px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(168,85,247,.6) 0%, transparent 70%);
}
.vc-bh-orb-2 {
    width: 600px;
    height: 600px;
    bottom: -180px;
    right: -150px;
    background: radial-gradient(circle, rgba(251,191,36,.45) 0%, transparent 70%);
}
.vc-bh-orb-3 {
    width: 360px;
    height: 360px;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(236,72,153,.25) 0%, transparent 70%);
}
.vc-bh-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.vc-bh-tagline {
    display: inline-block;
    background: rgba(251,191,36,.14);
    border: 1px solid rgba(251,191,36,.4);
    color: var(--vc-accent);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    margin: 0 0 18px;
    text-transform: uppercase;
}
.vc-bh-headline {
    font-size: clamp(24px, 4.5vw, 42px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.vc-bh-highlight {
    background: var(--vc-gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vc-bh-sub {
    font-size: clamp(14px, 1.8vw, 17px);
    color: rgba(255,255,255,.78);
    max-width: 760px;
    margin: 0 auto 30px;
    line-height: 1.55;
}

.vc-bh-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto 22px;
}
.vc-bh-stat {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 16px 10px 14px;
    transition: transform .2s ease, border-color .2s ease;
}
.vc-bh-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(251,191,36,.35);
}
.vc-bh-stat-value {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #fff 0%, #fcd34d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 6px;
    font-variant-numeric: tabular-nums;
}
.vc-bh-plus {
    color: var(--vc-accent);
    -webkit-text-fill-color: var(--vc-accent);
    font-size: .75em;
}
.vc-bh-unit {
    font-size: .55em;
    color: rgba(255,255,255,.6);
    -webkit-text-fill-color: rgba(255,255,255,.6);
    margin-left: 2px;
    font-weight: 600;
}
.vc-bh-stat-label {
    color: rgba(255,255,255,.6);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.vc-bh-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
}
.vc-bh-trust {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.vc-bh-cta-row {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.vc-bh-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--vc-gradient-gold);
    color: #0d1525 !important;
    padding: 15px 32px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none !important;
    box-shadow: 0 8px 24px rgba(251,191,36,.4);
    transition: transform .2s ease, box-shadow .2s ease;
    animation: vc-cta-pulse 2.6s ease-in-out infinite;
}
.vc-bh-cta-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(251,191,36,.6);
    color: #0d1525 !important;
}
.vc-bh-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.08);
    color: #fff !important;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    transition: all .2s ease;
    backdrop-filter: blur(6px);
}
.vc-bh-cta-secondary:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.3) !important;
    color: #fff !important;
}

@media (max-width: 900px) {
    .vc-bh-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
    .vc-brand-hero { padding: 36px 14px 32px; }
    .vc-bh-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .vc-bh-cta-row { flex-direction: column; width: 100%; }
    .vc-bh-cta-primary, .vc-bh-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* ==========================================================================
   Table of Contents (TOC) — anchor navigation
   ========================================================================== */
.vc-toc {
    max-width: 1140px;
    margin: 24px auto;
    padding: 22px 24px;
    background: linear-gradient(180deg, #16213a 0%, #111a30 100%);
    border: 1px solid rgba(251,191,36,.18);
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(0,0,0,.35);
    position: relative;
    overflow: hidden;
}
.vc-toc::before {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
}
.vc-toc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.vc-toc-icon {
    font-size: 32px;
    line-height: 1;
}
.vc-toc-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .3px;
    margin: 0 0 2px;
}
.vc-toc-sub {
    color: rgba(255,255,255,.6);
    font-size: 13px;
    margin: 0;
}
.vc-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
    counter-reset: vctoc;
}
.vc-toc-list li {
    margin: 0;
}
.vc-toc-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all .15s ease;
    font-size: 14px;
    cursor: pointer;
}
.vc-toc-list li a:hover {
    background: rgba(251,191,36,.07);
    border-color: rgba(251,191,36,.3);
    color: #fff;
    transform: translateX(2px);
}
.vc-toc-num {
    font-size: 12px;
    font-weight: 800;
    color: #fbbf24;
    letter-spacing: .5px;
    background: rgba(251,191,36,.1);
    padding: 4px 7px;
    border-radius: 6px;
    flex-shrink: 0;
    min-width: 30px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}
.vc-toc-text {
    flex: 1;
    line-height: 1.4;
}
.vc-toc-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(251,191,36,.08);
    border: 1px solid rgba(251,191,36,.2);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M5 8h6M9 5l3 3-3 3' stroke='%23fbbf24' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    transition: all .2s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
    text-indent: -9999px;
    overflow: hidden;
    color: transparent !important;
}
.vc-toc-list li a:hover .vc-toc-arrow {
    background-color: var(--vc-accent);
    border-color: var(--vc-accent);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M5 8h6M9 5l3 3-3 3' stroke='%230d1525' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    transform: translateX(3px) scale(1.05);
}

/* "Coming soon" items — disabled style */
.vc-toc-coming a {
    cursor: default;
    opacity: .55;
}
.vc-toc-coming a:hover {
    background: transparent;
    border-color: transparent;
    color: rgba(255,255,255,.85);
    transform: none;
}
.vc-toc-soon {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.06);
    padding: 3px 7px;
    border-radius: 999px;
    letter-spacing: .8px;
    text-transform: uppercase;
    flex-shrink: 0;
}

@media (max-width: 720px) {
    .vc-toc {
        margin: 16px 12px;
        padding: 18px 18px;
    }
    .vc-toc-list {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .vc-toc-icon { font-size: 28px; }
    .vc-toc-title { font-size: 16px; }
    .vc-toc-sub { font-size: 12px; }
}

/* ==========================================================================
   Container & base
   ========================================================================== */
.vc-section {
    max-width: 1140px;
    margin: 40px auto;
    padding: 0 16px;
    color: var(--vc-text);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
}
.vc-section h2 {
    font-size: clamp(24px, 3.5vw, 34px);
    color: var(--vc-text);
    margin: 0 0 12px;
    line-height: 1.2;
    font-weight: 700;
}
.vc-section h2 .vc-highlight {
    background: var(--vc-gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vc-section h3 {
    font-size: clamp(18px, 2.2vw, 22px);
    color: var(--vc-text);
    margin: 28px 0 12px;
    font-weight: 600;
}
.vc-section p {
    color: var(--vc-text);
    margin: 0 0 14px;
}
.vc-section a {
    color: var(--vc-accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(251,191,36,.4);
    transition: border-color .2s;
}
.vc-section a:hover {
    border-bottom-color: var(--vc-accent);
}
.vc-section ul, .vc-section ol {
    color: var(--vc-text);
    padding-left: 24px;
    margin: 0 0 14px;
}
.vc-section li {
    margin-bottom: 6px;
}
.vc-section mark {
    background: rgba(251,191,36,.18);
    color: var(--vc-accent);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
}
.vc-section strong {
    color: #fff;
    font-weight: 700;
}

/* Section header (H2 with intro line) */
.vc-h2-block {
    margin: 0 0 18px;
}
.vc-h2-sub {
    color: var(--vc-text-muted);
    font-size: 16px;
    margin: 0;
}

/* ==========================================================================
   Author + Date block
   ========================================================================== */
.vc-author {
    display: grid;
    grid-template-columns: 84px 1fr auto;
    gap: 18px;
    align-items: center;
    background: var(--vc-bg-card);
    background-image: var(--vc-gradient-card);
    border: 1px solid var(--vc-border-soft);
    border-radius: var(--vc-radius);
    padding: 18px 22px;
    margin: 30px auto;
    max-width: 1140px;
    box-shadow: var(--vc-shadow);
}
.vc-author-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--vc-accent);
    background: var(--vc-bg-accent);
}
.vc-author-photo[src=""], .vc-author-photo:not([src]) {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}
.vc-author-info {
    min-width: 0;
}
.vc-author-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
}
.vc-author-title {
    color: var(--vc-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 6px;
}
.vc-author-bio {
    color: var(--vc-text-muted);
    font-size: 14px;
    margin: 0;
}
.vc-author-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--vc-text-muted);
    text-align: right;
    min-width: 200px;
}
.vc-author-meta time {
    color: var(--vc-text);
    font-weight: 600;
}
.vc-live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--vc-success);
    font-weight: 600;
    justify-content: flex-end;
}
.vc-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--vc-success);
    border-radius: 50%;
    animation: vc-pulse 1.8s ease-in-out infinite;
}
@keyframes vc-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
    50% { opacity: .6; transform: scale(1.3); box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
@media (max-width: 768px) {
    .vc-author {
        grid-template-columns: 64px 1fr;
        gap: 14px;
        padding: 14px 16px;
    }
    .vc-author-photo {
        width: 64px;
        height: 64px;
        border-width: 2px;
    }
    .vc-author-meta {
        grid-column: 1 / -1;
        text-align: left;
        min-width: 0;
        border-top: 1px solid var(--vc-border-soft);
        padding-top: 12px;
    }
    .vc-live-indicator {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   Animated counters row (under H1)
   ========================================================================== */
.vc-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 24px auto 8px;
    max-width: 1140px;
    padding: 0 16px;
}
.vc-counter {
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border-soft);
    border-radius: var(--vc-radius);
    padding: 18px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vc-counter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vc-gradient-gold);
}
.vc-counter-value {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    background: var(--vc-gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin: 0 0 4px;
}
.vc-counter-label {
    color: var(--vc-text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
@media (max-width: 600px) {
    .vc-counters { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Spec sheet table (large)
   ========================================================================== */
.vc-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--vc-bg-card);
    border-radius: var(--vc-radius);
    overflow: hidden;
    margin: 20px 0;
    box-shadow: var(--vc-shadow);
}
.vc-spec-table tr {
    transition: background .15s;
}
.vc-spec-table tr:nth-child(even) {
    background: rgba(255,255,255,.025);
}
.vc-spec-table tr:hover {
    background: rgba(251,191,36,.05);
}
.vc-spec-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--vc-border-soft);
    color: var(--vc-text);
    font-size: 15px;
    vertical-align: middle;
}
.vc-spec-table tr:last-child td {
    border-bottom: none;
}
.vc-spec-table td:first-child {
    color: var(--vc-text-muted);
    font-weight: 500;
    width: 42%;
}
.vc-spec-table td:last-child {
    color: #fff;
    font-weight: 600;
}
.vc-spec-table .vc-icon {
    margin-right: 8px;
    display: inline-block;
}
@media (max-width: 600px) {
    .vc-spec-table td { padding: 10px 12px; font-size: 13px; }
    .vc-spec-table td:first-child { width: auto; font-size: 12px; }
}

/* ==========================================================================
   Pros / Cons grid
   ========================================================================== */
.vc-procons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 28px 0;
}
.vc-pros, .vc-cons {
    background: var(--vc-bg-card);
    border-radius: var(--vc-radius);
    padding: 20px 22px;
    border-top: 4px solid;
}
.vc-pros { border-top-color: var(--vc-success); }
.vc-cons { border-top-color: var(--vc-danger); }
.vc-pros-title, .vc-cons-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.vc-pros-title { color: var(--vc-success); }
.vc-cons-title { color: var(--vc-danger); }
.vc-procons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vc-procons li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--vc-text);
    font-size: 14.5px;
    border-bottom: 1px solid var(--vc-border-soft);
}
.vc-procons li:last-child { border-bottom: none; }
.vc-pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--vc-gradient-success);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}
.vc-cons li::before {
    content: "×";
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--vc-gradient-danger);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}
@media (max-width: 720px) {
    .vc-procons { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Editor's Verdict card
   ========================================================================== */
.vc-verdict {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: 28px;
    margin: 30px 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.vc-verdict::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(251,191,36,.12) 0%, transparent 60%);
    pointer-events: none;
}
.vc-verdict-rating {
    text-align: center;
    position: relative;
    z-index: 1;
}
.vc-verdict-score {
    font-size: 56px;
    font-weight: 900;
    background: var(--vc-gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin: 0;
}
.vc-verdict-of {
    color: var(--vc-text-muted);
    font-size: 14px;
    margin: 4px 0 8px;
}
.vc-stars {
    display: inline-flex;
    gap: 3px;
    font-size: 22px;
    color: var(--vc-accent);
}
.vc-verdict-content {
    position: relative;
    z-index: 1;
}
.vc-verdict-title {
    color: var(--vc-accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 8px;
}
.vc-verdict-text {
    color: var(--vc-text);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0 0 14px;
}
.vc-verdict-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: var(--vc-text-muted);
    flex-wrap: wrap;
}
.vc-verdict-meta strong { color: #fff; }
@media (max-width: 720px) {
    .vc-verdict {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }
    .vc-verdict-meta { justify-content: center; }
}

/* ==========================================================================
   Trust badges row
   ========================================================================== */
.vc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}
.vc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border-soft);
    color: var(--vc-text);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.vc-badge.vc-badge-success { border-color: rgba(34,197,94,.35); color: var(--vc-success); }
.vc-badge.vc-badge-warn { border-color: rgba(251,191,36,.35); color: var(--vc-accent); }

/* ==========================================================================
   Bonus Calculator visual
   ========================================================================== */
.vc-bonus-calc {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    border: 1px solid rgba(251,191,36,.3);
    border-radius: var(--vc-radius-lg);
    padding: 30px 24px;
    margin: 28px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vc-bonus-calc::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 20%, rgba(251,191,36,.15) 0%, transparent 50%),
                      radial-gradient(circle at 75% 80%, rgba(168,85,247,.18) 0%, transparent 55%);
    pointer-events: none;
}
.vc-bonus-calc-title {
    color: var(--vc-accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 18px;
    position: relative;
    z-index: 1;
}
.vc-bonus-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.vc-bonus-step {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--vc-radius);
    padding: 18px 22px;
    min-width: 160px;
}
.vc-bonus-step-label {
    color: var(--vc-text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 6px;
}
.vc-bonus-step-value {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.vc-bonus-step.vc-bonus-result .vc-bonus-step-value {
    background: var(--vc-gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vc-bonus-arrow {
    font-size: 24px;
    color: var(--vc-accent);
    font-weight: 800;
}
.vc-bonus-extra {
    margin-top: 16px;
    color: var(--vc-text);
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.vc-bonus-extra strong { color: var(--vc-accent); }

/* ==========================================================================
   Bonus types table (compact)
   ========================================================================== */
.vc-bonus-types {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    background: var(--vc-bg-card);
    border-radius: var(--vc-radius);
    overflow: hidden;
}
.vc-bonus-types thead th {
    background: rgba(251,191,36,.1);
    color: var(--vc-accent);
    text-align: left;
    padding: 14px 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
    border-bottom: 1px solid var(--vc-border);
}
.vc-bonus-types td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--vc-border-soft);
    color: var(--vc-text);
    font-size: 14.5px;
}
.vc-bonus-types tr:last-child td { border-bottom: none; }
.vc-bonus-types tr:hover td { background: rgba(255,255,255,.03); }
.vc-bonus-types .vc-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.vc-tag-gold { background: var(--vc-gradient-gold); color: #0d1525; }
.vc-tag-purple { background: var(--vc-gradient-purple); color: #fff; }
.vc-tag-success { background: var(--vc-gradient-success); color: #fff; }
.vc-tag-info { background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; }

/* Mobile responsive — turn rows into cards */
@media (max-width: 720px) {
    .vc-bonus-types thead { display: none; }
    .vc-bonus-types tbody { display: block; }
    .vc-bonus-types tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 10px;
        padding: 12px 14px;
        border-bottom: 1px solid var(--vc-border-soft);
    }
    .vc-bonus-types tr:last-child { border-bottom: none; }
    .vc-bonus-types td {
        padding: 0;
        border: none;
        font-size: 13px;
    }
    .vc-bonus-types td:first-child {
        grid-column: 1 / -1;
        font-size: 14.5px;
        font-weight: 600;
        color: #fff;
        padding-bottom: 4px;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--vc-border-soft);
    }
    .vc-bonus-types td:nth-child(2)::before { content: "Iznos: "; color: var(--vc-text-muted); }
    .vc-bonus-types td:nth-child(3)::before { content: "Wager: "; color: var(--vc-text-muted); }
    .vc-bonus-types td:nth-child(4)::before { content: "Rok: "; color: var(--vc-text-muted); }
}

/* ==========================================================================
   HowTo Steps (numbered circles)
   ========================================================================== */
.vc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0;
    counter-reset: vcstep;
}
.vc-step {
    background: var(--vc-bg-card);
    border-radius: var(--vc-radius);
    padding: 22px 20px 20px;
    position: relative;
    border: 1px solid var(--vc-border-soft);
    counter-increment: vcstep;
    transition: transform .2s, box-shadow .2s;
}
.vc-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--vc-shadow-hover);
    border-color: rgba(251,191,36,.35);
}
.vc-step::before {
    content: counter(vcstep);
    position: absolute;
    top: -16px;
    left: 20px;
    width: 38px;
    height: 38px;
    background: var(--vc-gradient-gold);
    color: #0d1525;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(251,191,36,.4);
}
.vc-step-icon {
    font-size: 28px;
    margin: 8px 0 10px;
}
.vc-step-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
}
.vc-step-text {
    color: var(--vc-text-muted);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 900px) { .vc-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .vc-steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   Tip / "Did you know" callout
   ========================================================================== */
.vc-tip {
    display: flex;
    gap: 14px;
    background: linear-gradient(135deg, rgba(168,85,247,.12) 0%, rgba(59,130,246,.08) 100%);
    border-left: 4px solid var(--vc-purple);
    border-radius: var(--vc-radius);
    padding: 16px 20px;
    margin: 22px 0;
    align-items: flex-start;
}
.vc-tip-icon {
    font-size: 22px;
    flex-shrink: 0;
}
.vc-tip-content {
    flex: 1;
    min-width: 0;
}
.vc-tip-label {
    color: var(--vc-purple);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px;
}
.vc-tip-text {
    color: var(--vc-text);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
}

/* ==========================================================================
   Wagering progress bar (visual demo of 35x rollover)
   ========================================================================== */
.vc-wager {
    background: var(--vc-bg-card);
    border-radius: var(--vc-radius);
    padding: 20px 22px;
    margin: 22px 0;
    border: 1px solid var(--vc-border-soft);
}
.vc-wager-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
}
.vc-wager-formula {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--vc-text);
    font-size: 14px;
    margin: 0 0 14px;
}
.vc-wager-formula strong { color: var(--vc-accent); font-size: 16px; }
.vc-wager-bar {
    height: 14px;
    background: rgba(255,255,255,.05);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.vc-wager-bar-fill {
    height: 100%;
    background: var(--vc-gradient-gold);
    border-radius: 999px;
    width: 35%;
    position: relative;
    box-shadow: 0 0 10px rgba(251,191,36,.4);
}
.vc-wager-meta {
    display: flex;
    justify-content: space-between;
    margin: 8px 0 0;
    font-size: 12.5px;
    color: var(--vc-text-muted);
}

/* ==========================================================================
   Sticky CTA bar (mobile only)
   ========================================================================== */
.vc-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(180deg, rgba(13,21,37,.95) 0%, #0d1525 100%);
    border-top: 1px solid rgba(251,191,36,.3);
    padding: 12px 16px;
    display: none;
    box-shadow: 0 -4px 16px rgba(0,0,0,.5);
    backdrop-filter: blur(10px);
}
.vc-sticky-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.vc-sticky-text {
    flex: 1;
    min-width: 0;
}
.vc-sticky-bonus {
    color: var(--vc-accent);
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.vc-sticky-sub {
    color: var(--vc-text-muted);
    font-size: 11px;
    margin: 0;
}
.vc-sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--vc-gradient-gold);
    color: #0d1525;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 4px 12px rgba(251,191,36,.4);
    animation: vc-cta-pulse 2.4s ease-in-out infinite;
    white-space: nowrap;
}
.vc-sticky-btn:hover {
    color: #0d1525;
    border: none;
}
@keyframes vc-cta-pulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(251,191,36,.4); }
    50% { box-shadow: 0 4px 22px rgba(251,191,36,.7); }
}
@media (max-width: 900px) {
    .vc-sticky-cta { display: block; }
    body { padding-bottom: 76px; } /* leave room for sticky bar */
}

/* ==========================================================================
   Inline CTA button (within content) — with animated SVG-style arrow
   ========================================================================== */
.vc-cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--vc-gradient-gold);
    color: #0d1525 !important;
    padding: 14px 28px 14px 32px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 4px 14px rgba(251,191,36,.35);
    border: none !important;
    text-decoration: none !important;
    transition: transform .15s, box-shadow .15s;
}
.vc-cta-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(251,191,36,.55);
    color: #0d1525 !important;
}
.vc-cta-inline::after {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(13,21,37,.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .25s cubic-bezier(.4,0,.2,1), background .15s;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8h10M9 4l4 4-4 4' stroke='%230d1525' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}
.vc-cta-inline:hover::after {
    transform: translateX(3px);
    background-color: rgba(13,21,37,.32);
}

/* Strip trailing → text from CTAs that still have it (we now use CSS arrow) */
.vc-cta-inline span.cta-arrow,
.vc-bh-cta-primary span.cta-arrow,
.vc-fv-cta span.cta-arrow,
.vc-jp-cta span.cta-arrow {
    display: none;
}

/* Brand hero primary CTA — same arrow treatment */
.vc-bh-cta-primary {
    gap: 10px !important;
}
.vc-bh-cta-primary::after {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(13,21,37,.18);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8h10M9 4l4 4-4 4' stroke='%230d1525' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.vc-bh-cta-primary:hover::after {
    transform: translateX(3px);
}

/* Final verdict CTA arrow */
.vc-fv-cta {
    gap: 10px !important;
}
.vc-fv-cta::after {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(13,21,37,.18);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8h10M9 4l4 4-4 4' stroke='%230d1525' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.vc-fv-cta:hover::after {
    transform: translateX(3px);
}

/* Sticky CTA (mobile) — same SVG arrow */
.vc-sticky-btn {
    gap: 8px !important;
}
.vc-sticky-btn::after {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(13,21,37,.18);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8h10M9 4l4 4-4 4' stroke='%230d1525' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

/* ==========================================================================
   Welcome 3-Pack (3 welcome bonuses showcase, mirrors official Vavada)
   ========================================================================== */
.vc-welcome-3pack {
    margin: 28px 0;
    background: linear-gradient(135deg, rgba(168,85,247,.08) 0%, rgba(251,191,36,.05) 100%);
    border: 1px solid rgba(251,191,36,.18);
    border-radius: var(--vc-radius-lg);
    padding: 22px 22px 26px;
}
.vc-welcome-3pack-title {
    text-align: center;
    color: var(--vc-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 18px;
}
.vc-welcome-3pack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.vc-w3-card {
    background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 22px 16px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
}
.vc-w3-card:hover {
    transform: translateY(-3px);
    border-color: rgba(251,191,36,.4);
}
.vc-w3-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}
.vc-w3-cashback::before { background: linear-gradient(90deg, #ec4899 0%, #f472b6 100%); }
.vc-w3-deposit::before  { background: var(--vc-gradient-gold); }
.vc-w3-spins::before    { background: linear-gradient(90deg, #a855f7 0%, #6366f1 100%); }
.vc-w3-icon {
    font-size: 36px;
    line-height: 1;
    margin: 0 0 6px;
}
.vc-w3-value {
    font-size: clamp(30px, 5vw, 42px);
    font-weight: 900;
    line-height: 1;
    margin: 0 0 4px;
    background: var(--vc-gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vc-w3-cashback .vc-w3-value {
    background: linear-gradient(180deg, #f9a8d4 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vc-w3-spins .vc-w3-value {
    background: linear-gradient(180deg, #c4b5fd 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vc-w3-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255,255,255,.85);
    margin: 0 0 8px;
    text-transform: uppercase;
}
.vc-w3-text {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    line-height: 1.4;
    margin: 0;
}
@media (max-width: 720px) {
    .vc-welcome-3pack-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* ==========================================================================
   Social Login cards (Google + Telegram registration)
   ========================================================================== */
.vc-social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 22px 0;
}
.vc-social-card {
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border-soft);
    border-radius: var(--vc-radius);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    transition: all .2s ease;
}
.vc-social-card:hover {
    border-color: rgba(251,191,36,.4);
    transform: translateY(-2px);
    box-shadow: var(--vc-shadow);
}
.vc-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}
.vc-social-google .vc-social-icon {
    background: linear-gradient(135deg, #ea4335 0%, #fbbc04 30%, #34a853 60%, #4285f4 100%);
}
.vc-social-telegram .vc-social-icon {
    background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
}
.vc-social-info {
    flex: 1;
    min-width: 0;
}
.vc-social-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}
.vc-social-meta {
    font-size: 12.5px;
    color: var(--vc-text-muted);
    line-height: 1.4;
}
.vc-social-tag {
    background: var(--vc-gradient-gold);
    color: #0d1525;
    font-size: 9.5px;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 999px;
    letter-spacing: 1px;
    flex-shrink: 0;
    align-self: flex-start;
}
.vc-social-tag-secondary {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
}
@media (max-width: 720px) {
    .vc-social-login { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ accordion (CSS-only via <details>)
   ========================================================================== */
.vc-faq-item {
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border-soft);
    border-radius: 10px;
    margin: 0 0 8px;
    transition: border-color .15s ease;
}
.vc-faq-item[open] {
    border-color: rgba(251,191,36,.35);
}
.vc-faq-item summary {
    cursor: pointer;
    padding: 14px 18px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}
.vc-faq-item summary::-webkit-details-marker { display: none; }
.vc-faq-item summary::after {
    content: "+";
    font-size: 22px;
    color: var(--vc-accent);
    font-weight: 300;
    line-height: 1;
    transition: transform .2s ease;
    margin-left: 14px;
    flex-shrink: 0;
}
.vc-faq-item[open] summary::after {
    content: "−";
}
.vc-faq-item summary:hover {
    color: var(--vc-accent);
}
.vc-faq-item p {
    margin: 0;
    padding: 0 18px 16px;
    color: var(--vc-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   Chapter marker (Backlinko-style "Chapter X" label above H2)
   ========================================================================== */
.vc-chapter-marker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251,191,36,.1);
    border: 1px solid rgba(251,191,36,.3);
    color: var(--vc-accent);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 999px;
    margin: 0 0 10px;
}
.vc-chapter-marker::before {
    content: "";
    width: 14px;
    height: 1px;
    background: var(--vc-accent);
    display: inline-block;
}

/* ==========================================================================
   Quote / Stat block (Backlinko-style for statistics + source)
   ========================================================================== */
.vc-stat-quote {
    display: flex;
    gap: 18px;
    background: linear-gradient(135deg, rgba(34,197,94,.08) 0%, rgba(34,197,94,.02) 100%);
    border-left: 4px solid var(--vc-success);
    border-radius: var(--vc-radius);
    padding: 18px 22px;
    margin: 24px 0;
    align-items: center;
}
.vc-stat-quote-num {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 900;
    color: var(--vc-success);
    line-height: 1;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}
.vc-stat-quote-body {
    flex: 1;
    min-width: 0;
}
.vc-stat-quote-text {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 4px;
    font-weight: 500;
}
.vc-stat-quote-source {
    color: var(--vc-text-muted);
    font-size: 12px;
    margin: 0;
}
.vc-stat-quote-source::before { content: "— "; }

/* ==========================================================================
   Game categories grid (5 cards)
   ========================================================================== */
.vc-cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 24px 0;
}
.vc-cat-card {
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border-soft);
    border-radius: var(--vc-radius);
    padding: 18px 14px;
    text-align: center;
    transition: transform .2s ease, border-color .2s ease;
    position: relative;
    overflow: hidden;
}
.vc-cat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(251,191,36,.4);
}
.vc-cat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background: var(--vc-gradient-gold);
}
.vc-cat-icon {
    font-size: 30px;
    line-height: 1;
    margin: 0 0 8px;
}
.vc-cat-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
}
.vc-cat-count {
    color: var(--vc-accent);
    font-size: 12px;
    font-weight: 700;
}
@media (max-width: 900px) { .vc-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .vc-cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Top Slots table with embedded RTP bar
   ========================================================================== */
.vc-slots-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 22px 0;
    background: var(--vc-bg-card);
    border-radius: var(--vc-radius);
    overflow: hidden;
}
.vc-slots-table thead th {
    background: rgba(251,191,36,.08);
    color: var(--vc-accent);
    text-align: left;
    padding: 12px 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
    border-bottom: 1px solid var(--vc-border);
}
.vc-slots-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--vc-border-soft);
    color: var(--vc-text);
    font-size: 14px;
    vertical-align: middle;
}
.vc-slots-table tr:last-child td { border-bottom: none; }
.vc-slots-table tr:hover td { background: rgba(255,255,255,.03); }
.vc-slots-table .vc-slot-name {
    color: #fff;
    font-weight: 600;
}
.vc-slots-table .vc-slot-rank {
    color: var(--vc-accent);
    font-weight: 800;
    font-size: 13px;
    min-width: 24px;
    display: inline-block;
    font-variant-numeric: tabular-nums;
}
.vc-rtp-cell {
    min-width: 130px;
}
.vc-rtp-bar {
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    height: 7px;
    overflow: hidden;
    position: relative;
    margin-top: 4px;
}
.vc-rtp-fill {
    height: 100%;
    background: var(--vc-gradient-gold);
    border-radius: 999px;
}
.vc-rtp-value {
    color: var(--vc-success);
    font-weight: 700;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}
.vc-vol {
    display: inline-flex;
    gap: 2px;
    align-items: center;
}
.vc-vol-bar {
    width: 4px;
    height: 12px;
    border-radius: 1px;
    background: rgba(255,255,255,.15);
}
.vc-vol-bar.on { background: var(--vc-accent); }
@media (max-width: 720px) {
    .vc-slots-table thead { display: none; }
    .vc-slots-table tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 10px;
        padding: 10px 12px;
        border-bottom: 1px solid var(--vc-border-soft);
    }
    .vc-slots-table td {
        padding: 0;
        border: none;
        font-size: 13px;
    }
    .vc-slots-table td:first-child { grid-column: 1 / -1; }
}

/* ==========================================================================
   Crash games volatility visualization
   ========================================================================== */
.vc-crash-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 22px 0;
}
.vc-crash-card {
    background: linear-gradient(135deg, rgba(239,68,68,.08) 0%, rgba(168,85,247,.05) 100%);
    border: 1px solid rgba(239,68,68,.2);
    border-radius: var(--vc-radius);
    padding: 18px 18px 16px;
}
.vc-crash-name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vc-crash-meta {
    color: var(--vc-text-muted);
    font-size: 12.5px;
    margin: 0 0 12px;
}
.vc-crash-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px 0;
    font-size: 12px;
    color: var(--vc-text-muted);
}
.vc-crash-stat-row strong {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}
@media (max-width: 720px) { .vc-crash-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Provider card grid (15 brands, monochrome → color on hover)
   ========================================================================== */
.vc-providers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 22px 0;
}
.vc-provider-card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--vc-border-soft);
    border-radius: 10px;
    padding: 14px 8px;
    text-align: center;
    transition: all .2s ease;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.vc-provider-card:hover {
    background: rgba(251,191,36,.06);
    border-color: rgba(251,191,36,.4);
    transform: translateY(-2px);
}
.vc-provider-card img {
    max-width: 70%;
    max-height: 32px;
    width: auto;
    height: auto;
    filter: grayscale(.7) brightness(1.2);
    transition: filter .2s ease;
}
.vc-provider-card:hover img {
    filter: grayscale(0) brightness(1);
}
.vc-provider-name {
    color: var(--vc-text-muted);
    font-size: 11px;
    font-weight: 600;
    margin: 0;
}
.vc-provider-card:hover .vc-provider-name {
    color: var(--vc-accent);
}
@media (max-width: 720px) { .vc-providers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .vc-providers-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Provider deep dive (3-column comparison)
   ========================================================================== */
.vc-provider-deepdive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 22px 0;
}
.vc-provider-deep {
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border-soft);
    border-radius: var(--vc-radius);
    padding: 18px 18px 16px;
    border-top: 4px solid;
}
.vc-provider-deep.vc-pdg-pragmatic { border-top-color: #f59e0b; }
.vc-provider-deep.vc-pdg-evolution { border-top-color: #ef4444; }
.vc-provider-deep.vc-pdg-hacksaw   { border-top-color: #a855f7; }
.vc-pdg-name {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 4px;
}
.vc-pdg-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--vc-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px;
}
.vc-pdg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vc-pdg-list li {
    color: var(--vc-text-muted);
    font-size: 13px;
    padding: 5px 0 5px 22px;
    position: relative;
    line-height: 1.45;
}
.vc-pdg-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--vc-accent);
}
.vc-pdg-list li strong { color: #fff; }
@media (max-width: 800px) { .vc-provider-deepdive { grid-template-columns: 1fr; } }

/* ==========================================================================
   Payment methods — main table
   ========================================================================== */
.vc-pay-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 22px 0;
    background: var(--vc-bg-card);
    border-radius: var(--vc-radius);
    overflow: hidden;
}
.vc-pay-table thead th {
    background: rgba(34,197,94,.08);
    color: var(--vc-success);
    text-align: left;
    padding: 12px 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
    border-bottom: 1px solid var(--vc-border);
}
.vc-pay-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--vc-border-soft);
    color: var(--vc-text);
    font-size: 14px;
    vertical-align: middle;
}
.vc-pay-table tr:last-child td { border-bottom: none; }
.vc-pay-table tr:hover td { background: rgba(255,255,255,.03); }
.vc-pay-method {
    color: #fff;
    font-weight: 600;
}
.vc-pay-fee-zero { color: var(--vc-success); font-weight: 700; }
.vc-pay-speed-fast { color: var(--vc-success); font-weight: 700; }
.vc-pay-speed-med { color: var(--vc-accent); font-weight: 700; }
.vc-pay-speed-slow { color: var(--vc-text-muted); font-weight: 600; }

/* Mobile responsive — turn rows into cards */
@media (max-width: 720px) {
    .vc-pay-table thead { display: none; }
    .vc-pay-table tbody { display: block; }
    .vc-pay-table tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 10px;
        padding: 12px 14px;
        border-bottom: 1px solid var(--vc-border-soft);
    }
    .vc-pay-table tr:last-child { border-bottom: none; }
    .vc-pay-table td {
        padding: 0;
        border: none;
        font-size: 13px;
    }
    .vc-pay-table td.vc-pay-method {
        grid-column: 1 / -1;
        font-size: 14.5px;
        padding-bottom: 4px;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--vc-border-soft);
    }
    .vc-pay-table td:nth-child(2)::before { content: "Min: "; color: var(--vc-text-muted); }
    .vc-pay-table td:nth-child(3)::before { content: "Max: "; color: var(--vc-text-muted); }
    .vc-pay-table td:nth-child(4)::before { content: "Brzina: "; color: var(--vc-text-muted); }
    .vc-pay-table td:nth-child(5)::before { content: "Naknada: "; color: var(--vc-text-muted); }
}

/* ==========================================================================
   Crypto coins grid
   ========================================================================== */
.vc-crypto-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin: 22px 0;
}
.vc-crypto-card {
    background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid var(--vc-border-soft);
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
    transition: all .2s ease;
}
.vc-crypto-card:hover {
    transform: translateY(-3px);
    border-color: rgba(251,191,36,.4);
}
.vc-crypto-symbol {
    width: 34px;
    height: 34px;
    margin: 0 auto 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}
.vc-c-btc  { background: linear-gradient(135deg, #f7931a, #ff7a00); }
.vc-c-eth  { background: linear-gradient(135deg, #627eea, #4456b3); }
.vc-c-usdt { background: linear-gradient(135deg, #26a17b, #1a8060); }
.vc-c-usdc { background: linear-gradient(135deg, #2775ca, #1a5a9a); }
.vc-c-ltc  { background: linear-gradient(135deg, #345d9d, #1e3f73); }
.vc-c-ton  { background: linear-gradient(135deg, #0098ea, #0077b6); }
.vc-c-trx  { background: linear-gradient(135deg, #ff060a, #c20308); }
.vc-c-bnb  { background: linear-gradient(135deg, #f3ba2f, #d49d1f); color: #0d1525; }
.vc-c-sol  { background: linear-gradient(135deg, #9945ff, #14f195); }
.vc-c-xrp  { background: linear-gradient(135deg, #25292e, #585c61); }
.vc-c-doge { background: linear-gradient(135deg, #c2a633, #a48c25); color: #0d1525; }
.vc-c-matic{ background: linear-gradient(135deg, #8247e5, #5e2eb3); }
.vc-crypto-name {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 2px;
}
.vc-crypto-ticker {
    color: var(--vc-text-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
@media (max-width: 720px) { .vc-crypto-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .vc-crypto-grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   Withdrawal speed visualization (4 bars by method)
   ========================================================================== */
.vc-withdraw-vis {
    background: var(--vc-bg-card);
    border-radius: var(--vc-radius);
    padding: 22px 24px;
    margin: 22px 0;
}
.vc-withdraw-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
}
.vc-withdraw-row {
    display: grid;
    grid-template-columns: 140px 1fr 70px;
    gap: 12px;
    align-items: center;
    margin: 10px 0;
}
.vc-withdraw-method {
    color: var(--vc-text);
    font-size: 14px;
    font-weight: 600;
}
.vc-withdraw-bar {
    height: 12px;
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.vc-withdraw-bar-fill {
    height: 100%;
    border-radius: 999px;
}
.vc-w-crypto-fill { width: 8%;  background: var(--vc-gradient-success); }
.vc-w-ewallet-fill { width: 16%; background: linear-gradient(90deg, #22c55e, #84cc16); }
.vc-w-card-fill { width: 60%; background: var(--vc-gradient-gold); }
.vc-w-wire-fill { width: 100%; background: linear-gradient(90deg, #ef4444, #dc2626); }
.vc-withdraw-time {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: right;
    font-variant-numeric: tabular-nums;
}
@media (max-width: 600px) {
    .vc-withdraw-row { grid-template-columns: 1fr; gap: 4px; }
    .vc-withdraw-time { text-align: left; }
}

/* ==========================================================================
   Mobile screenshot (real Vavada mobile UI)
   ========================================================================== */
.vc-phone-block {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
    margin: 24px 0;
}
.vc-mobile-screen {
    margin: 0;
    padding: 0;
    text-align: center;
}
.vc-mobile-screen-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:
        0 20px 60px rgba(0,0,0,.55),
        0 0 0 1px rgba(251,191,36,.08) inset;
    background: #0d1525;
}
.vc-mobile-caption {
    color: var(--vc-text-muted);
    font-size: 12px;
    line-height: 1.4;
    margin: 12px 0 0;
    text-align: center;
    font-style: italic;
}
@media (max-width: 720px) {
    .vc-phone-block {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .vc-mobile-screen-img {
        max-width: 240px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   App platform cards (Web App vs APK vs iOS)
   ========================================================================== */
.vc-app-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 22px 0;
}
.vc-app-card {
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border-soft);
    border-radius: var(--vc-radius);
    padding: 18px 16px 16px;
    border-top: 4px solid;
}
.vc-app-card.vc-app-android { border-top-color: #3ddc84; }
.vc-app-card.vc-app-ios { border-top-color: #007aff; }
.vc-app-card.vc-app-web { border-top-color: var(--vc-accent); }
.vc-app-name {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vc-app-meta {
    color: var(--vc-text-muted);
    font-size: 12px;
    margin: 0 0 10px;
}
.vc-app-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}
.vc-app-features li {
    padding: 4px 0 4px 20px;
    position: relative;
    color: var(--vc-text);
    line-height: 1.4;
}
.vc-app-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--vc-success);
    font-weight: 800;
}
.vc-app-features li.vc-app-no::before {
    content: "×";
    color: var(--vc-danger);
}
@media (max-width: 720px) { .vc-app-platforms { grid-template-columns: 1fr; } }

/* ==========================================================================
   Promo codes block
   ========================================================================== */
.vc-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 22px 0;
}
.vc-promo-card {
    background: linear-gradient(135deg, rgba(168,85,247,.1) 0%, rgba(251,191,36,.05) 100%);
    border: 1px solid rgba(251,191,36,.25);
    border-radius: var(--vc-radius);
    padding: 18px 18px 16px;
    position: relative;
    overflow: hidden;
}
.vc-promo-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(251,191,36,.15) 0%, transparent 70%);
    pointer-events: none;
}
.vc-promo-code {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13,21,37,.7);
    border: 1px dashed rgba(251,191,36,.5);
    border-radius: 8px;
    padding: 8px 14px;
    margin: 0 0 12px;
    font-family: "SF Mono", Menlo, Consolas, monospace;
    font-size: 16px;
    font-weight: 800;
    color: var(--vc-accent);
    letter-spacing: 2px;
}
.vc-promo-code-copy {
    background: var(--vc-accent);
    color: #0d1525;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-family: system-ui, sans-serif;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.vc-promo-bonus {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
}
.vc-promo-meta {
    color: var(--vc-text-muted);
    font-size: 13px;
    margin: 0 0 4px;
    line-height: 1.45;
}
.vc-promo-valid {
    display: inline-block;
    background: rgba(34,197,94,.1);
    color: var(--vc-success);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px;
}
@media (max-width: 600px) { .vc-promo-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   VIP tiers visualization (6 levels stairway)
   ========================================================================== */
.vc-vip-tiers {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin: 22px 0;
    align-items: end;
}
.vc-vip-tier {
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border-soft);
    border-radius: 10px;
    padding: 14px 8px 12px;
    text-align: center;
    position: relative;
    transition: transform .2s;
}
.vc-vip-tier:hover { transform: translateY(-3px); }
.vc-vip-tier.vc-vip-active {
    border-color: var(--vc-accent);
    background: linear-gradient(180deg, rgba(251,191,36,.12), rgba(251,191,36,.02));
    box-shadow: 0 4px 16px rgba(251,191,36,.2);
    transform: scale(1.05);
}
.vc-vip-tier-icon {
    font-size: 26px;
    line-height: 1;
    margin: 0 0 4px;
}
.vc-vip-tier-name {
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin: 0 0 4px;
}
.vc-vip-tier-cb {
    color: var(--vc-accent);
    font-size: 13px;
    font-weight: 800;
}
.vc-vip-tier-req {
    color: var(--vc-text-muted);
    font-size: 10px;
    margin-top: 4px;
}
.vc-vip-1 { padding-top: 14px; }
.vc-vip-2 { padding-top: 18px; }
.vc-vip-3 { padding-top: 22px; }
.vc-vip-4 { padding-top: 28px; }
.vc-vip-5 { padding-top: 34px; }
.vc-vip-6 { padding-top: 40px; }
@media (max-width: 720px) {
    .vc-vip-tiers { grid-template-columns: repeat(3, 1fr); }
    .vc-vip-tier { padding-top: 12px !important; }
}

/* ==========================================================================
   Security & License — trust badges grid
   ========================================================================== */
.vc-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 22px 0;
}
.vc-trust-card {
    background: linear-gradient(180deg, rgba(34,197,94,.06) 0%, rgba(34,197,94,.02) 100%);
    border: 1px solid rgba(34,197,94,.25);
    border-radius: var(--vc-radius);
    padding: 16px 14px 14px;
    text-align: center;
    transition: transform .2s, border-color .2s;
}
.vc-trust-card:hover {
    transform: translateY(-2px);
    border-color: var(--vc-success);
}
.vc-trust-icon {
    font-size: 30px;
    line-height: 1;
    margin: 0 0 6px;
}
.vc-trust-name {
    color: var(--vc-success);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.vc-trust-meta {
    color: var(--vc-text);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}
@media (max-width: 720px) { .vc-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .vc-trust-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Responsible Gaming resources block
   ========================================================================== */
.vc-rg-block {
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border-soft);
    border-radius: var(--vc-radius);
    padding: 18px 22px;
    margin: 22px 0;
    border-left: 4px solid var(--vc-info);
}
.vc-rg-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vc-rg-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 12px 0 0;
}
.vc-rg-item {
    background: rgba(59,130,246,.08);
    border: 1px solid rgba(59,130,246,.2);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--vc-text);
    font-size: 13px;
}
.vc-rg-item strong {
    display: block;
    color: #fff;
    margin-bottom: 2px;
}
.vc-rg-item a {
    color: var(--vc-info);
    border-bottom: 1px dotted var(--vc-info);
    text-decoration: none;
}
@media (max-width: 720px) { .vc-rg-list { grid-template-columns: 1fr; } }

/* ==========================================================================
   Final Verdict (big closing block)
   ========================================================================== */
.vc-final-verdict {
    background:
        radial-gradient(circle at 20% 0%, rgba(251,191,36,.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(168,85,247,.08) 0%, transparent 55%),
        linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(251,191,36,.25);
    border-radius: 20px;
    padding: 32px 28px;
    margin: 36px 0;
    position: relative;
    overflow: hidden;
}
.vc-final-verdict::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--vc-gradient-gold);
}
.vc-fv-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    margin: 0 0 22px;
}
.vc-fv-rating {
    text-align: center;
}
.vc-fv-score {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    background: var(--vc-gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
.vc-fv-of {
    color: var(--vc-text-muted);
    font-size: 13px;
    margin: 4px 0 8px;
}
.vc-fv-stars {
    font-size: 26px;
    color: var(--vc-accent);
    letter-spacing: 2px;
}
.vc-fv-title {
    color: var(--vc-accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin: 0 0 10px;
}
.vc-fv-headline {
    color: #fff;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
}
.vc-fv-text {
    color: var(--vc-text);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}
.vc-fv-criteria {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin: 0 0 22px;
}
.vc-fv-criterion {
    text-align: center;
}
.vc-fv-c-name {
    color: var(--vc-text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 6px;
}
.vc-fv-c-bar {
    height: 5px;
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    overflow: hidden;
    margin: 0 0 6px;
}
.vc-fv-c-bar-fill {
    height: 100%;
    background: var(--vc-gradient-gold);
    border-radius: 999px;
}
.vc-fv-c-score {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.vc-fv-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.vc-fv-author {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--vc-text-muted);
    font-size: 13px;
}
.vc-fv-author-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--vc-accent);
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}
.vc-fv-author strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 2px;
}
.vc-fv-cta {
    background: var(--vc-gradient-gold);
    color: #0d1525 !important;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none !important;
    box-shadow: 0 6px 20px rgba(251,191,36,.4);
    transition: all .2s;
    animation: vc-cta-pulse 2.6s ease-in-out infinite;
}
.vc-fv-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(251,191,36,.65);
    color: #0d1525 !important;
}
@media (max-width: 720px) {
    .vc-final-verdict { padding: 24px 18px; }
    .vc-fv-top { grid-template-columns: 1fr; text-align: center; }
    .vc-fv-criteria { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .vc-fv-bottom { flex-direction: column; }
}

/* ==========================================================================
   Pillars block (overrides legacy .vs_legally)
   ========================================================================== */
.vc-pillars {
    position: relative;
    padding: 36px 16px 40px;
    background:
        radial-gradient(circle at 18% 0%, rgba(168,85,247,.10) 0%, transparent 55%),
        radial-gradient(circle at 82% 100%, rgba(251,191,36,.08) 0%, transparent 55%),
        linear-gradient(180deg, #0d1525 0%, #0a0f1c 100%);
    border-top: 1px solid rgba(251,191,36,.12);
    border-bottom: 1px solid rgba(255,255,255,.04);
    margin: 32px 0 0;
}
.vc-pillars > .container {
    max-width: 1140px;
    margin: 0 auto;
}
.vc-pillars-head {
    text-align: center;
    margin: 0 0 26px;
}
.vc-pillars-eyebrow {
    display: inline-block;
    background: rgba(251,191,36,.12);
    border: 1px solid rgba(251,191,36,.35);
    color: var(--vc-accent);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.vc-pillars-title {
    color: #fff;
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    letter-spacing: -0.3px;
    margin: 0;
}
.vc-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.vc-pillar {
    background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 24px 22px 22px;
    text-align: center;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}
.vc-pillar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--vc-gradient-gold);
    opacity: .35;
    transition: opacity .25s ease;
}
.vc-pillar:hover {
    transform: translateY(-4px);
    border-color: rgba(251,191,36,.35);
    box-shadow: 0 14px 36px rgba(0,0,0,.35);
}
.vc-pillar:hover::before { opacity: 1; }
.vc-pillar-featured {
    background:
        radial-gradient(circle at 50% 0%, rgba(251,191,36,.12) 0%, transparent 60%),
        linear-gradient(180deg, rgba(251,191,36,.06) 0%, rgba(255,255,255,.02) 100%);
    border-color: rgba(251,191,36,.3);
}
.vc-pillar-featured::before { opacity: .85; }
.vc-pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    background: rgba(251,191,36,.08);
    border: 1px solid rgba(251,191,36,.22);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.vc-pillar:hover .vc-pillar-icon {
    background: rgba(251,191,36,.16);
    border-color: rgba(251,191,36,.5);
    transform: scale(1.06);
}
.vc-pillar-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(1.1);
}
.vc-pillar-title {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .3px;
    margin: 0 0 8px;
}
.vc-pillar-featured .vc-pillar-title {
    color: var(--vc-accent);
}
.vc-pillar-text {
    color: rgba(255,255,255,.72);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 720px) {
    .vc-pillars-grid { grid-template-columns: 1fr; gap: 12px; }
    .vc-pillars { padding: 28px 14px 32px; }
    .vc-pillar { padding: 20px 18px 18px; }
}

/* Section source attribution (anti-scrape signal) */
.vc-section-source {
    font-size: 11px;
    color: rgba(255,255,255,.32);
    margin: 6px 0 0;
    font-style: italic;
    letter-spacing: .2px;
    line-height: 1.4;
}
.vc-section-source strong {
    color: rgba(255,255,255,.55);
    font-weight: 600;
}
.vc-section-source a {
    color: rgba(251,191,36,.65) !important;
    border-bottom: none !important;
    text-decoration: none !important;
}

/* Section divider */
.vc-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--vc-border) 50%, transparent 100%);
    margin: 40px 0;
    border: none;
}

/* ==========================================================================
   Footer redesign — fix "куцо" look
   ========================================================================== */
.vc-footer {
    background:
        linear-gradient(180deg, #0d1525 0%, #0a0f1c 100%);
    border-top: 1px solid rgba(251,191,36,.18);
    padding: 36px 0 24px;
    position: relative;
}
.vc-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(251,191,36,.5) 50%, transparent 100%);
}
.vc-footer-row {
    display: grid !important;
    grid-template-columns: 1.1fr 1fr 1.2fr;
    gap: 32px;
    margin: 0 0 28px !important;
}
.vc-footer-col {
    padding: 0 !important;
    flex: none !important;
    max-width: 100% !important;
}
.vc-footer-label {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #fbbf24 !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 16px !important;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(251,191,36,.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vc-footer-nav {
    gap: 8px;
}
.vc-footer-nav .vs_nav_item {
    background-color: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 10px !important;
    padding: 10px 14px 10px 38px !important;
    color: #e8edf5 !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    background-size: 18px !important;
    background-position: 12px center !important;
    background-repeat: no-repeat !important;
    transition: all .15s ease;
    margin: 0 6px 6px 0 !important;
}
.vc-footer-nav .vs_nav_item:hover {
    background-color: rgba(251,191,36,.1) !important;
    border-color: rgba(251,191,36,.4) !important;
    color: #fbbf24 !important;
    transform: translateY(-1px);
}
.vc-footer-nav .vs_nav_item.active {
    background-color: rgba(251,191,36,.15) !important;
    border-color: rgba(251,191,36,.5) !important;
    color: #fbbf24 !important;
}

/* Footer Tiles — UI cards instead of plain links */
.vc-footer-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.vc-footer-tile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    text-decoration: none !important;
    color: var(--vc-text) !important;
    transition: all .2s ease;
    min-height: 56px;
}
.vc-footer-tile:hover {
    background: rgba(251,191,36,.07);
    border-color: rgba(251,191,36,.4);
    transform: translateY(-2px);
    color: #fff !important;
}
.vc-footer-tile-primary {
    background: linear-gradient(135deg, rgba(251,191,36,.16) 0%, rgba(245,158,11,.08) 100%);
    border-color: rgba(251,191,36,.45);
    grid-column: 1 / -1;
}
.vc-footer-tile-primary:hover {
    background: linear-gradient(135deg, rgba(251,191,36,.25) 0%, rgba(245,158,11,.12) 100%);
    border-color: var(--vc-accent);
}
.vc-footer-tile-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vc-footer-tile-primary .vc-footer-tile-icon {
    background: rgba(251,191,36,.2);
}
.vc-footer-tile-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}
.vc-footer-tile-title {
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}
.vc-footer-tile-primary .vc-footer-tile-title {
    color: var(--vc-accent);
}
.vc-footer-tile-sub {
    color: rgba(255,255,255,.55);
    font-size: 11.5px;
    line-height: 1.3;
}
@media (max-width: 540px) {
    .vc-footer-tiles { grid-template-columns: 1fr; }
}

.vc-footer-social-text {
    color: rgba(255,255,255,.7);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 14px;
}
.vc-footer-social {
    gap: 10px;
    margin-bottom: 16px;
}
.vc-footer-social .vs_btn-social {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background-size: 22px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform .15s ease, box-shadow .15s ease;
    border: 1px solid rgba(255,255,255,.1) !important;
    margin-right: 0 !important;
}
.vc-footer-social .vs_btn-social:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,.4);
}

.vc-footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.vc-footer-trust-item {
    display: inline-flex;
    align-items: center;
    background: rgba(34,197,94,.08);
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(34,197,94,.2);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .2px;
}

/* Payments section */
.vc-footer-payments {
    background: linear-gradient(180deg, rgba(255,255,255,.025) 0%, rgba(255,255,255,.005) 100%);
    border: 1px solid rgba(251,191,36,.12);
    padding: 22px 22px !important;
    margin: 18px 0 !important;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}
.vc-footer-payments::before {
    content: "";
    position: absolute;
    top: 0; left: 22px; right: 22px;
    height: 2px;
    background: var(--vc-gradient-gold);
    opacity: .35;
}
.vc-footer-payments-label {
    margin-bottom: 6px !important;
}
.vc-footer-payments-sub {
    color: rgba(255,255,255,.65);
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 720px;
}
.vc-payments-grid {
    gap: 8px !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: flex-start !important;
}
.vc-payments-grid .vs_logo-payment {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 12px !important;
    padding: 8px 14px !important;
    width: auto !important;
    min-width: 100px !important;
    max-width: 140px !important;
    height: 50px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all .2s ease !important;
    filter: grayscale(.4) brightness(1.1);
    opacity: .9;
}
.vc-payments-grid .vs_logo-payment:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    background: rgba(251,191,36,.08) !important;
    border-color: rgba(251,191,36,.4) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.4);
}
.vc-payments-grid .vs_logo-payment .vs_img {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    background: none !important;
}
.vc-payments-grid .vs_logo-payment .vs_img img {
    max-height: 32px !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

/* ==========================================================================
   Footer wrapper background + Partner logos grid + Legal block
   ========================================================================== */
.vc-footer {
    background:
        radial-gradient(circle at 18% 0%, rgba(168,85,247,.08) 0%, transparent 55%),
        radial-gradient(circle at 82% 100%, rgba(251,191,36,.06) 0%, transparent 55%),
        linear-gradient(180deg, #0d1525 0%, #0a0f1c 100%) !important;
}

/* Partners section */
.vc-footer .container:has(> .row > .col > .vs_label:not(.vc-footer-label)),
.vc-partners-wrap {
    margin: 18px 0 !important;
    padding: 22px 22px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.005) 100%);
    border: 1px solid rgba(251,191,36,.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}
.vc-partners-wrap .vs_label {
    color: var(--vc-accent) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 6px !important;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(251,191,36,.2);
    display: flex;
    align-items: center;
    gap: 8px;
}
.vc-partners-wrap .vs_label::before {
    content: "🤝";
    font-size: 18px;
}

.vc-partners-sub {
    color: rgba(255,255,255,.6);
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 16px;
    max-width: 720px;
}

.vc-footer .vs_logo-partner {
    background: rgba(255,255,255,.03) !important;
    border: 1px solid rgba(255,255,255,.07) !important;
    border-radius: 10px !important;
    padding: 10px 12px !important;
    margin: 4px !important;
    width: auto !important;
    min-width: 100px !important;
    max-width: 130px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all .2s ease !important;
    filter: grayscale(.6) brightness(1.15);
    opacity: .8;
}
.vc-footer .vs_logo-partner:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    background: rgba(251,191,36,.07) !important;
    border-color: rgba(251,191,36,.35) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.4);
}
.vc-footer .vs_logo-partner .vs_img {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    background: none !important;
}
.vc-footer .vs_logo-partner .vs_img img {
    max-height: 30px !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

/* Legal block (Vavada B.V., 18+) */
.vc-footer .vs_footer-second {
    margin-top: 24px;
    padding: 22px 0 0 !important;
    border-top: 1px solid rgba(255,255,255,.06);
}
.vc-footer .vs_footer-second > .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    background: transparent !important;
    border: none !important;
    margin: 0 auto !important;
}

/* Legal card */
.vc-legal-card {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    border-left: 3px solid rgba(251,191,36,.4);
    border-radius: 10px;
    padding: 14px 18px;
    color: rgba(255,255,255,.65);
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0 0 12px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    box-sizing: border-box;
    width: 100%;
}
.vc-legal-card strong {
    color: #fff;
    font-weight: 700;
}

/* Age warning card */
.vc-warn-card {
    background: linear-gradient(135deg, rgba(239,68,68,.08) 0%, rgba(251,191,36,.04) 100%);
    border: 1px solid rgba(239,68,68,.2);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-sizing: border-box;
    width: 100%;
}
.vc-warn-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(239,68,68,.12);
    border: 1px solid rgba(239,68,68,.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}
.vc-warn-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.vc-warn-text {
    color: rgba(255,255,255,.72);
    font-size: 12.5px;
    line-height: 1.55;
    margin: 0;
    flex: 1;
    min-width: 0;
}
@media (max-width: 720px) {
    .vc-footer-payments,
    .vc-partners-wrap { padding: 18px 14px !important; }
    .vc-payments-grid .vs_logo-payment,
    .vc-footer .vs_logo-partner {
        min-width: 76px;
        height: 44px;
        padding: 8px 10px;
    }
}

@media (max-width: 992px) {
    .vc-footer-row {
        grid-template-columns: 1fr 1fr !important;
    }
    .vc-footer-col:last-child {
        grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
    .vc-footer-row {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .vc-footer-col:last-child {
        grid-column: auto;
    }
    .vc-footer-trust {
        justify-content: flex-start;
    }
    .vc-footer-payments-sub {
        font-size: 12.5px;
    }
}
