/* ============================================================
   Vavada Casino PL — main.css  |  Space Grotesk / gold-black
   ============================================================ */

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

:root {
  --bg:        #090A0F;
  --bg-card:   #0F1019;
  --bg-raised: #141520;
  --border:    #1C1F2E;
  --gold:      #C49A0E;
  --gold-hi:   #EBB81A;
  --text:      #ECEEF5;
  --muted:     #8792A8;
  --ok:        #30D07F;
  --r:         14px;
  --r-sm:      8px;
  --pill:      999px;
  --t:         0.22s ease;
}

html { overflow-x: hidden; scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--muted);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Layout ── */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section        { padding: 72px 0; }
.section--alt   { background: var(--bg-raised); }

.section__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  text-align: center;
}

.section__title {
  color: var(--text);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  text-align: center;
}

.section__lead {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 17px;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--t);
  border-radius: var(--pill);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, #C49A0E 0%, #EBB81A 100%);
  color: #090A0F;
  padding: 13px 28px;
}
.btn--gold:hover {
  background: linear-gradient(135deg, #EBB81A 0%, #C49A0E 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,14,.35);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  padding: 12px 26px;
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--cta {
  background: linear-gradient(135deg, #C49A0E 0%, #EBB81A 100%);
  color: #090A0F;
  padding: 16px 44px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 4px 28px rgba(196,154,14,.25);
}
.btn--cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(196,154,14,.45);
}

/* ── Navigation ── */
.pg-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(9,10,15,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.pg-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.pg-nav__logo img { height: 38px; width: auto; }

.pg-nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 10;
}
.pg-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}
.pg-nav__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.pg-nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pg-nav__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.pg-nav__drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: 288px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  transform: translateX(-100%);
  transition: transform .3s ease;
  overflow-y: auto;
  z-index: 800;
  padding: 80px 0 48px;
}
.pg-nav__drawer.is-open { transform: translateX(0); }

.pg-nav__links { list-style: none; padding: 0 20px; }
.pg-nav__links li { margin-bottom: 2px; }
.pg-nav__links a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  transition: var(--t);
}
.pg-nav__links a:hover {
  color: var(--text);
  background: rgba(255,255,255,.05);
}

.pg-nav__dropdown { position: relative; }
.pg-nav__dropdown-content {
  display: none;
  padding: 4px 0 4px 14px;
}
.pg-nav__dropdown.is-open .pg-nav__dropdown-content { display: block; }
.pg-nav__dropdown-content a { font-size: 14px; padding: 8px 12px; }

.pg-nav__actions { display: flex; gap: 10px; }

.pg-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 799;
}
.pg-nav__overlay.is-visible { display: block; }

/* Mobile sticky CTA */
.pg-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(9,10,15,.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  z-index: 700;
  gap: 10px;
}

@media (max-width: 767px) {
  .pg-nav__actions { display: none; }
  .pg-sticky { display: flex; }
  .pg-sticky .btn { flex: 1; justify-content: center; }
  body { padding-bottom: 72px; }
}

/* ── Hero ── */
.pg-hero {
  padding: 80px 0 64px;
  background: linear-gradient(155deg, #0B0D15 0%, #0D0F1A 55%, #090A0F 100%);
  overflow: hidden;
  position: relative;
}
.pg-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 65% at 72% 50%, rgba(196,154,14,.07) 0%, transparent 70%);
  pointer-events: none;
}

.pg-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 800px) {
  .pg-hero__grid { grid-template-columns: 1fr 1fr; }
}

.pg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196,154,14,.1);
  border: 1px solid rgba(196,154,14,.28);
  color: var(--gold-hi);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--pill);
  margin-bottom: 20px;
}

.pg-hero__title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
}
.pg-hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, #C49A0E, #EBB81A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pg-hero__desc {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

.pg-hero__perks {
  list-style: none;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pg-hero__perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.pg-hero__perks li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px;
}

.pg-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pg-hero__img { text-align: center; }
.pg-hero__img img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--r);
  box-shadow: 0 28px 80px rgba(0,0,0,.6);
}

/* ── Stats bar ── */
.pg-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  background: var(--border);
  gap: 1px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pg-stats__cell {
  background: var(--bg-card);
  padding: 22px 18px;
  text-align: center;
}
.pg-stats__val {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.pg-stats__lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Tables ── */
.tbl-wrap {
  overflow-x: auto;
  border-radius: var(--r);
  border: 1px solid var(--border);
}

.tbl-specs, .tbl-pay {
  width: 100%;
  border-collapse: collapse;
}

.tbl-specs { min-width: 480px; }
.tbl-pay   { min-width: 560px; }

.tbl-specs th, .tbl-pay th {
  background: var(--bg-raised);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.tbl-specs td, .tbl-pay td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.55;
  vertical-align: middle;
}

.tbl-specs td:first-child {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  width: 34%;
}

.tbl-specs tr:last-child td,
.tbl-pay   tr:last-child td { border-bottom: none; }

.tbl-specs tr:nth-child(even) td,
.tbl-pay   tr:nth-child(even) td { background: rgba(255,255,255,.018); }

.chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--pill);
  font-size: 12px;
  font-weight: 700;
}
.chip--fast    { background: rgba(48,208,127,.14); color: var(--ok); }
.chip--instant { background: rgba(196,154,14,.14); color: var(--gold-hi); }

/* ── Bonus cards ── */
.bonus-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C49A0E, #EBB81A);
}
.bonus-card:hover {
  border-color: rgba(196,154,14,.38);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(196,154,14,.1);
}

.bonus-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.bonus-card__amount {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.bonus-card__sub { font-size: 14px; margin-bottom: 18px; }
.bonus-card__terms {
  list-style: none;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bonus-card__terms li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.bonus-card__terms li::before {
  content: '–';
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Feature list ── */
.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.feat-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 15px;
  transition: var(--t);
}
.feat-list li:hover { border-color: rgba(196,154,14,.28); }
.feat-list__dot {
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col--flip > .two-col__media { order: -1; }
}

.two-col__text h3 {
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  margin: 24px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.two-col__text p { margin-bottom: 18px; line-height: 1.8; }
.two-col__text .btn { margin-top: 28px; }

.two-col__media { text-align: center; }
.two-col__media img {
  width: 100%;
  height: auto;
  border-radius: var(--r);
  box-shadow: 0 14px 52px rgba(0,0,0,.55);
}

@media (max-width: 899px) { .two-col__media { display: none; } }

/* ── Twin columns (two text blocks) ── */
.twin-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .twin-col { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.twin-col__block h2 {
  color: var(--text);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  text-align: left;
  margin-bottom: 14px;
}
.twin-col__block h3 {
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  margin: 22px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}
.twin-col__block p { margin-bottom: 16px; line-height: 1.8; }

/* ── Slider ── */
.slider-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.slider-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.slide-item {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .slide-item { flex-direction: row; text-align: left; }
}
.slide-item img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.slide-item__body h3 {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.slide-item__body p { margin-bottom: 20px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}
.s-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--pill);
  background: var(--border);
  cursor: pointer;
  transition: var(--t);
  border: none;
  padding: 0;
}
.s-dot.is-on {
  background: var(--gold);
  width: 28px;
}

/* ── Slot tiles ── */
.slots-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin: 36px 0;
}
.slot-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--t);
}
.slot-tile:hover {
  border-color: rgba(196,154,14,.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(196,154,14,.12);
}
.slot-tile img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  display: block;
}
.slot-tile__foot {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.slot-tile__name {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slot-tile .btn--gold {
  padding: 6px 14px;
  font-size: 12px;
}

/* ── Providers ── */
.providers-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin: 32px 0;
}
.provider-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: var(--t);
}
.provider-tile:hover {
  border-color: rgba(196,154,14,.4);
  background: rgba(196,154,14,.04);
}
.provider-tile img {
  max-width: 86px;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(1) brightness(.7);
  transition: var(--t);
}
.provider-tile:hover img {
  filter: grayscale(0) brightness(1);
}

/* ── VIP badges ── */
.vip-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 12px;
  margin: 32px 0;
}
.vip-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 14px;
  text-align: center;
  transition: var(--t);
}
.vip-badge:nth-child(4) { border-color: rgba(148,163,184,.35); }
.vip-badge:nth-child(5) { border-color: rgba(196,154,14,.4); }
.vip-badge:nth-child(6) {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(196,154,14,.08), var(--bg-card));
}
.vip-badge__name {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.vip-badge__info { font-size: 12px; line-height: 1.5; }

/* ── Registration steps ── */
.reg-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 40px 0;
}
.reg-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
}
.reg-step__num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #C49A0E, #EBB81A);
  color: #090A0F;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.reg-step h3 {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.reg-step p { font-size: 14px; line-height: 1.6; }

/* ── FAQ ── */
.faq-stack {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-entry {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.faq-entry summary {
  padding: 18px 20px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--t);
}
.faq-entry summary:hover { background: rgba(255,255,255,.02); }
.faq-entry summary::-webkit-details-marker { display: none; }
.faq-entry summary::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-entry[open] summary::after { transform: rotate(45deg); }
.faq-entry__body {
  padding: 0 20px 20px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.75;
}

/* ── Gallery ── */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.gallery-row img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--border);
  transition: var(--t);
}
.gallery-row img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  border-color: rgba(196,154,14,.4);
}

/* ── CTA block ── */
.cta-block {
  text-align: center;
  padding: 72px 24px;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(196,154,14,.07) 0%, transparent 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-block h2 { margin-bottom: 14px; }
.cta-block p { max-width: 540px; margin: 0 auto 32px; font-size: 17px; }

/* ── Footer ── */
.pg-footer {
  background: var(--bg-card);
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}
.pg-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .pg-footer__grid { grid-template-columns: repeat(3, 1fr); }
}
.pg-footer__col h4 {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.pg-footer__col p { font-size: 13px; line-height: 1.7; }
.pg-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pg-footer__nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--t);
}
.pg-footer__nav a:hover { color: var(--gold); }
.pg-footer__legal {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  opacity: .72;
}

/* ── Misc ── */
.text-center { text-align: center; }
.mt-cta { margin-top: 40px; text-align: center; }

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .pg-hero { padding: 48px 0; }
  .section__title { font-size: 24px; }
  .slide-item { padding: 24px; }
  .slot-tile img { height: 120px; }
}
