/* Casino Drakaris — Style 1: Dragon Emerald Dark */
:root {
  --bg: #030605;
  --bg-deep: #010302;
  --bg-elevated: #0b1210;
  --card: #0e1613;
  --card-hover: #122019;
  --emerald: #00e676;
  --emerald-bright: #39ff8e;
  --emerald-dim: #00a854;
  --emerald-dark: #006b38;
  --glow: rgba(0, 230, 118, 0.55);
  --glow-soft: rgba(0, 230, 118, 0.22);
  --text: #eef8f1;
  --text-muted: #8fa396;
  --border: rgba(0, 230, 118, 0.32);
  --border-strong: rgba(0, 230, 118, 0.55);
  --danger: #ff5252;
  --radius: 10px;
  --header-h: 76px;
  --font: "Poppins", "Montserrat", "Segoe UI", sans-serif;
  --max: 1120px;
}

*,
*::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;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(0, 107, 56, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(0, 80, 40, 0.18), transparent 50%),
    radial-gradient(ellipse 40% 30% at 0% 70%, rgba(0, 60, 30, 0.15), transparent 45%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--emerald);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
  color: var(--emerald-bright);
  text-shadow: 0 0 10px var(--glow-soft);
}

ul,
ol {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.4rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(3, 6, 5, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 1px 0 var(--glow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  line-height: 0;
}

.brand:hover {
  opacity: 0.92;
}

.brand img {
  width: auto;
  height: 48px;
  max-width: min(220px, 52vw);
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--glow-soft));
}

.header-cta {
  display: flex;
  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.35rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-dim), var(--emerald));
  color: #02140a;
  box-shadow: 0 0 18px var(--glow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  color: #02140a;
  transform: translateY(-1px);
  box-shadow: 0 0 28px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--emerald);
  border-color: var(--border-strong);
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.12);
}

.btn-outline:hover {
  background: rgba(0, 230, 118, 0.1);
  box-shadow: 0 0 20px var(--glow-soft);
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(440px, 58vw, 620px);
  overflow: hidden;
  isolation: isolate;
  background: #050807;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 28%;
  z-index: 0;
  border: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3, 6, 5, 0.2) 0%,
      rgba(3, 6, 5, 0.35) 38%,
      rgba(3, 6, 5, 0.78) 68%,
      rgba(3, 6, 5, 0.94) 100%
    ),
    linear-gradient(
      105deg,
      rgba(3, 6, 5, 0.82) 0%,
      rgba(3, 6, 5, 0.45) 42%,
      rgba(3, 6, 5, 0.12) 72%,
      transparent 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  max-width: 620px;
  padding: 2.75rem 0 3rem;
}

.hero h1 {
  font-size: clamp(1.45rem, 3.4vw, 2.05rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: #f3faf6;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.hero-lead {
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.65;
  color: #c5d9cc;
  max-width: 520px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.hero .cta-row {
  margin-top: 0.55rem;
  gap: 0.75rem;
}

.hero .btn-primary {
  animation: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 16px rgba(0, 230, 118, 0.22);
}

.hero .btn-primary:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4), 0 0 22px rgba(0, 230, 118, 0.35);
}

.hero .btn-outline {
  background: rgba(5, 12, 9, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(120, 220, 160, 0.45);
  color: #e4f6ec;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.hero .btn-outline:hover {
  background: rgba(0, 230, 118, 0.12);
  border-color: rgba(0, 230, 118, 0.7);
  color: #fff;
  text-shadow: none;
}

/* —— Scale divider —— */
.scale-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0 1.5rem;
  color: var(--emerald-dim);
  opacity: 0.7;
}

.scale-divider svg {
  width: min(100%, 280px);
  height: 18px;
}

/* —— Sections —— */
.section {
  padding: 3rem 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(11, 18, 16, 0.65), rgba(5, 10, 8, 0.4));
  border-block: 1px solid rgba(0, 230, 118, 0.12);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  text-shadow: 0 0 20px var(--glow-soft);
}

.section-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 0.65rem;
  vertical-align: middle;
  background: linear-gradient(135deg, transparent 40%, var(--emerald) 41%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  box-shadow: 0 0 10px var(--glow);
}

.section-intro,
.prose p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.prose h2,
.prose h3 {
  color: var(--text);
  margin: 1.75rem 0 0.85rem;
  font-weight: 700;
  text-shadow: 0 0 14px var(--glow-soft);
}

.prose h2 {
  font-size: 1.45rem;
}

.prose h3 {
  font-size: 1.2rem;
  color: var(--emerald-bright);
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.media-block {
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.08);
  line-height: 0;
}

.media-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* —— Cards —— */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 0 0 1px rgba(0, 230, 118, 0.05), 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 24px var(--glow-soft);
}

.card-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 1.5rem 0;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--emerald-bright);
  text-shadow: 0 0 12px var(--glow-soft);
}

.card p,
.card li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.highlight-card {
  border-color: var(--border-strong);
  background: linear-gradient(160deg, rgba(0, 230, 118, 0.08), var(--card));
}

/* —— Tables —— */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 320px;
}

th,
td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 230, 118, 0.12);
}

th {
  background: rgba(0, 230, 118, 0.1);
  color: var(--emerald-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

td {
  color: var(--text-muted);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(0, 230, 118, 0.04);
  color: var(--text);
}

/* —— Steps / lists —— */
.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1rem 1rem 1rem 3.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  margin: 0;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--emerald);
  color: #02140a;
  font-weight: 800;
  font-size: 0.8rem;
  box-shadow: 0 0 12px var(--glow-soft);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--emerald);
  clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 18%, 82% 0, 38% 62%);
  filter: drop-shadow(0 0 4px var(--glow));
}

/* —— FAQ —— */
.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 650;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--emerald);
  font-size: 1.35rem;
  font-weight: 400;
  text-shadow: 0 0 8px var(--glow);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] {
  border-color: var(--border-strong);
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.1);
}

.faq-item .faq-body {
  padding: 0 1.2rem 1.15rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 230, 118, 0.1);
  padding-top: 0.9rem;
}

/* —— Page hero (inner pages) —— */
.page-hero {
  padding: 2.75rem 0 1.5rem;
  border-bottom: 1px solid rgba(0, 230, 118, 0.15);
  background: linear-gradient(180deg, rgba(0, 107, 56, 0.18), transparent);
}

.page-hero h1 {
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 800;
  text-shadow: 0 0 22px var(--glow-soft);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 720px;
}

/* —— Footer —— */
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  box-shadow: 0 0 16px var(--glow);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
  line-height: 0;
}

.footer-brand img {
  width: auto;
  height: 40px;
  max-width: min(200px, 60vw);
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--glow-soft));
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--emerald);
}

.footer-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  opacity: 0.85;
  max-width: 640px;
}

.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--danger);
  color: var(--danger);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 1.25rem;
}

/* —— Utilities —— */
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.25rem; }
.mb-2 { margin-bottom: 1.25rem; }
.text-muted { color: var(--text-muted); }

.claw-icon {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.15em;
  margin-right: 0.35em;
  fill: var(--emerald);
  filter: drop-shadow(0 0 4px var(--glow));
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 16px var(--glow-soft); }
  50% { box-shadow: 0 0 28px var(--glow); }
}

.btn-primary {
  animation: glow-pulse 3.2s ease-in-out infinite;
}

@media (max-width: 720px) {
  :root {
    --header-h: auto;
  }

  .site-header {
    height: auto;
    padding: 0.75rem 0;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .header-cta {
    justify-content: stretch;
  }

  .header-cta .btn {
    flex: 1;
    text-align: center;
  }

  .hero {
    min-height: clamp(480px, 125vw, 580px);
  }

  .hero-banner {
    object-position: 42% 22%;
  }

  .hero-inner {
    padding: 2rem 0 2.25rem;
    gap: 0.85rem;
  }

  .hero .cta-row {
    flex-direction: column;
  }

  .hero .cta-row .btn {
    width: 100%;
  }

  .section {
    padding: 2.25rem 0;
  }

  th,
  td {
    padding: 0.6rem 0.75rem;
  }
}
