/* 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: #161718;
  --bg-soft: #1a1c1e;
  --border: #2a2d30;
  --border-accent: #3d5c48;
  --text: #e8eae9;
  --text-muted: #9aa3a0;
  --accent: #6ef0a0;
  --accent-soft: #3db874;
  --accent-dim: rgba(110, 240, 160, 0.12);
  --danger: #c45c5c;
  --radius: 4px;
  --max: 1080px;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --font: 'Manrope', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(61, 184, 116, 0.08), transparent 55%),
    linear-gradient(180deg, #0e0f10 0%, #121414 100%);
  min-height: 100vh;
}

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: #9af7c0;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 1rem;
}

h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 600; }

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

p:last-child { margin-bottom: 0; }

ul, ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

li { margin-bottom: 0.4rem; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— 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);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo:hover { opacity: 0.9; }

.logo img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--accent-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.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: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  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: #9af7c0;
  color: #0a0c0b;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--border-accent);
}

.btn-outline:hover {
  background: var(--accent-dim);
  color: var(--accent);
  border-color: var(--accent-soft);
}

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ——— Hero ——— */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.hero-visual {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  aspect-ratio: 1 / 1;
  max-height: 480px;
  justify-self: center;
  width: 100%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-img {
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}

.banner-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 520px;
  margin-inline: auto;
  object-fit: cover;
}

/* ——— Sections ——— */
.section {
  padding: var(--space) 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

.section-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-head .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 0.2rem;
  color: var(--accent-soft);
}

.section-head h2 {
  margin: 0;
}

.section-intro {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

/* ——— Icon SVGs (inline helpers) ——— */
.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ——— Cards / panels ——— */
.panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  margin-bottom: 1.25rem;
}

.panel:last-child { margin-bottom: 0; }

.panel-accent {
  border-color: var(--border-accent);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-elevated) 100%);
}

.grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-3 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.feature-block h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.feature-block h3 .icon {
  width: 20px;
  height: 20px;
  color: var(--accent-soft);
}

/* ——— Tables ——— */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 480px;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  background: var(--bg-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

td { color: var(--text-muted); }

tr:last-child td { border-bottom: none; }

tr:hover td { background: rgba(110, 240, 160, 0.03); }

.check { color: var(--accent); font-weight: 600; }

/* ——— Lists special ——— */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent-soft);
  border-radius: 1px;
  transform: rotate(45deg);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.steps li:last-child { border-bottom: none; }

.steps li::before {
  content: counter(step);
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-elevated);
}

/* ——— FAQ ——— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  padding: 1rem 1.2rem;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.faq-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* ——— Banner / mid CTA ——— */
.cta-strip {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  margin: 1.5rem 0;
}

.cta-strip h2,
.cta-strip h3 {
  margin-bottom: 0.75rem;
}

.cta-strip .cta-group {
  justify-content: center;
}

/* ——— Content page (inner) ——— */
.page-hero {
  padding: clamp(2rem, 5vw, 3.25rem) 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { margin-bottom: 0.85rem; }

.content-block {
  padding: var(--space) 0;
}

.content-block + .content-block {
  border-top: 1px solid var(--border);
}

/* ——— Footer ——— */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: #0a0b0c;
  padding: 2.5rem 0 1.75rem;
}

.footer-brand {
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer-brand img {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 40rem;
  line-height: 1.5;
}

.footer-note p { margin-bottom: 0.5rem; color: var(--text-muted); }

.footer-copy {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: #6a726e;
}

/* ——— Divider ornament ——— */
.scale-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.5rem 0 1.5rem;
  color: var(--border-accent);
}

.scale-divider span {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
}

.scale-divider::before,
.scale-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: var(--border);
}

/* ——— Age badge ——— */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ——— Utility ——— */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-accent { color: var(--accent); }

@media (max-width: 600px) {
  .header-cta .btn { padding: 0.55rem 0.85rem; font-size: 0.8rem; }
  .container { width: min(100% - 1.5rem, var(--max)); }
  th, td { padding: 0.6rem 0.75rem; }
}
