/* ============================================================
   VAVADA CASINO — css/main.css
   Palette : deep-space × gold   Font : Outfit
   ============================================================ */

/* 1. Reset & design tokens
   ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #08090f;
  --surface:     #0e1019;
  --surface-hi:  #161b2e;
  --border:      #1e2235;
  --border-hi:   #2c3456;
  --gold:        #f7b731;
  --gold-dim:    #c4921a;
  --gold-glow:   rgba(247, 183, 49, .14);
  --text:        #e8ecf8;
  --muted:       #6b7494;
  --green:       #2ad67a;
  --r:           12px;
  --r-lg:        20px;
  --t:           0.22s;
  --ease:        cubic-bezier(.4, 0, .2, 1);
}

html { overflow-x: hidden; scroll-behavior: smooth; }
img  { display: block; max-width: 100%; height: auto; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--bg);
  color: var(--muted);
  overflow-x: hidden;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* 2. Typography
   ----------------------------------------------------------- */
h1 {
  color: var(--text);
  font-size: clamp(26px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
h2 {
  color: var(--text);
  font-size: clamp(20px, 3.5vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 28px;
}
h3 { color: var(--text); font-size: 17px; font-weight: 600; }
p  { margin-bottom: 16px; }

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--gold-glow);
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.sec__intro {
  max-width: 700px;
  margin: -10px auto 36px;
  text-align: center;
  font-size: 17px;
  line-height: 1.85;
}

/* 3. Buttons
   ----------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background var(--t) var(--ease),
              transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #060810;
  padding: 10px 22px;
}
.btn-primary:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 9px 20px;
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { font-size: 16px; padding: 14px 34px; border-radius: 14px; }
.btn-lg.btn-primary {
  box-shadow: 0 0 28px var(--gold-glow);
}
.btn-lg.btn-primary:hover {
  box-shadow: 0 0 44px rgba(247,183,49,.26);
}

/* 4. Header
   ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 15, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 13px 24px;
}

.header-logo { flex-shrink: 0; }
.header-logo img { height: 34px; width: auto; }

.site-nav { display: none; }
@media (min-width: 900px) {
  .site-nav { display: flex; flex: 1; justify-content: center; }
  .hamburger { display: none !important; }
}
.site-nav ul { list-style: none; display: flex; gap: 2px; }
.site-nav a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.site-nav a:hover { color: var(--text); background: rgba(255,255,255,.05); }

.site-nav .has-sub { position: relative; }
.site-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background: var(--surface-hi);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  z-index: 10;
}
.site-nav .has-sub:hover .sub-menu { display: block; }
.site-nav .sub-menu a { border-radius: 0; padding: 10px 16px; font-size: 13px; }

.header-actions { display: flex; gap: 10px; margin-left: auto; }

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 300;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Full-screen nav overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 9, 15, .97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  color: var(--muted);
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 12px;
  transition: color var(--t), background var(--t);
}
.nav-overlay a:hover { color: var(--gold); background: var(--surface-hi); }

/* Mobile bottom CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(8, 9, 15, .97);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 10px;
}
@media (max-width: 899px) {
  .mobile-cta-bar { display: flex; }
  .mobile-cta-bar .btn { flex: 1; text-align: center; }
  .header-actions { display: none; }
}

/* 5. Sections
   ----------------------------------------------------------- */
.sec { padding: 72px 0; }
.sec--alt { background: var(--surface); }

/* 6. Hero
   ----------------------------------------------------------- */
.hero {
  padding: 80px 0 64px;
  background:
    radial-gradient(ellipse 90% 60% at 75% 55%, rgba(247,183,49,.07) 0%, transparent 65%),
    var(--bg);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) { .hero__inner { grid-template-columns: 1fr 1fr; } }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-hi);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.hero__badge::before { content: '★'; }

.hero h1 { margin-bottom: 20px; }

.hero__lead {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 32px;
}

.hero__cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__fine { font-size: 12px; color: var(--muted); margin-top: 12px; }

.hero__visual img {
  border-radius: var(--r-lg);
  width: 100%;
  box-shadow: 0 20px 80px rgba(0,0,0,.7), 0 0 80px rgba(247,183,49,.06);
}

/* 7. Tables
   ----------------------------------------------------------- */
.table-wrapper { overflow-x: auto; border-radius: var(--r); }

.info-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--surface);
}
.info-table thead th {
  background: var(--surface-hi);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.info-table tbody td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  vertical-align: top;
}
.info-table tbody tr:last-child td { border-bottom: none; }
.info-table tbody tr:hover td { background: var(--gold-glow); }
.info-table td:first-child { color: var(--text); font-weight: 500; }

.comparison-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--surface);
}
.comparison-table th,
.comparison-table td {
  padding: 13px 16px;
  text-align: center;
  border: 1px solid var(--border);
  font-size: 14px;
  vertical-align: middle;
}
.comparison-table thead th {
  background: var(--surface-hi);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
}
.comparison-table tbody td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}
.comparison-table .hl {
  background: var(--gold-glow);
  color: var(--gold);
  font-weight: 700;
}

/* 8. Slider
   ----------------------------------------------------------- */
.slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}
.slides-track { display: flex; transition: transform .5s var(--ease); }

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 40px;
  align-items: center;
  text-align: center;
}
@media (min-width: 720px) {
  .slide { grid-template-columns: 280px 1fr; text-align: left; }
}
.slide img { border-radius: var(--r); width: 100%; max-width: 280px; margin: 0 auto; }
.slide h3 { font-size: 21px; color: var(--text); margin-bottom: 12px; }
.slide p  { margin-bottom: 20px; }

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 24px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--t), width var(--t);
}
.dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* 9. Feature list
   ----------------------------------------------------------- */
.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 18px 0 24px;
}
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.55;
  transition: border-color var(--t);
}
.feat-list li:hover { border-color: rgba(247,183,49,.3); }
.feat-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: #07080e;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 10. Split layout (text + image)
   ----------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip > .split__img { order: -1; }
}
.split__text p { margin-bottom: 18px; line-height: 1.85; }
.split__text h3 {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  margin: 20px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}
.split__text .btn { margin-top: 24px; }
.split__img img {
  border-radius: var(--r-lg);
  width: 100%;
  box-shadow: 0 12px 48px rgba(0,0,0,.55);
}
@media (max-width: 899px) { .split__img { display: none; } }

/* 11. Duo (two text columns)
   ----------------------------------------------------------- */
.duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 40px;
}
@media (min-width: 900px) { .duo { grid-template-columns: 1fr 1fr; gap: 64px; } }
.duo__col h2 {
  text-align: left;
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 14px;
}
.duo__col h3 {
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  margin: 18px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}
.duo__col p { margin-bottom: 14px; line-height: 1.8; }

/* 12. VIP status pills
   ----------------------------------------------------------- */
.vip-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.vip-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: border-color var(--t);
}
.vip-pill:hover { border-color: var(--gold); }
.vip-pill__num {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

/* 13. Notice box
   ----------------------------------------------------------- */
.notice {
  background: rgba(247,183,49,.07);
  border: 1px solid rgba(247,183,49,.22);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.7;
  margin: 18px 0 0;
}
.notice strong { color: var(--gold); }

/* 14. Slots grid
   ----------------------------------------------------------- */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.slot-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.slot-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
}
.slot-card img { width: 100%; height: 136px; object-fit: cover; }
.slot-card__foot {
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.slot-card__foot h3 { font-size: 13px; color: var(--text); margin: 0; }

/* 15. Providers grid
   ----------------------------------------------------------- */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 10px;
  margin: 24px 0;
}
.provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  background: var(--surface-hi);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--t), background var(--t);
}
.provider-logo:hover { border-color: var(--gold); background: var(--gold-glow); }
.provider-logo img {
  max-width: 88px;
  max-height: 36px;
  object-fit: contain;
  filter: grayscale(1) brightness(.65);
  transition: filter var(--t);
}
.provider-logo:hover img { filter: none; }

/* 16. Registration steps
   ----------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin: 36px 0;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: border-color var(--t);
}
.step:hover { border-color: var(--gold); }
.step__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #06080e;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 15px; margin-bottom: 8px; }
.step p  { font-size: 14px; margin-bottom: 0; }

/* 17. FAQ accordion
   ----------------------------------------------------------- */
.faq-container { max-width: 760px; margin: 36px auto 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 8px;
  transition: border-color var(--t);
}
.faq-item[open] { border-color: var(--border-hi); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: background var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { background: var(--surface-hi); }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 22px;
  color: var(--gold);
  transition: transform var(--t);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-content {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.8;
}

/* 18. Gallery
   ----------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.gallery-item {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
}
.gallery-item img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  transition: transform .32s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

/* 19. Footer
   ----------------------------------------------------------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col h4 {
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.footer-col p { font-size: 14px; line-height: 1.75; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--t);
}
.footer-links a:hover { color: var(--gold); }
.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* 20. Utilities
   ----------------------------------------------------------- */
.text-center { text-align: center; }
.cta-row     { text-align: center; margin: 40px 0; }
.mt-32       { margin-top: 32px; }
