/* Casino Drakaris — Style 1: Dragon Emerald Dark */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --bg-deep: #050806;
  --bg-near: #0a0f0c;
  --bg-panel: #0e1511;
  --bg-card: #121a16;
  --emerald: #00e676;
  --emerald-deep: #00c853;
  --emerald-dim: #1b5e3a;
  --emerald-glow: rgba(0, 230, 118, 0.45);
  --emerald-soft: rgba(0, 230, 118, 0.12);
  --text: #e8f5ee;
  --text-muted: #9bb5a6;
  --border: rgba(0, 230, 118, 0.28);
  --border-strong: rgba(0, 230, 118, 0.55);
  --danger: #ff5252;
  --radius: 10px;
  --max: 1120px;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 100, 55, 0.35), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 40%, rgba(0, 80, 40, 0.15), transparent 50%),
    linear-gradient(180deg, #050806 0%, #070b08 40%, #050806 100%);
}

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: #69f0ae;
  text-shadow: 0 0 10px var(--emerald-glow);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 8, 6, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  color: var(--text);
  text-shadow: none;
}

.brand img {
  width: auto;
  height: 52px;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--emerald-glow));
}

.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;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.75rem 1.35rem;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: #041208;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-deep), var(--emerald));
  color: #041208;
  box-shadow: 0 0 20px var(--emerald-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 0 32px rgba(0, 230, 118, 0.7), 0 4px 16px rgba(0, 0, 0, 0.4);
  color: #041208;
  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.15);
}

.btn-outline:hover {
  background: var(--emerald-soft);
  color: var(--emerald);
  box-shadow: 0 0 22px var(--emerald-glow);
  text-shadow: 0 0 8px var(--emerald-glow);
}

.btn-lg {
  padding: 1rem 1.85rem;
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 6, 0.35) 0%, rgba(5, 8, 6, 0.75) 45%, rgba(5, 8, 6, 0.98) 100%),
    linear-gradient(90deg, rgba(5, 8, 6, 0.85) 0%, rgba(5, 8, 6, 0.35) 55%, rgba(5, 8, 6, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1rem;
  text-shadow: 0 0 12px var(--emerald-glow);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 5vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 0 28px var(--emerald-glow), 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero h1 .accent {
  color: var(--emerald);
  display: block;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 540px;
}

.hero-offer {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--emerald);
  text-shadow: 0 0 16px var(--emerald-glow);
}

/* —— 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);
}

.scale-divider svg {
  width: min(280px, 70vw);
  height: 18px;
  opacity: 0.7;
}

.scale-claw {
  width: 22px;
  height: 22px;
  opacity: 0.85;
  filter: drop-shadow(0 0 6px var(--emerald-glow));
}

/* —— Sections —— */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(14, 21, 17, 0.65), transparent);
}

.section-head {
  margin-bottom: 2rem;
  max-width: 720px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 10px var(--emerald-glow);
}

.section-label svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 20px rgba(0, 230, 118, 0.25);
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin: 1.75rem 0 0.75rem;
  color: var(--text);
}

h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--emerald);
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--text);
}

ul,
ol {
  margin: 0.75rem 0 1.25rem 1.25rem;
  color: var(--text-muted);
}

li {
  margin-bottom: 0.45rem;
}

li::marker {
  color: var(--emerald);
}

/* —— Cards & grids —— */
.card {
  background: var(--bg-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.04), 0 8px 32px rgba(0, 0, 0, 0.35);
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.12), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.feature-card h3,
.feature-card h4 {
  margin-top: 0;
}

.feature-card .icon-wrap {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.85rem;
  color: var(--emerald);
  background: var(--emerald-soft);
  box-shadow: 0 0 14px rgba(0, 230, 118, 0.15);
}

.feature-card .icon-wrap svg {
  width: 22px;
  height: 22px;
}

.media-block {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.1);
}

.media-block img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

/* —— Tables —— */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-panel);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.06);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 230, 118, 0.12);
}

th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(0, 230, 118, 0.06);
}

td {
  color: var(--text-muted);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(0, 230, 118, 0.03);
}

/* —— Steps —— */
.steps {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 1rem 1rem 1rem 3.5rem;
  margin-bottom: 0.65rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.85rem;
  height: 1.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #041208;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--emerald-glow);
}

/* —— FAQ —— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.35rem;
  color: var(--emerald);
  text-shadow: 0 0 8px var(--emerald-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.25rem 1.15rem;
  color: var(--text-muted);
}

/* —— Highlight / offer banner —— */
.offer-banner {
  position: relative;
  padding: 2rem 1.75rem;
  background:
    linear-gradient(135deg, rgba(0, 80, 40, 0.45), rgba(10, 15, 12, 0.95)),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.18);
  text-align: center;
  margin: 1.5rem 0;
}

.offer-banner .offer-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--emerald);
  text-shadow: 0 0 22px var(--emerald-glow);
  margin-bottom: 0.5rem;
}

.offer-banner p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* —— Age notice —— */
.age-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--emerald);
  border: 1px solid var(--border);
  padding: 0.55rem 1rem;
  border-radius: 6px;
  background: var(--emerald-soft);
  margin: 1rem 0;
  text-shadow: 0 0 8px var(--emerald-glow);
}

/* —— Page hero (inner pages) —— */
.page-hero {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 80% at 20% 0%, rgba(0, 100, 55, 0.25), transparent 60%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  text-shadow: 0 0 24px var(--emerald-glow);
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  max-width: 680px;
}

.content-page {
  padding: 2.5rem 0 4rem;
}

.content-page .prose {
  max-width: 820px;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border);
  background: #030504;
  padding: 2.75rem 0 1.75rem;
  margin-top: 2rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--emerald-glow));
}

.footer-brand:hover {
  text-shadow: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 1.25rem 0 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--emerald);
}

.footer-cta {
  margin-bottom: 1.5rem;
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.75;
  border-top: 1px solid rgba(0, 230, 118, 0.1);
  padding-top: 1.25rem;
}

.footer-legal p {
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
}

/* —— Animations —— */
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeUp 0.8s ease-out both;
}

.btn-primary {
  animation: glowPulse 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .btn-primary {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 2.5rem;
    align-items: flex-end;
  }

  .header-cta .btn {
    padding: 0.6rem 0.9rem;
    font-size: 0.75rem;
  }

  .brand img {
    height: 40px;
  }

  th,
  td {
    padding: 0.7rem 0.85rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  .header-cta {
    gap: 0.4rem;
  }

  .header-cta .btn-outline {
    display: none;
  }
}
