/* =============================================
   DUELZ CASINO — STYLES
   ============================================= */

/* --- CSS Variables / Brand Palette --- */
:root {
  --color-primary:    #6d28d9;   /* Deep purple */
  --color-primary-dk: #1a0533;   /* Dark purple / near-black */
  --color-accent:     #ff3cac;   /* Neon pink accent */
  --color-accent2:    #c084fc;   /* Soft lavender */
  --color-bg:         #0f0520;   /* Very dark background */
  --color-bg-alt:     #160a2a;   /* Slightly lighter dark */
  --color-surface:    #1e0c3a;   /* Card / surface dark */
  --color-border:     #3b1f6e;   /* Subtle border */
  --color-text:       #e9d5ff;   /* Main text — light lavender */
  --color-text-muted: #a78bca;   /* Muted text */
  --color-white:      #ffffff;
  --color-green:      #22c55e;
  --color-red:        #ef4444;
  --color-strip-bg:   #ff3cac;
  --color-strip-text: #ffffff;
  --radius:           10px;
  --radius-sm:        6px;
  --shadow:           0 4px 24px rgba(109, 40, 217, 0.25);
  --transition:       0.2s ease;
  --font:             'Segoe UI', Arial, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
}

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

a { color: var(--color-accent2); text-decoration: underline; }
a:hover { color: var(--color-accent); }

ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   BONUS STRIP (TOP BANNER)
   ============================================= */
.bonus-strip {
  background: linear-gradient(90deg, var(--color-accent) 0%, #a21caf 100%);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(255, 60, 172, 0.5);
}
.bonus-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.bonus-strip__text {
  color: var(--color-white);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}
.btn--strip {
  background: var(--color-white);
  color: var(--color-accent);
  border: none;
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--strip:hover {
  background: var(--color-primary-dk);
  color: var(--color-white);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
}
.btn--hero {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  font-size: 18px;
  padding: 16px 40px;
  box-shadow: 0 4px 20px rgba(255, 60, 172, 0.45);
}
.btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 60, 172, 0.65);
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.6);
}
.btn--large {
  font-size: 18px;
  padding: 18px 44px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(160deg, #1a0533 0%, #0f0520 60%, #160a2a 100%);
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(109,40,217,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero__logo {
  margin: 0 auto 24px;
  width: 220px;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(255,60,172,0.5);
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-accent2);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero__desc {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.badge {
  background: rgba(109,40,217,0.3);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent2);
}

/* =============================================
   QUICK STATS
   ============================================= */
.quickstats {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 30px 20px;
}
.quickstats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.quickstats__num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1.1;
}
.quickstats__label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 64px 20px; }
.section--alt { background: var(--color-bg-alt); }
.section--dark {
  background: linear-gradient(135deg, var(--color-primary-dk) 0%, #0f0520 100%);
  text-align: center;
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 14px;
}
.section__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 56px; height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}
.section--dark .section__title::after,
.section--dark .section__title { color: var(--color-white); }
.section--dark .section__title::after { left: 50%; transform: translateX(-50%); }

.section__intro {
  color: var(--color-text-muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
  max-width: 780px;
}

/* =============================================
   PROSE (OVERVIEW TEXT)
   ============================================= */
.prose p {
  margin-bottom: 18px;
  color: var(--color-text);
}
.prose p:last-child { margin-bottom: 0; }

/* =============================================
   CARDS (BONUSES)
   ============================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card__icon { font-size: 2rem; margin-bottom: 12px; }
.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}
.card p { color: var(--color-text-muted); font-size: 0.95rem; }

/* =============================================
   BONUS TERMS BOX
   ============================================= */
.bonus-terms {
  background: rgba(109,40,217,0.12);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.bonus-terms h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.bonus-terms p {
  color: var(--color-text-muted);
  font-size: 0.97rem;
  margin-bottom: 10px;
}
.bonus-terms p:last-child { margin-bottom: 0; }

/* =============================================
   CTA BLOCK
   ============================================= */
.cta-block { text-align: center; margin-top: 16px; }

/* =============================================
   GAMES
   ============================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.game-cat {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.game-cat h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.game-cat p { color: var(--color-text-muted); font-size: 0.95rem; }

.providers-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.provider-tag {
  background: rgba(109,40,217,0.25);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent2);
}

/* =============================================
   STEPS (REGISTRATION)
   ============================================= */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.step__num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-white);
  box-shadow: 0 2px 10px rgba(255,60,172,0.4);
}
.step__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}
.step__body p { color: var(--color-text-muted); font-size: 0.95rem; }

/* =============================================
   PAYMENTS
   ============================================= */
.payment-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.payment-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.payment-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.payment-block p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.payment-block p:last-child { margin-bottom: 0; }

.table-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

/* TABLE SCROLL WRAPPER */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 14px; }

.pay-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.pay-table thead {
  background: linear-gradient(90deg, var(--color-primary) 0%, #4c1d95 100%);
}
.pay-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pay-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.pay-table tbody tr:hover { background: rgba(109,40,217,0.1); }
.pay-table td {
  padding: 13px 16px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.pay-table tbody tr:last-child { border-bottom: none; }

.table-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* =============================================
   MOBILE SECTION
   ============================================= */
.mobile-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mobile-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.mobile-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.mobile-block p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.mobile-block p:last-child { margin-bottom: 0; }

/* =============================================
   LICENCE
   ============================================= */
.licence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.licence-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.licence-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.licence-block p { color: var(--color-text-muted); font-size: 0.95rem; }

/* =============================================
   SUPPORT
   ============================================= */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.support-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.support-icon { font-size: 2.4rem; margin-bottom: 12px; }
.support-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}
.support-block p { color: var(--color-text-muted); font-size: 0.92rem; text-align: left; }

.support-verdict {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.support-verdict h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 10px;
}
.support-verdict p { color: var(--color-text-muted); font-size: 0.95rem; }

/* =============================================
   PROS / CONS
   ============================================= */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pros, .cons {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.pros { border-top: 4px solid var(--color-green); }
.cons { border-top: 4px solid var(--color-red); }
.pros h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 16px;
}
.cons h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 16px;
}
.pros li, .cons li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}
.cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: 700;
}

/* =============================================
   MID CTA BOX
   ============================================= */
.mid-cta-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, #4c1d95 60%, var(--color-accent) 100%);
  border-radius: 16px;
  padding: 48px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(109,40,217,0.4);
}
.mid-cta-content h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 10px;
}
.mid-cta-content p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.mid-cta-content h2::after { display: none; }

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--color-accent2); }
.faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
  cursor: default;
}
.faq-a { color: var(--color-text-muted); font-size: 0.95rem; }

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  max-width: 740px;
  margin: 0 auto;
  padding: 20px 0;
}
.final-cta h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
}
.final-cta h2::after { left: 50%; transform: translateX(-50%); }
.final-cta p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}
.disclaimer {
  margin-top: 24px !important;
  font-size: 0.85rem !important;
  color: var(--color-text-muted) !important;
  font-style: italic;
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-primary-dk);
  border-top: 1px solid var(--color-border);
  padding: 48px 20px 36px;
  text-align: center;
}
.footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.footer__logo svg { width: 160px; }
.footer__copy {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  max-width: 760px;
  margin: 0 auto 14px;
  line-height: 1.6;
}
.footer__responsible {
  color: var(--color-accent2);
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.footer__licence {
  color: var(--color-text-muted);
  font-size: 0.83rem;
  max-width: 680px;
  margin: 0 auto;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================= */
@media (max-width: 900px) {
  .quickstats__grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: 1fr; }
  .licence-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }
  .mobile-split { grid-template-columns: 1fr; }
  .payment-split { grid-template-columns: 1fr; }
  .mid-cta-box { flex-direction: column; text-align: center; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================= */
@media (max-width: 600px) {
  .bonus-strip__inner { flex-direction: column; gap: 10px; }
  .bonus-strip__text { font-size: 13px; }
  .hero { padding: 50px 16px 40px; }
  .hero__logo { width: 180px; }
  .section { padding: 44px 16px; }
  .quickstats__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .quickstats__num { font-size: 1.5rem; }
  .cards { grid-template-columns: 1fr; }
  .step { flex-direction: column; }
  .step__num { width: 40px; height: 40px; font-size: 0.9rem; }
  .mid-cta-box { padding: 32px 20px; }
  .faq-item { padding: 18px 16px; }
  .btn--large { font-size: 16px; padding: 14px 28px; }
  .footer { padding: 36px 16px 28px; }
}