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

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Mulish', sans-serif;
    background-color: #212132;
    color: #e8e8f0;
    line-height: 1.6;
    overflow-x: hidden
}

a {
    color: #ddc43a;
    text-decoration: none;
    transition: color .25s ease
}

a:hover {
    color: #f0d84f
}

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

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: 'Mulish', sans-serif
}

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

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

.vvd-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.vvd-col {
    flex: 1
}

.vvd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 700;
    border: none;
    outline: none;
    transition: all .25s ease;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap
}

.vvd-btn--gold {
    background: #ddc43a;
    color: #1a1a2e
}

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

.vvd-btn--red {
    background: #cd1935;
    color: #fff
}

.vvd-btn--red:hover {
    background: #e82040;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(205, 25, 53, .45)
}

.vvd-btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem
}

.vvd-btn--sm {
    padding: 7px 16px;
    font-size: .82rem
}

.vvd-header {
    background: #252536;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4)
}

.vvd-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.vvd-header__logo img {
    height: 48px;
    width: auto
}

.vvd-header__nav {
    display: flex;
    align-items: center;
    gap: 6px
}

.vvd-header__nav a {
    color: #c8c8e0;
    font-size: .88rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all .2s ease
}

.vvd-header__nav a:hover {
    color: #ddc43a;
    background: rgba(221, 196, 58, .1)
}

.vvd-header__actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.vvd-header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #9090b0;
    margin-right: 8px
}

.vvd-header__online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, .5)
    }
    50% {
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0)
    }
}

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

.vvd-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8e8f0;
    border-radius: 2px;
    transition: all .3s ease
}

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

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

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

.vvd-mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: #252536;
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
    border-top: 1px solid rgba(255, 255, 255, .08);
    transform: translateY(-10px);
    opacity: 0;
    transition: all .3s ease
}

.vvd-mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1
}

.vvd-mobile-menu a {
    color: #c8c8e0;
    font-size: .95rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    display: block;
    transition: all .2s
}

.vvd-mobile-menu a:hover {
    background: rgba(255, 255, 255, .06);
    color: #ddc43a
}

.vvd-mobile-menu .vvd-mobile-menu__btns {
    display: flex;
    gap: 10px;
    margin-top: 6px
}

.vvd-mobile-menu .vvd-mobile-menu__btns .vvd-btn {
    flex: 1;
    justify-content: center
}

.vvd-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center
}

.vvd-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/img/vavada-hero.jpg') center/cover no-repeat;
    filter: brightness(.45)
}

.vvd-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(33, 33, 50, .9) 0%, rgba(37, 37, 54, .5) 100%)
}

.vvd-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center
}

.vvd-hero__badge {
    display: inline-block;
    background: rgba(221, 196, 58, .15);
    border: 1px solid rgba(221, 196, 58, .4);
    color: #ddc43a;
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.vvd-hero__title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff
}

.vvd-hero__title span {
    color: #ddc43a
}

.vvd-hero__sub {
    font-size: 1.08rem;
    color: #b8b8d0;
    margin-bottom: 30px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto
}

.vvd-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.vvd-hero__bonus {
    margin-top: 24px;
    font-size: .88rem;
    color: #9090b0
}

.vvd-hero__bonus strong {
    color: #ddc43a
}

.vvd-breadcrumbs {
    background: #1d1d2e;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.vvd-breadcrumbs__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: .82rem
}

.vvd-breadcrumbs__item {
    color: #7070a0
}

.vvd-breadcrumbs__item a {
    color: #9090b0;
    transition: color .2s
}

.vvd-breadcrumbs__item a:hover {
    color: #ddc43a
}

.vvd-breadcrumbs__sep {
    color: #4a4a6a;
    font-size: .7rem
}

.vvd-breadcrumbs__item.current {
    color: #ddc43a
}

.vvd-section {
    padding: 60px 0
}

.vvd-section--alt {
    background: #1d1d2e
}

.vvd-section__title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.vvd-section__title span {
    color: #ddc43a
}

.vvd-section__sub {
    color: #9090b0;
    font-size: .95rem;
    margin-bottom: 36px
}

.vvd-section__head {
    margin-bottom: 36px
}

.vvd-pros-cons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.vvd-pros-cons__col {
    flex: 1;
    min-width: 280px;
    background: #252536;
    border-radius: 14px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.vvd-pros-cons__col--pros {
    border-top: 3px solid #2ecc71
}

.vvd-pros-cons__col--cons {
    border-top: 3px solid #cd1935
}

.vvd-pros-cons__heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px
}

.vvd-pros-cons__heading svg {
    flex-shrink: 0
}

.vvd-pros-cons__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .9rem;
    color: #c0c0d8;
    line-height: 1.5
}

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

.vvd-pros-cons__list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 2px
}

.vvd-pros-cons__col--pros .vvd-pros-cons__list li::before {
    background: rgba(46, 204, 113, .2);
    border: 2px solid #2ecc71
}

.vvd-pros-cons__col--cons .vvd-pros-cons__list li::before {
    background: rgba(205, 25, 53, .2);
    border: 2px solid #cd1935
}

.vvd-jackpots {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.vvd-jackpot-card {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(145deg, #2a2a40, #1e1e32);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(221, 196, 58, .2);
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease
}

.vvd-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(221, 196, 58, .2)
}

.vvd-jackpot-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(221, 196, 58, .15) 0%, transparent 70%);
    pointer-events: none
}

.vvd-jackpot-card__icon {
    font-size: 2rem;
    margin-bottom: 10px
}

.vvd-jackpot-card__name {
    font-size: .82rem;
    font-weight: 700;
    color: #9090b0;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px
}

.vvd-jackpot-card__amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: #ddc43a;
    line-height: 1.1
}

.vvd-jackpot-card__currency {
    font-size: .9rem;
    color: #7070a0;
    margin-top: 4px
}

.vvd-mirrors {
    background: #252536;
    border-radius: 14px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.vvd-mirrors__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px
}

.vvd-mirrors__datetime {
    font-size: .82rem;
    color: #2ecc71;
    display: flex;
    align-items: center;
    gap: 6px
}

.vvd-mirrors__datetime::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite
}

.vvd-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.vvd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem
}

.vvd-table th {
    background: #1d1d2e;
    color: #9090b0;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, .08)
}

.vvd-table td {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: #c8c8e0;
    vertical-align: middle
}

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

.vvd-table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.vvd-table a {
    color: #ddc43a;
    font-weight: 600
}

.vvd-table a:hover {
    text-decoration: underline
}

.vvd-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700
}

.vvd-badge--green {
    background: rgba(46, 204, 113, .15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, .3)
}

.vvd-badge--yellow {
    background: rgba(221, 196, 58, .15);
    color: #ddc43a;
    border: 1px solid rgba(221, 196, 58, .3)
}

.vvd-tournaments {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.vvd-tournament-card {
    flex: 1;
    min-width: 260px;
    background: #252536;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .07);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column
}

.vvd-tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .4)
}

.vvd-tournament-card__top {
    background: linear-gradient(135deg, #2a2a45, #1a1a30);
    padding: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.vvd-tournament-card__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px
}

.vvd-tournament-card__desc {
    font-size: .84rem;
    color: #9090b0;
    line-height: 1.5
}

.vvd-tournament-card__body {
    padding: 18px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.vvd-tournament-card__prize {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ddc43a
}

.vvd-tournament-card__prize-label {
    font-size: .78rem;
    color: #7070a0;
    text-transform: uppercase;
    letter-spacing: .4px
}

.vvd-tournament-card__timer-label {
    font-size: .78rem;
    color: #7070a0;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 4px
}

.vvd-tournament-timer {
    display: flex;
    gap: 8px
}

.vvd-timer-seg {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1d1d2e;
    border-radius: 8px;
    padding: 6px 10px;
    min-width: 46px
}

.vvd-timer-seg__val {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.vvd-timer-seg__lbl {
    font-size: .65rem;
    color: #7070a0;
    margin-top: 3px;
    text-transform: uppercase
}

.vvd-tournament-card__footer {
    padding: 0 22px 20px
}

.vvd-app {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-start
}

.vvd-app__info {
    flex: 1;
    min-width: 280px;
    background: #252536;
    border-radius: 14px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.vvd-app__downloads {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px
}

.vvd-app__dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #1d1d2e;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 12px 16px;
    transition: all .25s ease;
    text-decoration: none
}

.vvd-app__dl-btn:hover {
    border-color: #ddc43a;
    transform: translateX(4px)
}

.vvd-app__dl-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0
}

.vvd-app__dl-btn-text {
    display: flex;
    flex-direction: column
}

.vvd-app__dl-btn-sub {
    font-size: .72rem;
    color: #7070a0
}

.vvd-app__dl-btn-name {
    font-size: .95rem;
    font-weight: 700;
    color: #fff
}

.vvd-wheel-wrap {
    flex: 1;
    min-width: 280px;
    background: #252536;
    border-radius: 14px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.vvd-wheel-wrap__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    text-align: center
}

.vvd-wheel-container {
    position: relative;
    width: 260px;
    height: 260px
}

.vvd-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 32px rgba(221, 196, 58, .25);
    transition: transform 0.1s ease
}

.vvd-wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 28px solid #ddc43a;
    filter: drop-shadow(0 2px 6px rgba(221, 196, 58, .6))
}

.vvd-wheel-spin-btn {
    width: 100%
}

.vvd-wheel-result {
    text-align: center;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(46, 204, 113, .3);
    background: rgba(46, 204, 113, .08);
    display: none
}

.vvd-wheel-result.show {
    display: block
}

.vvd-wheel-result__text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 12px
}

.vvd-wheel-result__bonus {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ddc43a;
    margin-bottom: 14px
}

.vvd-content-block {
    background: #252536;
    border-radius: 14px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.vvd-content-block h1, .vvd-content-block h2, .vvd-content-block h3, .vvd-content-block h4, .vvd-content-block h5, .vvd-content-block h6 {
    color: #fff;
    margin: 1.2em 0 .6em;
    line-height: 1.3
}

.vvd-content-block h1 {
    font-size: 1.8rem
}

.vvd-content-block h2 {
    font-size: 1.45rem
}

.vvd-content-block h3 {
    font-size: 1.2rem
}

.vvd-content-block h4 {
    font-size: 1.05rem
}

.vvd-content-block p {
    margin-bottom: 1em;
    color: #c0c0d8;
    line-height: 1.7
}

.vvd-content-block ul, .vvd-content-block ol {
    padding-left: 22px;
    margin-bottom: 1em
}

.vvd-content-block ul {
    list-style: disc
}

.vvd-content-block ol {
    list-style: decimal
}

.vvd-content-block li {
    color: #c0c0d8;
    margin-bottom: .4em;
    line-height: 1.6
}

.vvd-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: .9rem
}

.vvd-content-block table th {
    background: #1d1d2e;
    color: #9090b0;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    text-align: left
}

.vvd-content-block table td {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    color: #c8c8e0
}

.vvd-content-block table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.vvd-content-block blockquote {
    border-left: 3px solid #ddc43a;
    padding: 12px 18px;
    margin: 1.2em 0;
    background: rgba(221, 196, 58, .06);
    border-radius: 0 8px 8px 0;
    color: #c8c8e0
}

.vvd-content-block a {
    color: #ddc43a;
    text-decoration: underline
}

.vvd-content-block strong, .vvd-content-block b {
    color: #fff
}

.vvd-content-block img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1em 0
}

.vvd-content-block hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 1.5em 0
}

.vvd-author {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #1d1d2e;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, .06)
}

.vvd-author__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #2a2a40;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid rgba(221, 196, 58, .3)
}

.vvd-author__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vvd-author__info {
    flex: 1
}

.vvd-author__name {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.vvd-author__name a {
    color: #ddc43a;
    text-decoration: none
}

.vvd-author__name a:hover {
    text-decoration: underline
}

.vvd-author__bio {
    font-size: .82rem;
    color: #9090b0;
    line-height: 1.5
}

.vvd-faq {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.vvd-faq-item {
    background: #252536;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .07);
    overflow: hidden;
    transition: border-color .2s
}

.vvd-faq-item.open {
    border-color: rgba(221, 196, 58, .3)
}

.vvd-faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    gap: 16px
}

.vvd-faq-item__q-text {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4
}

.vvd-faq-item__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, background .2s
}

.vvd-faq-item.open .vvd-faq-item__icon {
    transform: rotate(45deg);
    background: rgba(221, 196, 58, .2)
}

.vvd-faq-item__icon svg {
    width: 12px;
    height: 12px
}

.vvd-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.vvd-faq-item.open .vvd-faq-item__a {
    max-height: 600px
}

.vvd-faq-item__a-inner {
    padding: 0 22px 18px;
    color: #a0a0c0;
    font-size: .9rem;
    line-height: 1.7
}

.vvd-footer {
    background: #252536;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.vvd-footer__main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 32px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap
}

.vvd-footer__col {
    flex: 1;
    min-width: 200px
}

.vvd-footer__logo {
    margin-bottom: 14px
}

.vvd-footer__logo img {
    height: 42px
}

.vvd-footer__desc {
    font-size: .84rem;
    color: #6868a0;
    line-height: 1.6;
    margin-bottom: 16px
}

.vvd-footer__nav-title {
    font-size: .78rem;
    font-weight: 700;
    color: #6868a0;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 12px
}

.vvd-footer__nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.vvd-footer__nav-links a {
    font-size: .88rem;
    color: #8888b0;
    transition: color .2s
}

.vvd-footer__nav-links a:hover {
    color: #ddc43a
}

.vvd-footer__payments-label {
    font-size: .78rem;
    font-weight: 700;
    color: #6868a0;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 12px
}

.vvd-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.vvd-pay-badge {
    background: #1d1d2e;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .78rem;
    font-weight: 700;
    color: #9090b0
}

.vvd-footer__providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px
}

.vvd-provider-badge {
    background: #1d1d2e;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .75rem;
    color: #7070a0
}

.vvd-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.vvd-footer__copy {
    font-size: .78rem;
    color: #5050a0
}

.vvd-footer__legal {
    font-size: .74rem;
    color: #4a4a6a;
    line-height: 1.5;
    max-width: 680px
}

.vvd-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1a1a2e 0%, #252536 100%);
    border-top: 2px solid #cd1935;
    z-index: 2000;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.vvd-widget__text {
    display: flex;
    flex-direction: column
}

.vvd-widget__bonus {
    font-size: .9rem;
    font-weight: 800;
    color: #fff
}

.vvd-widget__bonus em {
    color: #ddc43a;
    font-style: normal
}

.vvd-widget__sub {
    font-size: .74rem;
    color: #7070a0
}

.vvd-widget__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.vvd-widget__link {
    color: #ddc43a;
    font-size: .84rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.vvd-widget__link:hover {
    color: #f0d84f
}

body {
    padding-bottom: 80px
}

.vvd-section-inner {
    position: relative
}

.vvd-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease
}

.vvd-fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.vvd-slider {
    overflow: hidden;
    position: relative
}

.vvd-slider__track {
    display: flex;
    transition: transform .4s ease
}

.vvd-slider__item {
    min-width: 100%
}

.vvd-slider__controls {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    justify-content: center
}

.vvd-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s
}

.vvd-slider__dot.active {
    background: #ddc43a;
    transform: scale(1.3)
}

.vvd-notice-bar {
    background: linear-gradient(90deg, rgba(205, 25, 53, .15), rgba(221, 196, 58, .1));
    border-bottom: 1px solid rgba(205, 25, 53, .2);
    text-align: center;
    padding: 8px 20px;
    font-size: .8rem;
    color: #c0c0d8
}

.vvd-notice-bar strong {
    color: #ddc43a
}

@media (max-width: 900px) {
    .vvd-header__nav {
        display: none
    }

    .vvd-burger {
        display: flex
    }

    .vvd-hero__title {
        font-size: 1.9rem
    }

    .vvd-tournaments {
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        scrollbar-width: thin
    }

    .vvd-tournament-card {
        min-width: 260px;
        flex: 0 0 260px
    }

    .vvd-app {
        flex-direction: column
    }

    .vvd-footer__main {
        flex-direction: column;
        gap: 24px
    }

    .vvd-footer__bottom {
        flex-direction: column;
        text-align: center
    }
}

@media (max-width: 600px) {
    .vvd-hero__title {
        font-size: 1.5rem
    }

    .vvd-hero__actions {
        flex-direction: column;
        align-items: center
    }

    .vvd-pros-cons {
        flex-direction: column
    }

    .vvd-jackpots {
        flex-direction: column
    }

    .vvd-widget {
        padding: 8px 14px
    }

    .vvd-section {
        padding: 40px 0
    }

    .vvd-header__online {
        display: none
    }
}

.wc-8xf2k {
    display: none;
    visibility: hidden
}

.elementor-post-type {
    display: none
}

.wp-caption {
    font-size: .82rem;
    color: #6060a0;
    text-align: center;
    margin-top: 4px
}

.entry-meta {
    display: none
}

.screen-reader-text {
    position: absolute;
    left: -9999px
}
