:root {
  --dit-bg-start: #0a1628;
  --dit-bg-end: #0f2035;
  --dit-card: #162236;
  --dit-accent: #0ea5e9;
  --dit-coral: #f43f5e;
  --dit-text: #f0f9ff;
  --dit-muted: #b8d4ea;
  --dit-border: #224267;
  --dit-shadow: 0 12px 34px rgba(8, 16, 32, 0.45);
}

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

html, body { overflow-x: clip; max-width: 100%; }

html, body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--dit-text);
  background: linear-gradient(180deg, var(--dit-bg-start), var(--dit-bg-end));
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 -20vh 0;
  height: 46vh;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(80% 120% at 20% 50%, rgba(14, 165, 233, 0.21), transparent 70%),
    radial-gradient(80% 120% at 65% 40%, rgba(244, 63, 94, 0.12), transparent 72%);
  animation: ditWave 16s ease-in-out infinite alternate;
}

@keyframes ditWave {
  from { opacity: 0.45; transform: translateX(-2%); }
  to { opacity: 0.85; transform: translateX(2%); }
}

a { color: var(--dit-accent); text-decoration: none; }
a:hover { color: #7dd3fc; }

.dit-page { position: relative; z-index: 1; min-height: 100vh; }
.dit-container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }

.dit-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 270;
  background: linear-gradient(90deg, var(--dit-accent), var(--dit-coral));
}

.dit-header {
  position: sticky; top: 0; height: 72px; z-index: 200;
  border-bottom: 1px solid rgba(184, 212, 234, 0.12);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.dit-header[data-dit-sticky="solid"] {
  background: rgba(10, 22, 40, 0.96);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}
@media (max-width: 1100px) { .dit-header { height: 68px; } }
.dit-header-inner {
  height: 100%;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0 1rem;
  position: relative; overflow: visible;
}
.dit-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--dit-text);
  font-weight: 700;
  min-width: 0;
}
.dit-brand img { width: 180px; height: auto; max-width: 100%; }
.dit-nav ul { list-style: none; margin: 0; padding: 0; }
.dit-nav a {
  display: inline-block;
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  color: var(--dit-text);
  font-weight: 600;
}
.dit-nav a:hover,
.dit-nav a:focus-visible {
  color: #d9f3ff;
  background: rgba(14, 165, 233, 0.16);
}
.dit-burger {
  width: 42px;
  height: 42px;
  border: 1px solid var(--dit-border);
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #112034;
  color: #d4eeff;
  margin-left: auto;
}
.dit-burger span,
.dit-burger span::before,
.dit-burger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #d4eeff;
  content: "";
  border-radius: 3px;
  position: relative;
}
.dit-burger span::before { top: -6px; position: absolute; }
.dit-burger span::after { top: 6px; position: absolute; }

@media (min-width: 1101px) {
  .dit-nav { display: flex; flex-direction: row; align-items: center; gap: 0; flex: 1; overflow: visible; justify-content: flex-end; }
  .dit-nav ul { display: flex; flex-direction: row; flex-wrap: wrap; gap: 0 0.25rem; list-style: none; margin: 0; padding: 0; }
  .dit-burger { display: none; }
}
@media (max-width: 1100px) {
  .dit-burger { display: flex; }
  .dit-nav {
    position: fixed; top: 0; right: 0;
    width: min(320px, 85vw); height: 100dvh; z-index: 201;
    background: #0a1628;
    transform: translateX(calc(100% + 16px)); opacity: 0; visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
    overflow-y: auto; padding: 1.5rem 1rem;
    max-width: min(320px, 85vw) !important;
  }
  .dit-nav ul { display: flex; flex-direction: column; gap: 0.35rem; }
  .dit-nav-backdrop {
    position: fixed; inset: 0; z-index: 199;
    background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    max-width: unset !important; width: 100vw !important;
  }
  body.dit-nav-open .dit-nav { transform: translateX(0); opacity: 1; visibility: visible; transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0s; }
  body.dit-nav-open .dit-nav-backdrop { opacity: 1; pointer-events: auto; }
  body.dit-nav-open { overflow: hidden; }
}
body:not(.dit-nav-open) .dit-header { backdrop-filter: blur(8px); }
body.dit-nav-open .dit-header { backdrop-filter: none; }
.dit-page > main, .dit-page > footer { position: relative; z-index: 1; }
.dit-cookie-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 250; }
.dit-cookie-banner[data-dit-cookie-state="hidden"] { display: none; }
.dit-cookie-banner[data-dit-cookie-state="visible"] ~ * .dit-header,
.dit-cookie-banner[data-dit-cookie-state="visible"] ~ .dit-header { top: 66px; }
@media (max-width: 550px) {
  .dit-cookie-banner[data-dit-cookie-state="visible"] ~ * .dit-header,
  .dit-cookie-banner[data-dit-cookie-state="visible"] ~ .dit-header { top: 74px; }
}

.dit-cookie-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: #081423;
  border-bottom: 1px solid #1f3d5e;
}
.dit-cookie-banner p { margin: 0; color: #d2e8f9; }
.dit-cookie-actions { display: flex; gap: 0.5rem; }
.dit-cookie-actions button {
  border: 1px solid #2f547c;
  border-radius: 9px;
  background: #13263d;
  color: #eaf8ff;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
}
.dit-cookie-actions button:first-child {
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  color: #042039;
}

.dit-age-overlay {
  position: fixed;
  inset: 0;
}
.dit-age-box h2 { color: #082036; margin: 0.4rem 0 0.8rem; }
.dit-age-box p { color: #1f3248; margin: 0 0 1rem; }
.dit-age-box button {
  border: none;
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  width: 100%;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.dit-age-confirm {
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  color: #07213a;
}
.dit-age-leave { background: #dfe8ef; color: #173047; }

.dit-hero {
  padding: 2.4rem 0 2rem;
  background:
    radial-gradient(120% 140% at 5% 15%, rgba(14, 165, 233, 0.22), transparent 60%),
    radial-gradient(100% 120% at 85% 10%, rgba(244, 63, 94, 0.14), transparent 62%);
}
.dit-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.3rem;
  align-items: stretch;
}
.dit-hero h1 { font-size: clamp(2rem, 4vw, 3.3rem); margin: 0 0 0.9rem; line-height: 1.08; }
.dit-accent-word { color: var(--dit-coral); }
.dit-hero p { color: var(--dit-muted); margin: 0 0 1.2rem; max-width: 58ch; }
.dit-cta-btn {
  display: inline-block;
  border: none;
  padding: 0.8rem 1.15rem;
  border-radius: 11px;
  font-weight: 700;
  color: #05243f;
  background: linear-gradient(90deg, #0ea5e9, #59c4f8);
  transition: background 0.2s ease, transform 0.2s ease;
}
.dit-cta-btn:hover { background: linear-gradient(90deg, #f43f5e, #fb7185); transform: translateY(-1px); color: #fff7fb; }

.dit-hero-highlight {
  background: #12253b;
  border: 1px solid #2b4e72;
  border-left: 5px solid var(--dit-accent);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--dit-shadow);
}
.dit-hero-highlight img {
  width: 140px;
  max-width: 100%;
  height: auto;
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem;
}

.dit-section { padding: 2.4rem 0; }
.dit-section h2 { font-size: clamp(1.4rem, 2.7vw, 2.2rem); margin: 0 0 0.9rem; }
.dit-lead { color: var(--dit-muted); max-width: 75ch; }

.dit-card-list { margin-top: 1.2rem; border-top: 1px solid rgba(184, 212, 234, 0.2); }
.dit-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 1.1rem 0.2rem 1.1rem 0;
  border-bottom: 1px solid rgba(184, 212, 234, 0.2);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}
.dit-card[data-dit-hover="on"]:hover {
  transform: translateY(-3px);
  border-color: #5eb9e5;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.3);
}
.dit-card-left {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
}
.dit-logo-wrap {
  width: 120px;
  min-height: 74px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
}
.dit-logo-wrap img { max-width: 100%; max-height: 52px; width: auto; height: auto; }
.dit-stars { color: #7dd3fc; font-weight: 700; letter-spacing: 0.03em; }
.dit-mini-cta {
  display: inline-block;
  text-align: center;
  padding: 0.58rem 0.62rem;
  border-radius: 9px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  color: #041f36;
  font-weight: 700;
}
.dit-mini-cta:hover { background: linear-gradient(90deg, #f43f5e, #fb7185); color: #fff5f7; }

.dit-card-right h3 { margin: 0 0 0.35rem; font-size: 1.35rem; }
.dit-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 700;
  background: #1d3451;
  margin-bottom: 0.5rem;
}
.dit-bonus-text { font-weight: 700; color: #ffe3eb; margin: 0.2rem 0 0.6rem; }
.dit-pills { display: flex; gap: 0.45rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.dit-pill {
  border: 1px solid #295074;
  border-radius: 999px;
  padding: 0.18rem 0.58rem;
  font-size: 0.82rem;
  color: #d1e9fa;
}
.dit-disclaimer { margin-top: 0.55rem; font-size: 0.8rem; color: #a5c7df; }

.dit-top3-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.dit-spot {
  background: #13243a;
  border: 1px solid #284d71;
  border-left: 4px solid var(--dit-accent);
  border-radius: 12px;
  padding: 1rem;
}
.dit-spot h3 { margin: 0.3rem 0 0.6rem; }
.dit-spot p { color: #c5deef; }

.dit-timeline {
  margin-top: 1rem;
  border-left: 2px solid #2f5a82;
  padding-left: 1.2rem;
}
.dit-step {
  position: relative;
  margin-bottom: 1.2rem;
  padding-bottom: 0.1rem;
}
.dit-step::before {
  content: "";
  position: absolute;
  left: -1.56rem;
  top: 0.3rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--dit-coral);
}
.dit-step h3 { margin: 0 0 0.35rem; }
.dit-step p { margin: 0.35rem 0; color: #c6deee; }

.dit-rg {
  background: linear-gradient(180deg, rgba(12, 31, 51, 0.9), rgba(9, 20, 34, 0.9));
  border: 1px solid #2f5378;
  border-radius: 14px;
  padding: 1.1rem;
}
.dit-18badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #73cffb;
  color: #d5f1ff;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.dit-rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.dit-faq-list { margin-top: 0.7rem; }
.dit-faq-item {
  border: 1px solid #2b4b6d;
  border-radius: 10px;
  margin-bottom: 0.7rem;
  overflow: hidden;
  background: #13253b;
}
.dit-faq-question {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: #eaf8ff;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 700;
}
.dit-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding: 0 1rem;
}
.dit-faq-item[data-dit-open="true"] .dit-faq-answer {
  max-height: 360px;
  padding-bottom: 1rem;
}
.dit-faq-answer p { color: #c8dfef; margin: 0.35rem 0 0; }

.dit-footer {
  border-top: 1px solid #27496b;
  background: #0b1829;
  padding: 2rem 0;
}
.dit-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.2rem;
}
.dit-footer p { color: #bfd9eb; }
.dit-foot-logo img { width: 170px; height: auto; }
.dit-foot-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.dit-foot-links a {
  color: #cde8fb;
  border: 1px solid #31577d;
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
}
.dit-legal-nav { margin-top: 0.7rem; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.dit-legal-nav a { color: #9fd6f6; }

.dit-legal-main { padding: 2rem 0 2.3rem; }
.dit-legal-main h1 { margin: 0 0 0.7rem; }
.dit-legal-main h2 {
  margin: 1.2rem 0 0.45rem;
  color: #d8f2ff;
}
.dit-legal-main p, .dit-legal-main li { color: #c6dfef; }
.dit-legal-main ul { padding-left: 1.2rem; }

@media (max-width: 980px) {
  .dit-hero-grid { grid-template-columns: 1fr; }
  .dit-top3-grid { grid-template-columns: 1fr; }
  .dit-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  h1 { font-size: clamp(1.6rem, 5vw, 2.4rem) !important; }
  h2 { font-size: clamp(1.2rem, 4vw, 1.8rem) !important; }
  h3 { font-size: clamp(1rem, 3.5vw, 1.3rem) !important; }
  .dit-bonus-text, [class*="dit-bonus"] { font-size: clamp(0.95rem, 2.5vw, 1.15rem) !important; }
  .dit-hero h1, [class*="dit-hero"] h1 { font-size: clamp(1.8rem, 6vw, 2.8rem) !important; }
  .dit-card { padding: 16px !important; }
}

@media (max-width: 550px) {
  html, body { overflow-x: clip; max-width: 100%; }
  .dit-page * { max-width: 100%; }
  .dit-casino-list, .dit-grid {
    grid-template-columns: 1fr !important;
    min-width: 0;
  }
  .dit-casino-list > *, .dit-grid > * { min-width: 0; }
  .dit-card { flex-direction: column !important; min-width: 0; padding: 12px !important; grid-template-columns: 1fr !important; }
  .dit-card * { min-width: 0; max-width: 100%; }
  .dit-card-top { flex-wrap: wrap; gap: 8px; }
  .dit-logo-wrap {
    width: min(200px, 85%);
    min-height: 56px;
    margin: 0 auto 8px;
  }
  .dit-cta-btn, .dit-button,
  .dit-age-box button, .dit-age-box a,
  .dit-cookie-actions button, .dit-cookie-actions a {
    width: 100% !important; max-width: 100%;
    white-space: normal; word-break: break-word; overflow-wrap: anywhere;
    display: block;
  }
  .dit-age-box, .dit-cookie-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
  }
  h1 { font-size: clamp(1.25rem, 6vw, 2rem) !important; }
  h2 { font-size: clamp(1.1rem, 5vw, 1.6rem) !important; }
  h3 { font-size: clamp(0.95rem, 4vw, 1.2rem) !important; }
  .dit-bonus-text, [class*="dit-bonus"] { font-size: 0.95rem !important; }
  .dit-card:hover { transform: none !important; }
  table { table-layout: auto; width: 100%; min-width: 0; }
  .dit-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; max-width: 100%; }
  .dit-table-wrap table { min-width: max-content; width: max-content; }
  thead th { white-space: nowrap; }
  td { word-break: normal; overflow-wrap: break-word; hyphens: none; }
  .dit-payment-grid, .dit-method-grid, [class*="dit-payment"], [class*="dit-method"] {
    grid-template-columns: 1fr !important; min-width: 0;
  }
  .dit-header-inner {
    display: flex !important; flex-wrap: nowrap !important;
    justify-content: space-between !important; align-items: center !important; gap: 0 8px !important;
  }
  .dit-brand-logo, .dit-logo, [class*="dit-brand"] {
    flex-shrink: 1 !important; min-width: 0 !important; overflow: hidden !important;
  }
  .dit-burger { flex-shrink: 0 !important; }
  .dit-nav { max-width: min(320px, 85vw) !important; }
  .dit-nav-backdrop { max-width: unset !important; width: 100vw !important; }
}

@media (max-width: 380px) {
  h1 { font-size: clamp(1.1rem, 7vw, 1.5rem) !important; }
  h3 { font-size: clamp(0.9rem, 4vw, 1.1rem) !important; }
  .dit-bonus-text, [class*="dit-bonus"] { font-size: 0.85rem !important; }
  .dit-card { padding: 10px !important; }
}
