:root {
    --clr-bg: #212132;
    --clr-header: #252536;
    --clr-accent: #ddc43a;
    --clr-red: #cd1935;
    --clr-text: #e8e8f0;
    --clr-text-muted: #9898b0;
    --clr-card: #2a2a40;
    --clr-card-hover: #30304a;
    --clr-border: #35355a;
    --clr-input: #1e1e30;
    --clr-green: #2ecc71;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-main: 'Muller', 'Helvetica Neue', Arial, sans-serif;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .35);
    --shadow-btn: 0 2px 12px rgba(221, 196, 58, .25);
    --transition: .22s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden
}

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

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

a:hover {
    color: #f0d84a
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: var(--font-main)
}

.x7k2 {
    display: none
}

.q9w1 {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.wp-block-spacer {
    height: 20px
}

.wp-site-blocks {
    display: block
}

.entry-content::after {
    content: "";
    display: table;
    clear: both
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.section {
    padding: 60px 0
}

.section--sm {
    padding: 40px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    border: none;
    transition: all var(--transition);
    letter-spacing: .3px;
    white-space: nowrap;
    text-decoration: none
}

.btn--gold {
    background: var(--clr-accent);
    color: #1a1a25;
    box-shadow: var(--shadow-btn)
}

.btn--gold:hover {
    background: #f0d84a;
    color: #1a1a25;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(221, 196, 58, .4)
}

.btn--red {
    background: var(--clr-red);
    color: #fff
}

.btn--red:hover {
    background: #e8203f;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(205, 25, 53, .4)
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--clr-accent);
    color: var(--clr-accent)
}

.btn--outline:hover {
    background: var(--clr-accent);
    color: #1a1a25
}

.btn--sm {
    padding: 7px 16px;
    font-size: 13px
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px
}

.card {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    transition: all var(--transition)
}

.card:hover {
    border-color: rgba(221, 196, 58, .3);
    box-shadow: var(--shadow-card)
}

.stars {
    display: inline-flex;
    gap: 2px
}

.star {
    color: #444;
    font-size: 16px;
    line-height: 1
}

.star.filled {
    color: var(--clr-accent)
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px
}

.badge--gold {
    background: rgba(221, 196, 58, .15);
    color: var(--clr-accent);
    border: 1px solid rgba(221, 196, 58, .3)
}

.badge--red {
    background: rgba(205, 25, 53, .15);
    color: #ff6b7a;
    border: 1px solid rgba(205, 25, 53, .3)
}

.badge--green {
    background: rgba(46, 204, 113, .15);
    color: var(--clr-green);
    border: 1px solid rgba(46, 204, 113, .3)
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 8px
}

.section-subtitle {
    font-size: 15px;
    color: var(--clr-text-muted);
    margin-bottom: 32px
}

#vv-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
    border-bottom: 1px solid var(--clr-border)
}

.vv-header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.vv-logo img {
    width: 90px;
    height: auto
}

.vv-logo {
    flex-shrink: 0
}

.vv-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap
}

.vv-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition)
}

.vv-nav__link:hover, .vv-nav__link.active {
    background: rgba(221, 196, 58, .1);
    color: var(--clr-accent)
}

.vv-nav__icon {
    width: 16px;
    height: 16px;
    opacity: .8
}

.vv-nav__count {
    background: var(--clr-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px
}

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

.vv-reviews-count {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(221, 196, 58, .08);
    border: 1px solid rgba(221, 196, 58, .2);
    border-radius: 20px;
    font-size: 13px;
    color: var(--clr-accent);
    font-weight: 600;
    white-space: nowrap
}

.vv-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer
}

.vv-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all var(--transition)
}

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

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

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

.vv-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-header);
    z-index: 999;
    padding: 80px 20px 20px;
    overflow-y: auto;
    flex-direction: column;
    gap: 12px
}

.vv-mobile-menu.open {
    display: flex
}

.vv-mobile-menu .vv-nav__link {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border)
}

.vv-mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px
}

.vv-mobile-menu-actions .btn {
    justify-content: center;
    font-size: 16px;
    padding: 14px
}

.vv-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--clr-text);
    font-size: 24px;
    padding: 8px
}

#vv-hero {
    padding: 40px 0 60px
}

.vv-hero-grid {
    display: grid;
    grid-template-columns:1fr 320px;
    gap: 24px;
    align-items: start
}

.vv-hero-left {
    display: grid;
    gap: 20px
}

.vv-hero-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative
}

.vv-hero-banner img {
    width: 100%;
    height: 260px;
    object-fit: cover
}

.vv-hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(33, 33, 50, .8) 0%, rgba(33, 33, 50, .2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px
}

.vv-hero-banner-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    margin-bottom: 8px;
    text-wrap: balance
}

.vv-hero-banner-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 16px
}

.vv-hero-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.vv-rating-summary {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    padding: 22px
}

.vv-rating-summary__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 16px
}

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

.vv-rating-big {
    font-size: 52px;
    font-weight: 800;
    color: var(--clr-accent);
    line-height: 1
}

.vv-rating-big-detail {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.vv-rating-big-stars .star {
    font-size: 22px
}

.vv-rating-big-count {
    font-size: 13px;
    color: var(--clr-text-muted)
}

.vv-rating-bars {
    display: grid;
    gap: 10px
}

.vv-rating-bar-row {
    display: grid;
    grid-template-columns:60px 1fr 32px;
    align-items: center;
    gap: 8px;
    font-size: 13px
}

.vv-rating-bar-row span:first-child {
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 4px
}

.vv-rating-bar-row span:first-child .star {
    font-size: 13px
}

.vv-bar {
    height: 6px;
    background: rgba(255, 255, 255, .1);
    border-radius: 3px;
    overflow: hidden
}

.vv-bar-fill {
    height: 100%;
    background: var(--clr-accent);
    border-radius: 3px;
    transition: width 1s ease
}

.vv-bar-count {
    text-align: right;
    color: var(--clr-text-muted);
    font-size: 12px
}

.vv-casino-info {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    overflow: hidden
}

.vv-casino-info__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: rgba(221, 196, 58, .05);
    border-bottom: 1px solid var(--clr-border)
}

.vv-casino-info__title {
    font-size: 16px;
    font-weight: 700
}

.vv-casino-info__body {
    padding: 20px 22px
}

.vv-info-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px
}

.vv-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .05)
}

.vv-info-item__label {
    font-size: 11px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600
}

.vv-info-item__value {
    font-size: 13px;
    color: var(--clr-text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.vv-info-logos {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center
}

.vv-info-logo {
    height: 24px;
    width: auto;
    border-radius: 3px;
    opacity: .85;
    filter: grayscale(20%);
    transition: opacity var(--transition)
}

.vv-info-logo:hover {
    opacity: 1
}

.vv-spoiler-btn {
    margin-top: 14px;
    background: transparent;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    transition: all var(--transition);
    width: 100%
}

.vv-spoiler-btn:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent)
}

.vv-spoiler-content {
    display: none
}

.vv-spoiler-content.open {
    display: grid
}

.vv-bonuses {
    display: grid;
    gap: 20px
}

.vv-bonus-tiles {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px
}

.vv-bonus-tile {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all var(--transition)
}

.vv-bonus-tile:hover {
    border-color: rgba(221, 196, 58, .4);
    transform: translateY(-2px)
}

.vv-bonus-tile__icon {
    font-size: 28px;
    line-height: 1
}

.vv-bonus-tile__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-text)
}

.vv-bonus-tile__value {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-accent)
}

.vv-bonus-tile__desc {
    font-size: 12px;
    color: var(--clr-text-muted);
    line-height: 1.5
}

.vv-pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px;
    margin-top: 10px
}

.vv-pros, .vv-cons {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    padding: 20px;
    border-top: 3px solid transparent
}

.vv-pros {
    border-color: var(--clr-green)
}

.vv-cons {
    border-color: var(--clr-red)
}

.vv-pros-cons__title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.vv-pros .vv-pros-cons__title {
    color: var(--clr-green)
}

.vv-cons .vv-pros-cons__title {
    color: #ff6b7a
}

.vv-pros-cons__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: 14px;
    line-height: 1.5
}

.vv-pros-cons__list li:last-child {
    border-bottom: none
}

.vv-pros-cons__list li::before {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px
}

.vv-pros .vv-pros-cons__list li::before {
    content: "✓";
    color: var(--clr-green)
}

.vv-cons .vv-pros-cons__list li::before {
    content: "✗";
    color: #ff6b7a
}

#vv-leave-review {
    background: var(--clr-card);
    padding: 60px 0
}

.vv-bonus-banner {
    background: linear-gradient(135deg, rgba(205, 25, 53, .15), rgba(221, 196, 58, .1));
    border: 1px solid rgba(221, 196, 58, .25);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px
}

.vv-bonus-banner__text h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px
}

.vv-bonus-banner__text p {
    font-size: 14px;
    color: var(--clr-text-muted)
}

.vv-bonus-banner__text .highlight {
    color: var(--clr-accent)
}

.vv-review-form {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 780px;
    margin: 0 auto
}

.vv-review-form__title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px
}

.vv-form-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.vv-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.vv-form-group--full {
    grid-column: 1/-1
}

.vv-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .4px
}

.vv-form-group input, .vv-form-group textarea, .vv-form-group select {
    background: var(--clr-input);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 14px;
    transition: border-color var(--transition);
    width: 100%
}

.vv-form-group input:focus, .vv-form-group textarea:focus, .vv-form-group select:focus {
    outline: none;
    border-color: var(--clr-accent)
}

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

.vv-ratings-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 20px 0
}

.vv-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .06)
}

.vv-rating-row__label {
    font-size: 13px;
    color: var(--clr-text-muted)
}

.vv-star-input {
    display: flex;
    gap: 4px
}

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

.vv-star-input label {
    font-size: 20px;
    color: #444;
    cursor: pointer;
    transition: color var(--transition)
}

.vv-star-input label:hover, .vv-star-input label:hover ~ label, .vv-star-input input:checked ~ label {
    color: var(--clr-accent)
}

.vv-star-input:hover label {
    color: var(--clr-accent)
}

.vv-star-input label:hover ~ label {
    color: #444
}

.vv-form-success {
    display: none;
    background: rgba(46, 204, 113, .12);
    border: 1px solid rgba(46, 204, 113, .3);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    color: var(--clr-green);
    font-weight: 600;
    font-size: 16px;
    margin-top: 16px
}

.vv-form-success.show {
    display: block
}

#vv-reviews {
    padding: 60px 0
}

.vv-reviews-grid {
    display: grid;
    gap: 20px
}

.vv-review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition)
}

.vv-review-card:hover {
    border-color: rgba(221, 196, 58, .25);
    box-shadow: var(--shadow-card)
}

.vv-review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px
}

.vv-review-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.vv-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-border)
}

.vv-review-meta {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.vv-review-name {
    font-size: 15px;
    font-weight: 700
}

.vv-review-country {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--clr-text-muted)
}

.vv-review-flag {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px
}

.vv-review-date {
    font-size: 12px;
    color: var(--clr-text-muted)
}

.vv-review-rating-block {
    text-align: right;
    flex-shrink: 0
}

.vv-review-score {
    font-size: 26px;
    font-weight: 800;
    color: var(--clr-accent);
    line-height: 1
}

.vv-review-score-max {
    font-size: 14px;
    color: var(--clr-text-muted)
}

.vv-rating-details-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 1px solid rgba(221, 196, 58, .3);
    color: var(--clr-accent);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    margin-top: 6px;
    transition: all var(--transition)
}

.vv-rating-details-btn:hover {
    background: rgba(221, 196, 58, .1)
}

.vv-rating-details {
    display: none;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-top: 12px
}

.vv-rating-details.open {
    display: block
}

.vv-rating-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.vv-rating-detail-row:last-child {
    border-bottom: none
}

.vv-rating-detail-row .vv-mini-stars {
    display: flex;
    gap: 2px
}

.vv-mini-stars .star {
    font-size: 12px
}

.vv-review-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--clr-text-muted);
    padding: 4px 10px;
    background: rgba(255, 255, 255, .04);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 12px
}

.vv-review-source a {
    color: var(--clr-accent);
    font-weight: 600
}

.vv-review-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4
}

.vv-review-body {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(232, 232, 240, .85);
    margin-bottom: 14px
}

.vv-review-text-full {
    display: block
}

.vv-review-text-short {
    display: block
}

.vv-review-text-full.hidden {
    display: none
}

.vv-read-more {
    background: transparent;
    border: none;
    color: var(--clr-accent);
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    transition: color var(--transition)
}

.vv-read-more:hover {
    color: #f0d84a
}

.vv-review-media {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0
}

.vv-review-media-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border)
}

.vv-review-media-item img {
    width: 100px;
    height: 72px;
    object-fit: cover;
    transition: transform var(--transition)
}

.vv-review-media-item:hover img {
    transform: scale(1.05)
}

.vv-review-pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    margin: 14px 0;
    padding: 14px;
    background: rgba(255, 255, 255, .025);
    border-radius: var(--radius-sm)
}

.vv-review-pros-cons h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
    font-weight: 700
}

.vv-review-pros-list h5 {
    color: var(--clr-green)
}

.vv-review-cons-list h5 {
    color: #ff6b7a
}

.vv-review-pros-cons ul li {
    font-size: 13px;
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.5
}

.vv-review-pros-list ul li::before {
    content: "+ ";
    color: var(--clr-green);
    font-weight: 700;
    flex-shrink: 0
}

.vv-review-cons-list ul li::before {
    content: "- ";
    color: #ff6b7a;
    font-weight: 700;
    flex-shrink: 0
}

.vv-review-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.vv-votes {
    display: flex;
    gap: 8px
}

.vv-vote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    transition: all var(--transition)
}

.vv-vote-btn:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent)
}

.vv-vote-btn.voted {
    background: rgba(221, 196, 58, .1);
    border-color: var(--clr-accent);
    color: var(--clr-accent)
}

.vv-vote-btn svg {
    width: 14px;
    height: 14px
}

.vv-reply-btn {
    background: transparent;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px
}

.vv-reply-btn:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent)
}

.vv-reply-form {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, .025);
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border)
}

.vv-reply-form.open {
    display: block
}

.vv-reply-form textarea {
    width: 100%;
    background: var(--clr-input);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 10px
}

.vv-reply-form textarea:focus {
    outline: none;
    border-color: var(--clr-accent)
}

.vv-reply-form-actions {
    display: flex;
    gap: 8px
}

.vv-reviews-banner-mid {
    background: linear-gradient(135deg, rgba(205, 25, 53, .12), rgba(221, 196, 58, .08));
    border: 1px solid rgba(221, 196, 58, .2);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 32px 0
}

#vv-comparison {
    background: var(--clr-card);
    padding: 60px 0
}

.vv-comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md)
}

.vv-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: left;
    min-width: 600px
}

.vv-comparison-table th, .vv-comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--clr-border)
}

.vv-comparison-table th {
    background: rgba(221, 196, 58, .08);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--clr-text-muted);
    font-weight: 700
}

.vv-comparison-table th.vv-highlight-col {
    background: rgba(221, 196, 58, .15);
    color: var(--clr-accent)
}

.vv-comparison-table td.vv-highlight-col {
    background: rgba(221, 196, 58, .05)
}

.vv-comparison-table tr:last-child td {
    border-bottom: none
}

.vv-comparison-table tr:hover td {
    background: rgba(255, 255, 255, .02)
}

.vv-casino-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700
}

.vv-casino-label img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover
}

.vv-compare-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    text-decoration: none;
    transition: all var(--transition)
}

.vv-compare-btn--gold {
    background: var(--clr-accent);
    color: #1a1a25
}

.vv-compare-btn--gold:hover {
    background: #f0d84a
}

.vv-compare-btn--outline {
    background: transparent;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted)
}

.vv-compare-btn--outline:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent)
}

#vv-content {
    padding: 60px 0
}

.vv-content-wrap {
    display: grid;
    grid-template-columns:1fr 320px;
    gap: 32px;
    align-items: start
}

.vv-article-content {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    padding: 36px
}

.vv-article-content h1, .vv-article-content h2, .vv-article-content h3, .vv-article-content h4, .vv-article-content h5, .vv-article-content h6 {
    color: var(--clr-text);
    margin: 1.4em 0 .6em;
    line-height: 1.35;
    font-weight: 700
}

.vv-article-content h1 {
    font-size: 28px
}

.vv-article-content h2 {
    font-size: 22px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(221, 196, 58, .2)
}

.vv-article-content h3 {
    font-size: 18px;
    color: var(--clr-accent)
}

.vv-article-content h4 {
    font-size: 16px
}

.vv-article-content p {
    margin-bottom: 1.1em;
    line-height: 1.75;
    font-size: 15px;
    color: rgba(232, 232, 240, .9)
}

.vv-article-content ul, .vv-article-content ol {
    margin: 1em 0 1em 1.5em;
    line-height: 1.7
}

.vv-article-content ul li {
    list-style: disc;
    margin-bottom: .4em;
    font-size: 15px;
    color: rgba(232, 232, 240, .9)
}

.vv-article-content ol li {
    list-style: decimal;
    margin-bottom: .4em;
    font-size: 15px;
    color: rgba(232, 232, 240, .9)
}

.vv-article-content a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-decoration-color: rgba(221, 196, 58, .4)
}

.vv-article-content a:hover {
    color: #f0d84a
}

.vv-article-content strong {
    color: #fff;
    font-weight: 700
}

.vv-article-content em {
    color: var(--clr-accent);
    font-style: italic
}

.vv-article-content blockquote {
    margin: 1.5em 0;
    padding: 16px 20px 16px 24px;
    border-left: 4px solid var(--clr-accent);
    background: rgba(221, 196, 58, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 15px;
    color: rgba(232, 232, 240, .85);
    font-style: italic
}

.vv-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden
}

.vv-article-content table th {
    background: rgba(221, 196, 58, .1);
    padding: 10px 14px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    border-bottom: 1px solid var(--clr-border)
}

.vv-article-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: 14px
}

.vv-article-content table tr:last-child td {
    border-bottom: none
}

.vv-article-content table tr:hover td {
    background: rgba(255, 255, 255, .02)
}

.vv-article-content img {
    border-radius: var(--radius-sm);
    margin: 1em 0
}

.vv-article-content hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 2em 0
}

.vv-article-content code {
    background: rgba(255, 255, 255, .08);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 13px;
    font-family: monospace
}

.vv-article-content pre {
    background: rgba(0, 0, 0, .3);
    padding: 16px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 1em 0
}

.vv-article-content pre code {
    background: none;
    padding: 0
}

.vv-author-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 80px
}

.vv-author-card__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-accent);
    margin-bottom: 14px
}

.vv-author-card__label {
    font-size: 11px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    margin-bottom: 6px
}

.vv-author-card__name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px
}

.vv-author-card__bio {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(232, 232, 240, .75);
    margin-bottom: 16px
}

.vv-author-card__links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.vv-author-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--clr-text-muted);
    padding: 8px 12px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition)
}

.vv-author-link:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent)
}

.vv-author-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

#vv-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 24px
}

.vv-footer-top {
    display: grid;
    grid-template-columns:200px 1fr auto;
    gap: 32px;
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 28px
}

.vv-footer-logo img {
    width: 130px;
    height: auto;
    margin-bottom: 12px
}

.vv-footer-desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 280px
}

.vv-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px
}

.vv-footer-nav a {
    font-size: 14px;
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.vv-footer-nav a:hover {
    color: var(--clr-accent)
}

.vv-footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.vv-trust-logo {
    height: 32px;
    width: auto;
    opacity: .55;
    filter: grayscale(40%);
    transition: opacity var(--transition)
}

.vv-trust-logo:hover {
    opacity: .9
}

.vv-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.vv-footer-copy {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.vv-footer-legal {
    font-size: 12px;
    color: rgba(152, 152, 176, .6);
    line-height: 1.6;
    max-width: 700px;
    text-align: right
}

#vv-widget {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    max-width: 520px;
    width: calc(100% - 40px);
    pointer-events: none
}

.vv-widget-inner {
    background: linear-gradient(135deg, rgba(37, 37, 54, .97), rgba(42, 42, 64, .97));
    border: 1px solid rgba(221, 196, 58, .35);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    backdrop-filter: blur(12px);
    pointer-events: all;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5)
}

.vv-widget-text {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.vv-widget-bonus {
    font-size: 18px;
    font-weight: 800;
    color: var(--clr-accent)
}

.vv-widget-sub {
    font-size: 12px;
    color: var(--clr-text-muted)
}

.vv-widget-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0
}

.vv-widget-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: var(--clr-header);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    color: var(--clr-text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition)
}

.vv-widget-close:hover {
    background: var(--clr-red);
    border-color: var(--clr-red);
    color: #fff
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: none
}

.wp-content {
    display: none
}

.elementor-section {
    display: block
}

#wpadminbar {
    display: none !important
}

.wp-hidden-children {
    display: none
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }
    100% {
        background-position: 200% 0
    }
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(221, 196, 58, .4)
    }
    70% {
        box-shadow: 0 0 0 8px rgba(221, 196, 58, 0)
    }
}

.btn--gold.pulse {
    animation: pulse-gold 2s infinite
}

@media (max-width: 1024px) {
    .vv-hero-grid {
        grid-template-columns:1fr
    }

    .vv-content-wrap {
        grid-template-columns:1fr
    }

    .vv-author-card {
        position: static
    }

    .vv-footer-top {
        grid-template-columns:1fr 1fr
    }

    .vv-footer-trust {
        grid-column: 1/-1
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0
    }

    .vv-header-inner {
        grid-template-columns:auto 1fr auto;
        gap: 12px
    }

    .vv-nav {
        display: none
    }

    .vv-burger {
        display: flex
    }

    .vv-hero-banner img {
        height: 200px
    }

    .vv-hero-banner-title {
        font-size: 20px
    }

    .vv-info-grid {
        grid-template-columns:1fr
    }

    .vv-pros-cons {
        grid-template-columns:1fr
    }

    .vv-review-pros-cons {
        grid-template-columns:1fr
    }

    .vv-bonus-banner {
        flex-direction: column;
        text-align: center
    }

    .vv-reviews-banner-mid {
        flex-direction: column;
        text-align: center
    }

    .vv-form-grid {
        grid-template-columns:1fr
    }

    .vv-review-header {
        flex-direction: column;
        gap: 10px
    }

    .vv-review-rating-block {
        text-align: left
    }

    .vv-footer-top {
        grid-template-columns:1fr
    }

    .vv-footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }

    .vv-footer-legal {
        text-align: left
    }

    .vv-header-actions .btn-text {
        display: none
    }

    .section-title {
        font-size: 22px
    }

    #vv-widget {
        bottom: 12px;
        width: calc(100% - 24px)
    }

    .vv-widget-inner {
        padding: 12px 16px
    }

    .vv-widget-bonus {
        font-size: 15px
    }
}

@media (max-width: 480px) {
    .vv-bonus-tiles {
        grid-template-columns:1fr 1fr
    }

    .vv-ratings-grid {
        grid-template-columns:1fr
    }

    .vv-widget-actions .btn:first-child {
        display: none
    }

    .container {
        padding: 0 14px
    }
}

@media (max-width: 768px) {
    #vv-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        border-bottom: 1px solid var(--clr-border);
        background: rgba(37, 37, 54, .92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .vv-header-inner {
        grid-template-columns:auto 1fr auto;
        gap: 10px;
        padding: 10px 14px;
    }

    .vv-logo img {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        object-fit: cover;
    }

    .vv-header-actions {
        gap: 8px;
    }

    .vv-header-actions .btn {
        padding: 10px 12px;
        border-radius: 12px;
        min-height: 40px;
    }

    .vv-header-actions .btn .btn-text {
        display: none;
    }

    .vv-header-actions .btn {
        width: 40px;
        justify-content: center;
        padding: 0;
    }

    .vv-header-actions .btn::before {
        content: "";
        width: 18px;
        height: 18px;
        display: block;
        background: currentColor;
        -webkit-mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        opacity: .95;
    }

    .vv-header-actions .btn--outline::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 3h7v7h-2V6.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3z'/%3E%3Cpath d='M19 19H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7h-2v7z'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 3h7v7h-2V6.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3z'/%3E%3Cpath d='M19 19H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7h-2v7z'/%3E%3C/svg%3E");
    }

    .vv-header-actions .btn--gold::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7-4.35-7-10a4 4 0 0 1 7-2.7A4 4 0 0 1 19 11c0 5.65-7 10-7 10z'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7-4.35-7-10a4 4 0 0 1 7-2.7A4 4 0 0 1 19 11c0 5.65-7 10-7 10z'/%3E%3C/svg%3E");
    }

    .vv-burger {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .08);
    }

    .vv-burger span {
        width: 18px;
        height: 2px;
        background: var(--clr-text);
    }

    .vv-nav {
        display: none;
    }

    .vv-mobile-menu {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 1200;
        padding: 72px 14px 18px;
        background: rgba(33, 33, 50, .92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition), transform var(--transition);
    }

    .vv-mobile-menu.open {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .vv-mobile-close {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, .1);
        background: rgba(255, 255, 255, .04);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        line-height: 1;
    }

    .vv-mobile-menu .vv-nav__link {
        background: rgba(42, 42, 64, .7);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 16px;
        padding: 14px 14px;
        font-size: 15px;
        justify-content: space-between;
    }

    .vv-mobile-menu .vv-nav__link .vv-nav__icon {
        width: 18px;
        height: 18px;
        opacity: .9;
    }

    .vv-mobile-menu .vv-nav__count {
        margin-left: auto;
    }

    .vv-mobile-menu-actions {
        margin-top: 14px;
    }

    .vv-mobile-menu-actions .btn {
        min-height: 48px;
        border-radius: 16px;
        font-size: 15px;
    }

    body.vv-menu-open {
        overflow: hidden;
        touch-action: none;
    }
}

@media (max-width: 480px) {
    .vv-header-inner {
        padding: 10px 12px;
    }

    .vv-header-actions {
        gap: 6px;
    }

    .vv-header-actions .btn,
    .vv-burger {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .vv-mobile-menu {
        padding-left: 12px;
        padding-right: 12px;
    }
}