/* 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: #0e1012;
  --bg-elevated: #16191d;
  --bg-soft: #1c2026;
  --border: #2a3038;
  --border-accent: #3d8f6a;
  --text: #e8ecef;
  --text-muted: #9aa3ad;
  --accent: #4ade80;
  --accent-soft: #34a86a;
  --accent-dim: rgba(74, 222, 128, 0.12);
  --danger: #c45c5c;
  --radius: 4px;
  --max: 1080px;
  --font: 'Manrope', system-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: 16px;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #86efac;
}

ul, ol {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.4rem;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 16, 18, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  color: var(--text);
}

.brand img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.footer-brand img {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.header-cta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.15rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #0a0c0e;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #86efac;
  color: #0a0c0e;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--border-accent);
}

.btn-outline:hover {
  background: var(--accent-dim);
  color: #86efac;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* —— Layout —— */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

.section-tight {
  padding: 3rem 0;
}

.page-main {
  padding-bottom: 2rem;
}

/* —— Typography —— */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.75rem;
}

.section-label svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  color: var(--text);
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.section p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section p:last-child {
  margin-bottom: 0;
}

.section strong {
  color: var(--text);
  font-weight: 600;
}

/* —— Hero —— */
.hero {
  padding: 3.5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.hero-visual {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* —— Stats —— */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2.5rem;
}

@media (min-width: 700px) {
  .stats {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stat {
  background: var(--bg-elevated);
  padding: 1.25rem 1rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* —— Stage cards —— */
.stages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (min-width: 800px) {
  .stages {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stage {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stage:hover {
  border-color: var(--border-accent);
}

.stage-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.stage-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stage-offer {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.stage-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.stage-games {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: auto;
}

/* —— Tables —— */
.table-wrap {
  overflow-x: auto;
  margin-top: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
}

th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

td {
  color: var(--text-muted);
  background: var(--bg-elevated);
}

tr:last-child td {
  border-bottom: none;
}

td:first-child {
  color: var(--text);
  font-weight: 500;
}

.check {
  color: var(--accent);
  font-weight: 700;
}

/* —— Feature list —— */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (min-width: 700px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.feature-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.85rem;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.feature h3 {
  margin-bottom: 0.45rem;
}

.feature p {
  font-size: 0.925rem;
  margin: 0;
}

/* —— Pros / Cons —— */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--bg-elevated);
}

.panel h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.panel ul {
  list-style: none;
  padding: 0;
}

.panel li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.925rem;
}

.panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent);
}

.panel.muted li::before {
  background: var(--text-muted);
}

/* —— FAQ —— */
.faq {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.925rem;
}

/* —— Content blocks (inner pages) —— */
.content-block {
  margin-top: 1.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.content-block + .content-block {
  margin-top: 1rem;
}

.content-block h3 {
  color: var(--accent);
  font-size: 1rem;
}

.content-block .code-tag {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
}

.provider-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 800px) {
  .provider-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.game-list {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
}

.game-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.925rem;
}

.game-list li:last-child {
  border-bottom: none;
}

.game-list strong {
  color: var(--text);
}

.numbered-section {
  margin-top: 2rem;
}

.numbered-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.numbered-section + .numbered-section {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.support-links {
  margin-top: 1rem;
}

.support-links a {
  display: inline-block;
  margin-top: 0.25rem;
}

/* —— Mid CTA band —— */
.cta-band {
  margin: 2rem 0 0;
  padding: 1.75rem;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  background: var(--accent-dim);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-band p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
  background: var(--bg-elevated);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.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-copy {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: #6b737c;
}

/* —— Page hero (inner) —— */
.page-hero {
  padding: 2.75rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.page-hero .lead {
  margin-top: 0.25rem;
}

/* —— Utility —— */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.75rem; }
.text-accent { color: var(--accent); }

@media (max-width: 560px) {
  .header-cta .btn-outline {
    display: none;
  }

  .stat-value {
    font-size: 1.15rem;
  }

  .section {
    padding: 3rem 0;
  }
}
