/* Vikings Vacation — blue / gold / pink */
html, body { margin: 0; padding: 0; background: #061A33; }
body.vv-body {
  min-height: 100%; overflow-x: hidden;
  font-family: Nunito, system-ui, sans-serif;
  color: #fff; -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(1200px 520px at 70% -120px, rgba(53,214,232,.18), transparent 70%),
    #061A33;
}
* { box-sizing: border-box; }
a { color: #FFC01E; text-decoration: none; }
a:hover { color: #FFD75E; }
a:focus-visible, button:focus-visible {
  outline: 2px solid #FFC01E; outline-offset: 2px;
}
h1, h2, h3, h4 {
  font-family: "Baloo 2", Nunito, sans-serif;
  letter-spacing: -0.01em;
}

@keyframes vvTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes vvPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.vv-shell { display: block; min-height: 100vh; padding-left: 310px; }
.vv-main { min-width: 0; padding: 0 28px 0 0; }

/* Aside */
.vv-aside--desktop {
  position: fixed; left: 0; top: 0; bottom: 0; z-index: 40;
  width: 248px; display: flex; flex-direction: column; gap: 14px;
  padding: 18px 16px; overflow-y: auto;
  background: #0A2242; border-right: 1px solid #143B68;
}
.vv-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 82px; flex: 0 0 82px; overflow: hidden;
}
.vv-logo--aside {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; display: block;
}
.vv-loginbox {
  display: flex; flex-direction: column; gap: 14px;
  padding: 14px; margin: 0 -4px; border-radius: 14px;
  background: #071B34; border: 1px solid #1B4674;
}
.vv-login-hint {
  margin: 0; font-size: 11px; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase;
  color: #7FA3C7; text-align: center;
}
.vv-aside-rule {
  height: 2px; flex: 0 0 auto;
  background: linear-gradient(90deg, transparent, #1F4C7D, transparent);
}

.vv-nav-slot--desktop .vv-main-nav,
.vv-nav-slot--mobile .vv-main-nav {
  display: flex; flex-direction: column; gap: 8px;
}
.vv-nav-slot--desktop .vv-nav-link,
.vv-nav-slot--mobile .vv-nav-link {
  display: flex; align-items: center; height: 46px; padding: 0 14px;
  border-radius: 10px; font-weight: 900; font-size: 13.5px;
  letter-spacing: .05em; text-transform: uppercase; color: #fff;
  transition: transform .15s ease;
}
.vv-nav-slot--desktop .vv-nav-link:hover,
.vv-nav-slot--mobile .vv-nav-link:hover { transform: translateX(3px); color: inherit; }

.vv-nav-slot--desktop .vv-nav-link:nth-child(7n+1),
.vv-nav-slot--mobile .vv-nav-link:nth-child(7n+1) {
  background: #FFC01E; color: #3A1D00; box-shadow: 0 3px 0 #B26A00;
}
.vv-nav-slot--desktop .vv-nav-link:nth-child(7n+2),
.vv-nav-slot--mobile .vv-nav-link:nth-child(7n+2) {
  background: #FF2E80; color: #fff; box-shadow: 0 3px 0 #A8145A;
}
.vv-nav-slot--desktop .vv-nav-link:nth-child(7n+3),
.vv-nav-slot--mobile .vv-nav-link:nth-child(7n+3) {
  background: #35D6E8; color: #03303A; box-shadow: 0 3px 0 #146F7C;
}
.vv-nav-slot--desktop .vv-nav-link:nth-child(7n+4),
.vv-nav-slot--mobile .vv-nav-link:nth-child(7n+4) {
  background: #9B5DE5; color: #fff; box-shadow: 0 3px 0 #5B2F9B;
}
.vv-nav-slot--desktop .vv-nav-link:nth-child(7n+5),
.vv-nav-slot--mobile .vv-nav-link:nth-child(7n+5) {
  background: #3FC42C; color: #0A2D05; box-shadow: 0 3px 0 #1B8A0F;
}
.vv-nav-slot--desktop .vv-nav-link:nth-child(7n+6),
.vv-nav-slot--mobile .vv-nav-link:nth-child(7n+6) {
  background: #FF7A1A; color: #3A1600; box-shadow: 0 3px 0 #B24C00;
}
.vv-nav-slot--desktop .vv-nav-link:nth-child(7n),
.vv-nav-slot--mobile .vv-nav-link:nth-child(7n) {
  background: #E8302B; color: #fff; box-shadow: 0 3px 0 #961510;
}

/* Drawer */
.vv-overlay {
  position: fixed; inset: 0; z-index: 60; background: rgba(4, 14, 28, .72);
}
.vv-overlay[hidden] { display: none !important; }
.vv-drawer {
  position: fixed; left: 0; top: 0; bottom: 0; z-index: 70;
  width: min(282px, 86vw); display: flex; flex-direction: column; gap: 14px;
  padding: 18px 16px; overflow-y: auto;
  background: #0A2242; border-right: 1px solid #143B68;
  box-shadow: 14px 0 40px rgba(0,0,0,.55);
  transform: translateX(0); transition: transform .3s ease;
}
.vv-drawer[hidden] {
  display: flex !important; transform: translateX(-104%); pointer-events: none;
}
.vv-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
}
.vv-drawer-title {
  font-family: "Baloo 2", sans-serif; font-size: 20px; font-weight: 800; color: #FFC01E;
}
.vv-drawer-close {
  width: 40px; height: 40px; border: 0; border-radius: 12px;
  background: #123255; color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
}

/* Vertical wood plank (same asset as header/footer dividers) */
.vv-vdiv {
  pointer-events: none;
  background-size: 100% auto; background-position: center; background-repeat: no-repeat;
}
.vv-vdiv--desktop {
  position: fixed; left: 270px; top: 0; z-index: 41;
  width: 100vh; height: 46px;
  transform-origin: 0 0; transform: rotate(90deg);
}
.vv-vdiv--drawer {
  position: absolute; left: 100%; top: 0; z-index: 1;
  width: 100vh; height: 46px;
  transform-origin: 0 0; transform: rotate(90deg);
}

/* Header */
.vv-header {
  position: relative; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; height: 72px; padding: 0 4px;
  background: rgba(6,26,51,.88); backdrop-filter: blur(10px);
}
.vv-burger {
  display: none; flex: 0 0 auto; width: 52px; height: 52px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0; border: 0; border-bottom: 4px solid #12508F; border-radius: 12px;
  background: #123255; cursor: pointer;
}
.vv-burger span {
  display: block; width: 22px; height: 3px; border-radius: 2px; background: #fff;
}
.vv-header-meta {
  display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; flex-wrap: wrap;
}
.vv-online {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 99px;
  background: #0E2C51; border: 1px solid #1B4674;
  font-size: 12px; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; color: #7FE8C0;
}
.vv-online-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22E08A;
  animation: vvPulse 1.6s ease-in-out infinite;
}
.vv-jackpot {
  font-size: 13px; font-weight: 700; color: #9FC2E4; white-space: nowrap;
}
.vv-jackpot strong { color: #FFC01E; font-size: 15px; }
.vv-header-cta { flex: 0 0 auto; }

/* Forms / buttons Example 2 */
.vv-form { margin: 0; display: inline; }
.vv-form--game, .vv-form--pay, .vv-form--prov { display: block; width: 100%; height: 100%; }
.vv-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Baloo 2", sans-serif; font-weight: 800; cursor: pointer;
  border: 0; text-decoration: none; transition: filter .18s ease;
}
.vv-btn:hover { filter: brightness(1.07); }
.vv-btn--block { width: 100%; }
.vv-btn--login {
  height: 52px; width: 100%; border-radius: 12px;
  border-bottom: 4px solid #B26A00;
  background: linear-gradient(#FFD75E, #FFA914); color: #3A1D00;
  font-size: 20px; box-shadow: 0 0 22px rgba(255,192,30,.35);
}
.vv-btn--reg {
  height: 44px; padding: 0 26px; border-radius: 12px;
  border-bottom: 4px solid #A8145A;
  background: linear-gradient(#FF6BA8, #FF2E80); color: #fff;
  font-size: 19px; box-shadow: 0 0 24px rgba(255,46,128,.4);
}
.vv-btn--hero {
  margin-top: 1em; height: auto; padding: 0.45em 1.3em;
  border-radius: 0.6em; border-bottom: 0.2em solid #8A0F3F;
  background: linear-gradient(#FF4F97, #E80E63); color: #fff;
  font-size: clamp(14px, 1.9vw, 26px);
  box-shadow: 0 0 34px rgba(232,14,99,.55), 0 0 0 0.16em rgba(255,255,255,.9);
  margin-right: clamp(20px, 7vw, 96px);
}
.vv-btn--more {
  height: 54px; padding: 0 34px; border-radius: 14px; font-size: 21px;
}
.vv-btn--more-cyan {
  border-bottom: 5px solid #146F7C;
  background: linear-gradient(#6CE9F7, #28C2D6); color: #03303A;
}
.vv-btn--more-purple {
  border-bottom: 5px solid #5B2F9B;
  background: linear-gradient(#BE92F5, #8B4CE0); color: #fff;
}

.vv-divider {
  width: 100%; aspect-ratio: 2172 / 109;
  background-size: 100% auto; background-position: center 48.8%;
  background-repeat: no-repeat; margin: 4px 0 26px;
}
.vv-divider--foot { margin: 56px 0 0; }

/* Hero */
.vv-hero { max-width: 1400px; margin: 0 auto; }
.vv-hero-frame {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 3px solid #FFC01E;
  box-shadow: 0 0 0 6px rgba(255,192,30,.12), 0 24px 60px rgba(0,0,0,.45);
}
.vv-hero-img { width: 100%; height: auto; display: block; }
.vv-hero-copy {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: flex-end; justify-content: center;
  padding: 0 clamp(14px, 3vw, 64px); text-align: right;
}
.vv-hero-title {
  margin: 0.28em 0 0; width: min(48%, 520px);
  font-size: clamp(21px, 3.6vw, 52px); line-height: .98; font-weight: 800;
  color: #FFD75E;
}

/* Winners */
.vv-winners {
  max-width: 1400px; margin: 28px auto 0; border-radius: 16px;
  background: #0A2242; border: 1px solid #1B4674; overflow: hidden;
  display: flex; align-items: stretch;
}
.vv-winners-label {
  flex: 0 0 auto; display: flex; align-items: center; padding: 0 18px;
  background: linear-gradient(#FFD75E, #FFA914); color: #3A1D00;
  font-family: "Baloo 2", sans-serif; font-size: 18px; font-weight: 800;
  white-space: nowrap;
}
.vv-winners-band { flex: 1; min-width: 0; overflow: hidden; padding: 10px 0; }
.vv-winners-track {
  display: flex; width: max-content; gap: 12px;
  animation: vvTicker 42s linear infinite;
}
.vv-win {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px; border-radius: 99px; flex: 0 0 auto;
  background: #123255; border: 1px solid #1F4C7D; white-space: nowrap;
}
.vv-win-thumb img {
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  border: 2px solid #35D6E8; display: block;
}
.vv-win-name { font-size: 13px; font-weight: 800; color: #fff; }
.vv-win-amt { font-size: 14px; font-weight: 900; color: #FFC01E; }

/* Sections */
.vv-section {
  max-width: 1400px; margin: 44px auto 0;
}
.vv-section--tight { margin-top: 56px; }
.vv-heading {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 18px;
}
.vv-heading-title {
  margin: 0; font-size: clamp(26px, 2.6vw, 40px); font-weight: 800; color: #fff;
}
.vv-heading-note { font-size: 13px; font-weight: 800; color: #9FC2E4; }
.vv-accent-pink { color: #FF2E80; }
.vv-accent-cyan { color: #35D6E8; }
.vv-accent-purple { color: #9B5DE5; }
.vv-more-wrap { display: flex; justify-content: center; margin-top: 24px; }

/* Games */
.vv-games-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px;
}
.vv-game { display: flex; flex-direction: column; gap: 8px; }
.vv-game.is-hidden { display: none !important; }
.vv-game-card {
  display: block; width: 100%; padding: 0; border: 0; border-radius: 16px;
  background: transparent; cursor: pointer;
}
.vv-game-frame {
  display: block; border-radius: 16px; padding: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.vv-game-frame img {
  width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 12px; display: block;
}
.vv-game:nth-child(8n+1) .vv-game-frame { background: #FFC01E; }
.vv-game:nth-child(8n+2) .vv-game-frame { background: #FF2E80; }
.vv-game:nth-child(8n+3) .vv-game-frame { background: #35D6E8; }
.vv-game:nth-child(8n+4) .vv-game-frame { background: #3FC42C; }
.vv-game:nth-child(8n+5) .vv-game-frame { background: #9B5DE5; }
.vv-game:nth-child(8n+6) .vv-game-frame { background: #FF7A1A; }
.vv-game:nth-child(8n+7) .vv-game-frame { background: #E8302B; }
.vv-game:nth-child(8n) .vv-game-frame { background: #2E9BFF; }
.vv-game-meta {
  min-height: 18px; font-size: 12px; font-weight: 800; color: #7FE8C0; text-align: center;
}
.vv-game-meta--empty { visibility: hidden; }

/* Content */
.vv-article {
  border-radius: 20px; padding: clamp(18px, 3vw, 32px);
  background: #0A2242; border: 1px solid #1B4674;
}
.vv-content { font-size: 17px; line-height: 1.65; color: #CFE4F7; }
.vv-content h1, .vv-content h2 {
  margin: 0 0 12px; font-size: clamp(26px, 2.6vw, 40px); font-weight: 800; color: #FFC01E;
}
.vv-content h3 {
  margin: 22px 0 10px; font-size: 24px; font-weight: 800; color: #35D6E8;
}
.vv-content p { margin: 0 0 18px; }
.vv-content ul, .vv-content ol {
  margin: 0 0 22px; padding-left: 0; list-style: none;
  display: grid; gap: 10px;
}
.vv-content li { font-size: 16px; line-height: 1.55; color: #CFE4F7; }
.vv-content a { color: #FFC01E; }
.vv-content blockquote {
  margin: 0; padding: 20px 24px; border-radius: 16px;
  background: linear-gradient(135deg, #0F3A64, #0A2242);
  border-left: 8px solid #FFC01E;
  font-family: "Baloo 2", sans-serif; font-size: 21px; line-height: 1.4; color: #fff;
}
.vv-content table {
  width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 22px;
}
.vv-content table td, .vv-content table th {
  padding: 14px 20px; border-bottom: 1px solid #14375F; vertical-align: top;
  color: #CFE4F7;
}
.vv-content table tr:nth-child(even) td { background: #0D2A4E; }
.vv-content-cta {
  margin-top: 28px; display: flex; justify-content: center;
}
.vv-content-cta .vv-btn--hero { margin-right: 0; }

@media (max-width: 768px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

/* Payments */
.vv-pay-row {
  display: flex; gap: 16px; overflow-x: auto; padding: 4px 4px 16px;
  -webkit-overflow-scrolling: touch;
}
.vv-pay { flex: 0 0 auto; width: 184px; height: 104px; }
.vv-pay-card {
  width: 100%; height: 100%; padding: 4px; border: 0; border-radius: 16px;
  cursor: pointer; box-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.vv-pay:nth-child(8n+1) .vv-pay-card { background: #FFC01E; }
.vv-pay:nth-child(8n+2) .vv-pay-card { background: #FF2E80; }
.vv-pay:nth-child(8n+3) .vv-pay-card { background: #35D6E8; }
.vv-pay:nth-child(8n+4) .vv-pay-card { background: #3FC42C; }
.vv-pay:nth-child(8n+5) .vv-pay-card { background: #9B5DE5; }
.vv-pay:nth-child(8n+6) .vv-pay-card { background: #FF7A1A; }
.vv-pay:nth-child(8n+7) .vv-pay-card { background: #E8302B; }
.vv-pay:nth-child(8n) .vv-pay-card { background: #2E9BFF; }
.vv-pay-inner {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; border-radius: 12px; padding: 16px;
}
.vv-pay:nth-child(8n+1) .vv-pay-inner { background: #B26A00; }
.vv-pay:nth-child(8n+2) .vv-pay-inner { background: #A8145A; }
.vv-pay:nth-child(8n+3) .vv-pay-inner { background: #146F7C; }
.vv-pay:nth-child(8n+4) .vv-pay-inner { background: #1B8A0F; }
.vv-pay:nth-child(8n+5) .vv-pay-inner { background: #5B2F9B; }
.vv-pay:nth-child(8n+6) .vv-pay-inner { background: #B24C00; }
.vv-pay:nth-child(8n+7) .vv-pay-inner { background: #961510; }
.vv-pay:nth-child(8n) .vv-pay-inner { background: #12508F; }
.vv-pay-inner img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; display: block;
}

/* Providers — 8 cols; show-more = +1 full row */
.vv-prov-grid {
  display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 14px;
}
.vv-prov.is-hidden { display: none !important; }
.vv-prov-card {
  width: 100%; padding: 3px; border: 0; border-radius: 14px; cursor: pointer;
}
.vv-prov:nth-child(8n+1) .vv-prov-card { background: #FFC01E; }
.vv-prov:nth-child(8n+2) .vv-prov-card { background: #FF2E80; }
.vv-prov:nth-child(8n+3) .vv-prov-card { background: #35D6E8; }
.vv-prov:nth-child(8n+4) .vv-prov-card { background: #3FC42C; }
.vv-prov:nth-child(8n+5) .vv-prov-card { background: #9B5DE5; }
.vv-prov:nth-child(8n+6) .vv-prov-card { background: #FF7A1A; }
.vv-prov:nth-child(8n+7) .vv-prov-card { background: #E8302B; }
.vv-prov:nth-child(8n) .vv-prov-card { background: #2E9BFF; }
.vv-prov-inner {
  border-radius: 11px; background: #0A2242; height: 76px;
  display: flex; align-items: center; justify-content: center; padding: 12px;
}
.vv-prov-inner img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; display: block;
}

/* Footer */
.vv-footer {
  max-width: 1400px; margin: 0 auto; padding: 32px 0 56px;
}
.vv-footer-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 28px; text-align: center; width: 100%;
}
.vv-footer-brand {
  display: flex; flex-direction: column; align-items: center; width: 100%;
}
.vv-logo--footer {
  height: 82px; width: auto; max-width: 200px; object-fit: contain;
  display: block; margin: 0 auto 18px;
}
.vv-nav-slot--footer { width: 100%; }
.vv-nav-slot--footer .vv-footer-nav {
  display: flex; flex-direction: row; flex-wrap: wrap;
  justify-content: center; align-items: center; gap: 12px 28px;
}
.vv-footer-link {
  font-family: "Baloo 2", sans-serif; font-size: 18px; font-weight: 700; color: #CFE4F7;
}
.vv-footer-link:hover { color: #FFC01E; }
.vv-safe-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 20px;
}
.vv-safe-img {
  height: 30px; width: auto; object-fit: contain; display: block;
}
.vv-rg {
  margin: 28px 0 0; padding-top: 18px; border-top: 1px solid #143B68;
  font-size: 13px; color: #7FA3C7; text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .vv-winners-track, .vv-online-dot { animation: none !important; }
}

@media (max-width: 1100px) {
  .vv-games-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .vv-prov-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .vv-shell { padding-left: 0; }
  .vv-main { padding: 0 14px; }
  .vv-aside--desktop { display: none !important; }
  .vv-vdiv--desktop { display: none !important; }
  .vv-burger { display: flex; }
  .vv-header { height: auto; min-height: 64px; padding: 10px 0; gap: 10px; }
  .vv-header-meta { gap: 8px; }
  .vv-jackpot { font-size: 12px; }
}

@media (max-width: 820px) {
  .vv-games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .vv-prov-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vv-hero-img {
    aspect-ratio: 4 / 3; object-fit: cover; object-position: 3% 50%; height: auto;
  }
  .vv-hero-copy {
    position: static; display: block; padding: 0; text-align: center;
  }
  .vv-hero-title {
    width: 100%; margin: 0; padding: 14px 14px 0; font-size: 26px;
  }
  .vv-btn--hero {
    margin: 14px auto 20px; display: inline-flex; margin-right: auto;
    font-size: 17px;
  }
  .vv-footer-inner { justify-content: center; text-align: center; }
  .vv-logo--footer { margin-left: auto; margin-right: auto; }
  .vv-nav-slot--footer .vv-footer-nav { align-items: center; }
  .vv-safe-row { justify-content: center; }
}

@media (max-width: 420px) {
  .vv-games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vv-online { font-size: 10px; padding: 6px 8px; }
  .vv-btn--reg { padding: 0 14px; font-size: 15px; height: 42px; }
  .vv-header-meta .vv-jackpot { display: none; }
}
