/* Casino Drakaris — Style 2: Dragon Minimal Onyx */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0e0f10;
  --bg-elevated: #161819;
  --bg-soft: #1c1e20;
  --border: #2a2d30;
  --border-accent: #3d5c48;
  --text: #e8ebe9;
  --text-muted: #9aa39d;
  --accent: #6dff9a;
  --accent-soft: #3d9a62;
  --accent-dim: rgba(109, 255, 154, 0.12);
  --danger-soft: #c4a882;
  --max: 1080px;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 2px;
  --font: 'Manrope', 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

a:hover {
  color: #9affb8;
}

ul, ol {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.4rem;
}

/* ——— Layout ——— */
.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--border);
}

.section--flush {
  border-top: none;
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.section__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

.section__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 0.2rem;
  color: var(--accent-soft);
}

.section__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section h2 {
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.75rem 0 0.75rem;
  color: var(--text);
}

.lead,
.section p {
  color: var(--text-muted);
  max-width: 40rem;
}

.section p + p {
  margin-top: 0.9rem;
}

.note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 15, 16, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand:hover {
  opacity: 0.9;
}

.brand img,
.site-footer__brand img {
  width: auto;
  height: 40px;
  max-width: min(200px, 48vw);
  object-fit: contain;
}

.site-footer__brand {
  display: inline-flex;
  line-height: 0;
}

.site-footer__brand img {
  height: 36px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: #0a0c0b;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: #9affb8;
  color: #0a0c0b;
  border-color: #9affb8;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent-soft);
  color: var(--accent);
}

.btn--lg {
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ——— Hero ——— */
.hero {
  padding: clamp(3rem, 9vw, 6.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(61, 154, 98, 0.08), transparent 60%),
    linear-gradient(180deg, #121415 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.hero__eyebrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero .lead {
  font-size: 1.05rem;
  max-width: 34rem;
}

.hero__media {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.92;
}

.hero__tagline {
  margin-top: 1.1rem;
  font-weight: 600;
  color: var(--text);
  font-size: 1.05rem;
}

/* ——— Tables ——— */
.table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 520px;
}

th,
td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: var(--bg-soft);
  white-space: nowrap;
}

tr:last-child td {
  border-bottom: none;
}

td {
  color: var(--text-muted);
}

td:first-child {
  color: var(--text);
  font-weight: 500;
}

td.accent {
  color: var(--accent);
  font-weight: 600;
}

/* ——— Steps / lists ——— */
.steps {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
  max-width: 36rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  margin: 0;
}

.steps__num {
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.steps p,
.steps span {
  color: var(--text-muted);
  margin: 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  max-width: 38rem;
}

.checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  background: var(--accent-soft);
}

.checklist li:last-child {
  border-bottom: none;
}

/* ——— FAQ ——— */
.faq {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
  max-width: 44rem;
}

.faq details {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 0;
}

.faq summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  color: var(--accent-soft);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: '−';
}

.faq details p {
  padding: 0 1.15rem 1.15rem;
  margin: 0;
  color: var(--text-muted);
}

/* ——— Content pages ——— */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-content .section {
  padding: 2rem 0;
}

.page-content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.page-content h3 {
  font-size: 1.05rem;
}

/* ——— Banner block ——— */
.banner {
  margin: 2rem 0 0;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
}

.banner img {
  width: 100%;
  aspect-ratio: 21 / 7;
  object-fit: cover;
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
  background: #0b0c0d;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.site-footer__nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-footer__nav a:hover {
  color: var(--accent);
}

.site-footer__copy {
  font-size: 0.8rem;
  color: #6d7570;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.responsible {
  font-size: 0.8rem;
  color: var(--danger-soft);
  max-width: 36rem;
}

/* ——— Utilities ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 600px) {
  .header-cta .btn--ghost {
    display: none;
  }

  .btn--lg {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

  th, td {
    padding: 0.7rem 0.75rem;
  }
}
