@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --clr-header: #3b407f;
    --clr-header-dark: #2e3268;
    --clr-bg: #292755;
    --clr-bg-card: #1e1d42;
    --clr-bg-card2: #322f6e;
    --clr-btn-primary: #57e400;
    --clr-btn-primary-hover: #45c400;
    --clr-btn-secondary: #924eff;
    --clr-btn-secondary-hover: #7a3fe0;
    --clr-text: #e8e6ff;
    --clr-text-muted: #a9a6d0;
    --clr-text-dark: #ffffff;
    --clr-accent: #57e400;
    --clr-accent2: #924eff;
    --clr-border: rgba(255, 255, 255, 0.08);
    --clr-gold: #ffd700;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 2px 18px rgba(0, 0, 0, 0.28);
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
    --font: 'Poppins', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background: var(--clr-bg);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.55;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--clr-accent2);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.25;
}

h2 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 0.85rem;
    color: var(--clr-text);
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: 0.85rem;
}

li {
    margin-bottom: 0.35rem;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto;
}

th, td {
    text-align: left;
    padding: 0.75rem 1rem;
    border: 1px solid var(--clr-border);
}

th {
    background: var(--clr-header);
    color: #fff;
    font-weight: 600;
}

tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04);
}

.vv-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.vv-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
    width: 100%;
}

.vv-section {
    padding: 52px 0 44px;
}

.vv-section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
    text-balance: balance;
    position: relative;
}

.vv-section-title span {
    color: var(--clr-accent);
}

.vv-section-title::after {
    content: '';
    display: block;
    width: 54px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent2));
    border-radius: 4px;
    margin: 10px auto 0;
}

.vv-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.vv-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--transition);
}

.vv-btn:hover::after {
    background: rgba(255, 255, 255, 0.07);
}

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

.vv-btn--primary {
    background: var(--clr-btn-primary);
    color: #1a1a1a;
    box-shadow: 0 0 18px rgba(87, 228, 0, 0.35);
}

.vv-btn--primary:hover {
    background: var(--clr-btn-primary-hover);
    box-shadow: 0 0 28px rgba(87, 228, 0, 0.55);
    color: #111;
    transform: translateY(-1px);
}

.vv-btn--secondary {
    background: var(--clr-btn-secondary);
    color: #fff;
    box-shadow: 0 0 14px rgba(146, 78, 255, 0.3);
}

.vv-btn--secondary:hover {
    background: var(--clr-btn-secondary-hover);
    box-shadow: 0 0 24px rgba(146, 78, 255, 0.5);
    color: #fff;
    transform: translateY(-1px);
}

.vv-btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.vv-btn--sm {
    padding: 7px 16px;
    font-size: 0.82rem;
}

.vv-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    padding: 24px 20px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.vv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ===== HEADER ===== */
.vv-header {
    background: var(--clr-header);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.vv-header__inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 18px;
    max-width: 1180px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.vv-header__logo {
    flex-shrink: 0;
}

.vv-header__logo img {
    height: 30px;
    width: auto;
    border-radius: 6px;
}

.vv-header__nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vv-header__nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 11px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 7px;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.vv-header__nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.vv-header__nav svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.vv-header__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.vv-online-counter {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 5px 10px;
    white-space: nowrap;
}

.vv-online-dot {
    width: 7px;
    height: 7px;
    background: var(--clr-accent);
    border-radius: 50%;
    animation: vv-pulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes vv-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.vv-lang-select {
    position: relative;
}

.vv-lang-select select {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 28px 6px 10px;
    border-radius: 7px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.vv-lang-select::after {
    content: '▾';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff;
    font-size: 0.75rem;
}

.vv-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.vv-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.25s;
}

.vv-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.vv-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.vv-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.vv-mobile-menu {
    display: none;
    background: var(--clr-header-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px 18px;
}

.vv-mobile-menu.is-open {
    display: block;
}

.vv-mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.vv-mobile-menu__links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background var(--transition);
}

.vv-mobile-menu__links a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.vv-mobile-menu__links svg {
    width: 16px;
    height: 16px;
}

/* ===== HERO ===== */
.vv-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.vv-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/hero-v.png') center/cover no-repeat;
    z-index: 0;
}

.vv-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(41, 39, 85, 0.92) 38%, rgba(59, 64, 127, 0.65) 100%);
}

.vv-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 18px;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.vv-hero__content {
    flex: 1;
}

.vv-hero__eyebrow {
    display: inline-block;
    background: rgba(87, 228, 0, 0.15);
    border: 1px solid rgba(87, 228, 0, 0.4);
    color: var(--clr-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.vv-hero__title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 16px;
    text-balance: balance;
}

.vv-hero__title span {
    color: var(--clr-accent);
}

.vv-hero__desc {
    font-size: 1rem;
    color: rgba(232, 230, 255, 0.82);
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.65;
}

.vv-hero__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.vv-bonus-tile {
    background: linear-gradient(135deg, #3b407f 0%, #1e1d42 100%);
    border: 1px solid rgba(87, 228, 0, 0.35);
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    min-width: 260px;
    max-width: 300px;
    box-shadow: 0 0 40px rgba(87, 228, 0, 0.15), var(--shadow);
    text-align: center;
    flex-shrink: 0;
}

.vv-bonus-tile__badge {
    background: var(--clr-accent);
    color: #111;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 3px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.vv-bonus-tile__amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 4px;
}

.vv-bonus-tile__sub {
    font-size: 0.82rem;
    color: rgba(232, 230, 255, 0.7);
    margin-bottom: 16px;
}

.vv-bonus-tile__spins {
    background: rgba(87, 228, 0, 0.12);
    border-radius: 8px;
    padding: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-accent);
    margin-bottom: 18px;
}

/* ===== ADVANTAGES ===== */
.vv-advantages {
    background: linear-gradient(180deg, rgba(30, 29, 66, 0.6) 0%, transparent 100%);
}

.vv-advantages__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.vv-advantage-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 26px 20px 22px;
    text-align: center;
    flex: 1 1 180px;
    max-width: 210px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.vv-advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(87, 228, 0, 0.12);
    border-color: rgba(87, 228, 0, 0.3);
}

.vv-advantage-card__icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(87, 228, 0, 0.15), rgba(146, 78, 255, 0.12));
    border-radius: 14px;
}

.vv-advantage-card__icon svg {
    width: 28px;
    height: 28px;
}

.vv-advantage-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.vv-advantage-card__text {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* ===== JACKPOTS ===== */
.vv-jackpots {
    background: linear-gradient(135deg, #1e1d42 0%, #2a2660 100%);
}

.vv-jackpots__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.vv-jackpot-card {
    background: linear-gradient(135deg, #2e2a5e 0%, #1a1840 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    flex: 1 1 200px;
    max-width: 260px;
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.07);
    transition: transform var(--transition), box-shadow var(--transition);
}

.vv-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 36px rgba(255, 215, 0, 0.18);
}

.vv-jackpot-card__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-gold);
    margin-bottom: 8px;
}

.vv-jackpot-card__game {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

.vv-jackpot-card__amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-gold);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    letter-spacing: -0.02em;
}

.vv-jackpot-note {
    text-align: center;
    font-size: 0.76rem;
    color: var(--clr-text-muted);
    margin-top: 18px;
}

/* ===== MIRRORS ===== */
.vv-mirrors .vv-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    margin-bottom: 14px;
}

.vv-mirrors table {
    min-width: 560px;
}

.vv-mirrors .vv-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--clr-accent);
    background: rgba(87, 228, 0, 0.1);
    border-radius: 20px;
    padding: 3px 10px;
}

.vv-mirrors .vv-status-dot {
    width: 6px;
    height: 6px;
    background: var(--clr-accent);
    border-radius: 50%;
    display: inline-block;
}

.vv-mirrors__ts {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    text-align: right;
    margin-top: 10px;
}

/* ===== APP ===== */
.vv-app__grid {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.vv-app__table-wrap {
    flex: 1 1 340px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
}

.vv-app__table-wrap table {
    min-width: 300px;
}

.vv-app__buttons {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}

.vv-app__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    background: var(--clr-bg-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    text-decoration: none;
}

.vv-app__btn:hover {
    background: rgba(87, 228, 0, 0.1);
    border-color: rgba(87, 228, 0, 0.35);
    color: #fff;
    transform: translateY(-1px);
}

.vv-app__btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.vv-app__btn-label {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    font-weight: 400;
}

/* ===== WHEEL ===== */
.vv-wheel-section {
    background: linear-gradient(135deg, #1e1d42, #2e2a5e);
}

.vv-wheel__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.vv-wheel__canvas-wrap {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

#vvWheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(87, 228, 0, 0.2), 0 0 0 6px rgba(87, 228, 0, 0.12);
    display: block;
}

.vv-wheel__pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 24px solid var(--clr-accent);
    filter: drop-shadow(0 2px 6px rgba(87, 228, 0, 0.5));
}

.vv-wheel__controls {
    text-align: center;
}

.vv-wheel__result {
    margin-top: 16px;
    min-height: 44px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.vv-wheel__result--win {
    color: var(--clr-accent);
}

.vv-wheel__result--lose {
    color: #ff5f7e;
}

/* ===== REVIEW CONTENT ===== */
.vv-review {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
}

.vv-review__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--clr-border);
}

.vv-review__author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent2), var(--clr-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.vv-review__author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.vv-review__author-role {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-bottom: 0;
}

.vv-review__author-links {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.vv-review__author-links a {
    font-size: 0.73rem;
    color: var(--clr-accent2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
}

.vv-review__author-links a:hover {
    color: var(--clr-accent);
}

.vv-review__author-links svg {
    width: 13px;
    height: 13px;
}

.vv-review__content {
    line-height: 1.75;
}

.vv-review__content h1,
.vv-review__content h2,
.vv-review__content h3,
.vv-review__content h4 {
    color: #fff;
    margin: 1.4rem 0 0.6rem;
}

.vv-review__content h2 {
    font-size: 1.35rem;
}

.vv-review__content h3 {
    font-size: 1.1rem;
}

.vv-review__content p {
    color: var(--clr-text);
    margin-bottom: 0.9rem;
}

.vv-review__content ul, .vv-review__content ol {
    margin-bottom: 0.9rem;
}

.vv-review__content li {
    color: var(--clr-text);
    margin-bottom: 0.4rem;
}

.vv-review__content a {
    color: var(--clr-accent2);
}

.vv-review__content a:hover {
    color: var(--clr-accent);
}

.vv-review__content table {
    border-collapse: collapse;
    width: 100%;
    margin: 1rem 0;
    overflow-x: auto;
    display: block;
}

.vv-review__content th {
    background: var(--clr-header);
    color: #fff;
}

.vv-review__content td {
    color: var(--clr-text);
}

.vv-review__content strong {
    color: #fff;
}

.vv-review__content blockquote {
    border-left: 3px solid var(--clr-accent2);
    padding: 10px 18px;
    margin: 1rem 0;
    background: rgba(146, 78, 255, 0.07);
    border-radius: 0 8px 8px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.vv-review__placeholder {
    background: rgba(255, 255, 255, 0.04);
    border: 2px dashed rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    color: var(--clr-text-muted);
    font-style: italic;
}

/* ===== COMMENTS ===== */
.vv-comments__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.vv-comment {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
}

.vv-comment__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.vv-comment__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header), var(--clr-accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.vv-comment__name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.vv-comment__date {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    margin-left: auto;
}

.vv-comment__stars {
    color: var(--clr-gold);
    font-size: 0.88rem;
    margin-bottom: 5px;
}

.vv-comment__text {
    font-size: 0.88rem;
    color: var(--clr-text);
    line-height: 1.6;
}

.vv-comment-form {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 26px 24px;
}

.vv-comment-form h3 {
    margin-bottom: 18px;
}

.vv-form-group {
    margin-bottom: 14px;
}

.vv-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
}

.vv-form-group input,
.vv-form-group textarea,
.vv-form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font);
    font-size: 0.9rem;
    padding: 10px 14px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.vv-form-group input:focus,
.vv-form-group textarea:focus {
    border-color: var(--clr-accent2);
    box-shadow: 0 0 0 3px rgba(146, 78, 255, 0.15);
}

.vv-form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.vv-form-success {
    display: none;
    background: rgba(87, 228, 0, 0.1);
    border: 1px solid rgba(87, 228, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--clr-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: 14px;
}

.vv-form-success.is-visible {
    display: block;
}

.vv-star-select {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.vv-star-select input[type="radio"] {
    display: none;
}

.vv-star-select label {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: color 0.15s;
}

.vv-star-select input[type="radio"]:checked ~ label,
.vv-star-select label:hover,
.vv-star-select label:hover ~ label {
    color: var(--clr-gold);
}

/* ===== FOOTER ===== */
.vv-footer {
    background: var(--clr-header-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 44px 0 24px;
    margin-top: auto;
}

.vv-footer__top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    align-items: flex-start;
}

.vv-footer__brand {
    flex: 0 0 auto;
}

.vv-footer__logo {
    height: 38px;
    width: auto;
    border-radius: 6px;
    margin-bottom: 12px;
}

.vv-footer__country {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.vv-footer__flag {
    font-size: 1.3rem;
}

.vv-footer__social {
    display: flex;
    gap: 9px;
    margin-top: 14px;
}

.vv-footer__social a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: background var(--transition), color var(--transition);
}

.vv-footer__social a:hover {
    background: var(--clr-accent2);
    color: #fff;
}

.vv-footer__social svg {
    width: 16px;
    height: 16px;
}

.vv-footer__nav {
    flex: 1 1 140px;
}

.vv-footer__nav-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
}

.vv-footer__nav ul {
    list-style: none;
    padding: 0;
}

.vv-footer__nav ul li {
    margin-bottom: 7px;
}

.vv-footer__nav ul a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.vv-footer__nav ul a:hover {
    color: #fff;
}

.vv-footer__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.vv-footer__logo-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 5px;
}

.vv-footer__logo-badge svg {
    width: 14px;
    height: 14px;
}

.vv-footer__bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.vv-footer__legal {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    text-align: center;
}

.vv-footer__copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin-bottom: 8px;
}

/* ===== STICKY WIDGET ===== */
.vv-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 888;
    background: linear-gradient(90deg, var(--clr-header-dark) 0%, #1e1d42 100%);
    border-top: 2px solid rgba(87, 228, 0, 0.4);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    flex-wrap: wrap;
}

.vv-widget__text {
    font-size: 0.84rem;
    color: #fff;
    font-weight: 600;
}

.vv-widget__text span {
    color: var(--clr-accent);
}

.vv-widget__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
}

.vv-widget__close:hover {
    color: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes vv-fadein {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vv-fadein {
    animation: vv-fadein 0.55s var(--transition) both;
}

.vv-fadein--d1 {
    animation-delay: 0.1s;
}

.vv-fadein--d2 {
    animation-delay: 0.22s;
}

.vv-fadein--d3 {
    animation-delay: 0.34s;
}

/* ===== BREADCRUMB ===== */
.vv-breadcrumb {
    padding: 12px 18px;
    max-width: 1180px;
    margin: 0 auto;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.vv-breadcrumb a {
    color: var(--clr-text-muted);
}

.vv-breadcrumb a:hover {
    color: var(--clr-accent);
}

.vv-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.2);
}

/* ===== INFO PAGE ===== */
.vv-info-content {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    max-width: 860px;
    margin: 36px auto;
}

.vv-info-content h1 {
    margin-bottom: 1.2rem;
}

.vv-info-content h2 {
    font-size: 1.2rem;
    margin: 1.4rem 0 0.6rem;
}

.vv-info-content p {
    color: var(--clr-text);
    margin-bottom: 0.85rem;
}

.vv-info-content ul {
    margin-bottom: 0.85rem;
}

.vv-info-content li {
    color: var(--clr-text);
}

.vv-info-content a {
    color: var(--clr-accent2);
}

/* ===== FAQ ===== */
.vv-faq {
    max-width: 820px;
    margin: 0 auto;
}

.vv-faq__item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--clr-bg-card);
}

.vv-faq__q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    color: #fff;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    transition: background var(--transition);
}

.vv-faq__q:hover {
    background: rgba(255, 255, 255, 0.04);
}

.vv-faq__icon {
    flex-shrink: 0;
    transition: transform 0.25s;
    color: var(--clr-accent2);
}

.vv-faq__item.is-open .vv-faq__icon {
    transform: rotate(45deg);
}

.vv-faq__a {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.88rem;
    color: var(--clr-text);
    line-height: 1.7;
}

.vv-faq__item.is-open .vv-faq__a {
    display: block;
}

/* ===== WP DECOY ELEMENTS (hidden, no render impact) ===== */
.wp-caption, .wp-post-image, .alignnone, .aligncenter, .alignright, .alignleft {
    max-width: 100%;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .vv-header__nav {
        display: none;
    }

    .vv-burger {
        display: flex;
    }

    .vv-online-counter {
        display: none;
    }

    .vv-hero__inner {
        flex-direction: column;
        gap: 28px;
        padding: 44px 18px;
    }

    .vv-hero__title {
        font-size: 2rem;
    }

    .vv-bonus-tile {
        max-width: 100%;
        width: 100%;
    }

    .vv-advantage-card {
        max-width: none;
        flex: 1 1 140px;
    }

    .vv-app__grid {
        flex-direction: column;
    }

    .vv-review {
        padding: 24px 18px;
    }

    .vv-info-content {
        padding: 24px 18px;
        margin: 20px 10px;
    }
}

@media (max-width: 600px) {
    .vv-hero__title {
        font-size: 1.65rem;
    }

    .vv-section-title {
        font-size: 1.4rem;
    }

    .vv-bonus-tile {
        padding: 20px 16px;
    }

    .vv-jackpot-card {
        flex: 1 1 140px;
    }

    .vv-footer__top {
        gap: 24px;
    }

    .vv-widget {
        padding: 10px 14px;
    }

    .vv-widget__text {
        font-size: 0.78rem;
    }
}

/* ===== UNUSED DECOY STYLES ===== */
.elementor-widget-container {
    box-sizing: border-box;
}

.elementor-section {
    position: relative;
}

.woocommerce-page .content-area {
    float: left;
}

.wp-block-image img {
    height: auto;
    max-width: 100%;
}

.entry-content {
    word-wrap: break-word;
}

.site-header {
    z-index: 100;
}

.nav-primary {
    display: block;
}

.widget_text p {
    margin-bottom: 1em;
}

.wp-block-group {
    box-sizing: border-box;
}
