/* ============================================================
   vx-styles.css — Divaspin Casino Deutschland
   Prefix: vx-   |   Fonts: Outfit + Inter
   Palette: navy #0a0820, purple #7c3aed, gold #d4a55a
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --vx-navy: #0a0820;
  --vx-navy-light: #131030;
  --vx-navy-mid: #1a1640;
  --vx-purple: #7c3aed;
  --vx-purple-soft: #9b6bf0;
  --vx-purple-deep: #6b21a8;
  --vx-gold: #d4a55a;
  --vx-gold-light: #e8c97e;
  --vx-teal: #10b981;
  --vx-teal-dark: #059669;
  --vx-white: #ffffff;
  --vx-off-white: #e8e6f0;
  --vx-grey: #9896a6;
  --vx-grey-dark: #6b6980;
  --vx-danger: #ef4444;

  --vx-font-head: 'Outfit', sans-serif;
  --vx-font-body: 'Inter', sans-serif;

  --vx-radius-sm: 8px;
  --vx-radius-md: 14px;
  --vx-radius-lg: 22px;
  --vx-radius-full: 999px;

  --vx-container: 1180px;
  --vx-gap: 24px;
  --vx-transition: .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--vx-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--vx-off-white);
  background: var(--vx-navy);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vx-gold); text-decoration: none; transition: color var(--vx-transition); }
a:hover { color: var(--vx-gold-light); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--vx-font-head); font-weight: 700; line-height: 1.2; color: var(--vx-white); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; }

.vx-no-scroll { overflow: hidden; }

/* ── Container ── */
.vx-container {
  width: 100%;
  max-width: var(--vx-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ── */
.vx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--vx-font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--vx-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--vx-transition);
  text-decoration: none;
  line-height: 1.3;
}
.vx-btn--primary {
  background: linear-gradient(135deg, var(--vx-teal), var(--vx-teal-dark));
  color: var(--vx-white);
  border-color: var(--vx-teal);
}
.vx-btn--primary:hover {
  background: linear-gradient(135deg, var(--vx-teal-dark), var(--vx-teal));
  color: var(--vx-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16,185,129,.35);
}
.vx-btn--ghost {
  background: transparent;
  color: var(--vx-gold);
  border-color: var(--vx-gold);
}
.vx-btn--ghost:hover {
  background: var(--vx-gold);
  color: var(--vx-navy);
}
.vx-btn--jumbo { font-size: 1.15rem; padding: 18px 44px; }
.vx-btn--sm { font-size: .85rem; padding: 8px 20px; }

/* ── Masthead (Header) ── */
.vx-masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,8,32,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,58,237,.2);
}
.vx-masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--vx-container);
  margin: 0 auto;
}
.vx-masthead__logo img { height: 40px; width: auto; }
.vx-masthead__nav {
  display: flex;
  gap: 28px;
}
.vx-masthead__link {
  color: var(--vx-off-white);
  font-weight: 500;
  font-size: .92rem;
  transition: color var(--vx-transition);
}
.vx-masthead__link:hover { color: var(--vx-gold); }
.vx-masthead__actions { display: flex; gap: 10px; }

/* Burger */
.vx-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.vx-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--vx-off-white);
  border-radius: 2px;
  transition: var(--vx-transition);
}

@media (max-width: 768px) {
  .vx-masthead__nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--vx-navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 999;
  }
  .vx-masthead__nav--open { transform: translateX(0); }
  .vx-masthead__nav .vx-masthead__link { font-size: 1.3rem; }
  .vx-masthead__actions { display: none; }
  .vx-burger { display: flex; }
}

/* ── Section Wrappers ── */
.vx-section {
  padding: 64px 0;
}
.vx-section--alt {
  background: var(--vx-navy-light);
}
.vx-section--purple {
  background: linear-gradient(160deg, var(--vx-purple-deep) 0%, var(--vx-navy-mid) 100%);
}
.vx-section--dark {
  background: var(--vx-navy-mid);
}
.vx-section--accent {
  background: linear-gradient(160deg, rgba(124,58,237,.15) 0%, var(--vx-navy) 100%);
  border-top: 1px solid rgba(124,58,237,.2);
  border-bottom: 1px solid rgba(124,58,237,.2);
}

.vx-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.vx-section__header h2 { margin-bottom: 12px; }
.vx-section__header p {
  color: var(--vx-grey);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Hero ── */
.vx-hero {
  padding: 80px 0 64px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 20%, rgba(124,58,237,.25) 0%, var(--vx-navy) 70%);
}
.vx-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,.2);
  border: 1px solid rgba(124,58,237,.4);
  color: var(--vx-purple-soft);
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: var(--vx-radius-full);
  margin-bottom: 20px;
}
.vx-hero__h1 { margin-bottom: 16px; }
.vx-hero__sub {
  font-size: 1.15rem;
  color: var(--vx-grey);
  max-width: 600px;
  margin: 0 auto 28px;
}
.vx-hero__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Stats Bar */
.vx-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 48px;
  padding: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--vx-radius-md);
}
.vx-metric { text-align: center; }
.vx-metric__val {
  display: block;
  font-family: var(--vx-font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--vx-gold);
}
.vx-metric__lbl {
  font-size: .82rem;
  color: var(--vx-grey);
  margin-top: 4px;
}

/* ── Trust Strip ── */
.vx-trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 24px 0;
}
.vx-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--vx-off-white);
  font-weight: 500;
}
.vx-trust-badge__icon {
  width: 28px;
  height: 28px;
  opacity: .85;
}

/* ── Grid System ── */
.vx-grid {
  display: grid;
  gap: var(--vx-gap);
}
.vx-grid--2 { grid-template-columns: repeat(2, 1fr); }
.vx-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vx-grid--4 { grid-template-columns: repeat(4, 1fr); }
.vx-grid--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
  .vx-grid--4, .vx-grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .vx-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .vx-grid--2, .vx-grid--3, .vx-grid--4, .vx-grid--5 { grid-template-columns: 1fr; }
}

/* ── Card / Panel ── */
.vx-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--vx-radius-md);
  padding: 28px;
  transition: transform var(--vx-transition), box-shadow var(--vx-transition);
}
.vx-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(124,58,237,.15);
}
.vx-panel__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--vx-purple);
}
.vx-panel__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.vx-panel__text {
  color: var(--vx-grey);
  font-size: .92rem;
  line-height: 1.65;
}

/* ── Game Cards ── */
.vx-gamecard {
  border-radius: var(--vx-radius-md);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform var(--vx-transition);
}
.vx-gamecard:hover { transform: translateY(-4px); }
.vx-gamecard__visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
.vx-gamecard__visual--a { background: linear-gradient(135deg, #7c3aed, #4f46e5); }
.vx-gamecard__visual--b { background: linear-gradient(135deg, #059669, #10b981); }
.vx-gamecard__visual--c { background: linear-gradient(135deg, #b45309, #d97706); }
.vx-gamecard__visual--d { background: linear-gradient(135deg, #dc2626, #f87171); }
.vx-gamecard__visual--e { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.vx-gamecard__tag {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--vx-radius-full);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.vx-gamecard__tag--hot { background: var(--vx-danger); color: var(--vx-white); }
.vx-gamecard__tag--new { background: var(--vx-teal); color: var(--vx-white); }
.vx-gamecard__tag--live { background: var(--vx-purple); color: var(--vx-white); }
.vx-gamecard__body { padding: 16px; }
.vx-gamecard__name { font-size: 1rem; margin-bottom: 4px; }
.vx-gamecard__studio { font-size: .8rem; color: var(--vx-grey); margin-bottom: 10px; }
.vx-gamecard__cta {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--vx-teal);
  transition: color var(--vx-transition);
}
.vx-gamecard__cta:hover { color: var(--vx-gold); }

/* ── Bonus Block ── */
.vx-bonus-hero {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(212,165,90,.1));
  border: 1px solid rgba(124,58,237,.3);
  border-radius: var(--vx-radius-lg);
  margin-bottom: 32px;
}
.vx-bonus-hero__amount {
  font-family: var(--vx-font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--vx-gold);
  display: block;
  margin-bottom: 8px;
}
.vx-bonus-hero__sub { color: var(--vx-grey); font-size: 1.05rem; }

.vx-deposit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 640px) { .vx-deposit-row { grid-template-columns: 1fr; } }

.vx-deposit-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--vx-radius-md);
  padding: 20px;
  text-align: center;
}
.vx-deposit-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--vx-purple);
  color: var(--vx-white);
  font-weight: 700;
  font-size: .85rem;
  border-radius: 50%;
  margin-bottom: 10px;
}
.vx-deposit-card__title { font-size: .95rem; color: var(--vx-white); margin-bottom: 6px; font-weight: 600; }
.vx-deposit-card__detail { font-size: .82rem; color: var(--vx-grey); }

/* ── Onboarding Steps ── */
.vx-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step-counter;
}
@media (max-width: 640px) { .vx-steps { grid-template-columns: 1fr; } }

.vx-step {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--vx-radius-md);
  counter-increment: step-counter;
}
.vx-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--vx-purple), var(--vx-purple-deep));
  color: var(--vx-white);
  font-family: var(--vx-font-head);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 16px;
}
.vx-step__title { font-size: 1.1rem; margin-bottom: 10px; }
.vx-step__desc { font-size: .9rem; color: var(--vx-grey); }

/* ── Provider Badges ── */
.vx-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.vx-provider-tag {
  padding: 8px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--vx-radius-full);
  font-size: .82rem;
  color: var(--vx-off-white);
  font-weight: 500;
}

/* ── Payment Cards ── */
.vx-paycard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--vx-radius-md);
  padding: 24px;
}
.vx-paycard__title { font-size: 1.05rem; margin-bottom: 10px; }
.vx-paycard__text { font-size: .9rem; color: var(--vx-grey); margin-bottom: 12px; }
.vx-paycard__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.vx-paycard__tag {
  font-size: .72rem;
  padding: 3px 10px;
  background: rgba(124,58,237,.15);
  color: var(--vx-purple-soft);
  border-radius: var(--vx-radius-full);
  font-weight: 600;
}
.vx-paycard__note {
  display: block;
  font-size: .78rem;
  color: var(--vx-grey-dark);
  margin-top: 8px;
}

/* ── FAQ / Accordion ── */
.vx-accord__entry {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vx-accord__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--vx-white);
  font-family: var(--vx-font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.vx-accord__trigger:hover { color: var(--vx-gold); }
.vx-accord__arrow {
  font-size: .75rem;
  transition: transform var(--vx-transition);
  color: var(--vx-purple-soft);
}
.vx-accord__entry--open .vx-accord__arrow { transform: rotate(180deg); }
.vx-accord__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.vx-accord__entry--open .vx-accord__body { max-height: 600px; }
.vx-accord__body p {
  padding: 0 0 18px;
  color: var(--vx-grey);
  font-size: .92rem;
}

/* ── Prose Block ── */
.vx-prose {
  max-width: 860px;
  margin: 0 auto;
}
.vx-prose h2 { margin-bottom: 16px; }
.vx-prose h3 { margin: 28px 0 12px; color: var(--vx-gold); }
.vx-prose p { color: var(--vx-off-white); }
.vx-prose--padded { padding: 48px 0; }

/* ── CTA Final ── */
.vx-cta-block {
  text-align: center;
  padding: 64px 20px;
  background: radial-gradient(ellipse at 50% 60%, rgba(124,58,237,.2) 0%, var(--vx-navy) 70%);
}
.vx-cta-block h2 { margin-bottom: 12px; }
.vx-cta-block p { color: var(--vx-grey); margin-bottom: 24px; }

/* ── Footer ── */
.vx-footer {
  background: var(--vx-navy-light);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 0 24px;
  font-size: .88rem;
}
.vx-footer__upper {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .vx-footer__upper { grid-template-columns: 1fr; }
}
.vx-footer__logo { height: 36px; width: auto; margin-bottom: 14px; }
.vx-footer__about { color: var(--vx-grey); font-size: .84rem; line-height: 1.6; }

.vx-footer__columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 640px) { .vx-footer__columns { grid-template-columns: repeat(2, 1fr); } }

.vx-footer__heading {
  font-family: var(--vx-font-head);
  font-size: .9rem;
  color: var(--vx-white);
  margin-bottom: 12px;
}
.vx-footer__col ul li { margin-bottom: 8px; }
.vx-footer__col ul li a {
  color: var(--vx-grey);
  font-size: .82rem;
  transition: color var(--vx-transition);
}
.vx-footer__col ul li a:hover { color: var(--vx-gold); }

.vx-footer__rg {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 20px;
}
.vx-footer__rg p { color: var(--vx-grey); font-size: .8rem; text-align: center; line-height: 1.6; }

.vx-footer__bottom { text-align: center; }
.vx-footer__bottom p { color: var(--vx-grey-dark); font-size: .78rem; margin-bottom: 4px; }
.vx-footer__methods { letter-spacing: .3px; }

/* ── Page-specific: inner pages ── */
.vx-page-hero {
  padding: 48px 0 32px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 30%, rgba(124,58,237,.15) 0%, var(--vx-navy) 70%);
}
.vx-page-hero h1 { margin-bottom: 10px; }
.vx-page-hero p { color: var(--vx-grey); max-width: 600px; margin: 0 auto; }

/* Breadcrumb */
.vx-crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .8rem;
  color: var(--vx-grey);
  justify-content: center;
  margin-top: 14px;
}
.vx-crumbs a { color: var(--vx-grey); }
.vx-crumbs a:hover { color: var(--vx-gold); }
.vx-crumbs__sep { opacity: .5; }

/* ── Utility ── */
.vx-mt-0 { margin-top: 0; }
.vx-mb-0 { margin-bottom: 0; }
.vx-text-center { text-align: center; }
