/* 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-card: #0e1410;
  --bg-card-alt: #121a15;
  --emerald: #00e676;
  --emerald-deep: #00c853;
  --emerald-dim: #1b5e20;
  --emerald-glow: rgba(0, 230, 118, 0.45);
  --emerald-soft: rgba(0, 230, 118, 0.12);
  --text: #e8f5e9;
  --text-muted: #9aaa9c;
  --border: rgba(0, 230, 118, 0.35);
  --border-strong: rgba(0, 230, 118, 0.65);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 4px;
  --max: 1120px;
}

*,
*::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;
  font-size: 16px;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 100, 55, 0.35), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 80, 40, 0.15), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(0, 60, 30, 0.12), transparent);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--emerald);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
  color: #69f0ae;
  text-shadow: 0 0 8px var(--emerald-glow);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* —— 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 4px 24px rgba(0, 0, 0, 0.5), 0 1px 0 var(--emerald-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  color: var(--text);
  text-shadow: none;
}

.brand img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.header-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #007a3d 0%, var(--emerald) 100%);
  color: #021008;
  box-shadow: 0 0 20px var(--emerald-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  color: #021008;
  text-shadow: none;
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 230, 118, 0.7), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--emerald);
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.15);
}

.btn-outline:hover {
  background: var(--emerald-soft);
  color: #69f0ae;
  text-shadow: 0 0 10px var(--emerald-glow);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 0.95rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 6, 0.95) 0%, rgba(5, 8, 6, 0.75) 45%, rgba(5, 8, 6, 0.45) 100%),
    linear-gradient(0deg, var(--bg-deep) 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
  max-width: 640px;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--emerald);
  text-shadow: 0 0 28px var(--emerald-glow), 0 0 60px rgba(0, 230, 118, 0.25);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* —— Scale divider —— */
.scale-divider {
  height: 28px;
  margin: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 10px,
      var(--emerald-dim) 10px,
      var(--emerald-dim) 11px
    ),
    radial-gradient(ellipse 8px 14px at 14px 50%, transparent 45%, var(--border) 46%, var(--border) 55%, transparent 56%);
  background-size: 28px 100%, 28px 100%;
  opacity: 0.55;
  border: none;
}

.claw-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0 0;
  color: var(--emerald-dim);
}

.claw-ornament svg {
  width: 36px;
  height: 20px;
  opacity: 0.7;
}

.claw-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* —— Sections —— */
.section {
  padding: 64px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(14, 20, 16, 0.6) 0%, transparent 100%);
  border-top: 1px solid rgba(0, 230, 118, 0.12);
  border-bottom: 1px solid rgba(0, 230, 118, 0.12);
}

.section-head {
  margin-bottom: 32px;
  max-width: 720px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
  text-shadow: 0 0 18px rgba(0, 230, 118, 0.25);
}

.section-head h2 .glow-accent {
  color: var(--emerald);
  text-shadow: 0 0 16px var(--emerald-glow);
}

.section-head p,
.section p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.section p:last-child {
  margin-bottom: 0;
}

.section h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--emerald);
  margin: 28px 0 12px;
  text-shadow: 0 0 12px rgba(0, 230, 118, 0.3);
}

.section h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin: 20px 0 10px;
}

.content-block p + p {
  margin-top: 14px;
}

ul.check-list,
ul.plain-list {
  list-style: none;
  margin: 16px 0;
}

ul.check-list li,
ul.plain-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

ul.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--emerald);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 8px var(--emerald-glow);
}

ul.plain-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--emerald-deep);
  box-shadow: 0 0 6px var(--emerald-glow);
}

/* —— Cards —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 0 0 1px rgba(0, 230, 118, 0.05), inset 0 0 40px rgba(0, 230, 118, 0.03);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.15);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.card p {
  font-size: 0.95rem;
}

/* —— Tables —— */
.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 230, 118, 0.15);
}

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.08);
  text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

td {
  color: var(--text-muted);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(0, 230, 118, 0.04);
}

/* —— Media split —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-img {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.1);
}

.split-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* —— FAQ —— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
}

/* —— CTA banner —— */
.cta-banner {
  text-align: center;
  padding: 72px 20px;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0, 100, 50, 0.35), transparent),
    var(--bg-near);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  margin-bottom: 16px;
  text-shadow: 0 0 24px var(--emerald-glow);
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* —— Inner page —— */
.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 80% at 20% 0%, rgba(0, 80, 40, 0.3), transparent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  color: var(--emerald);
  text-shadow: 0 0 24px var(--emerald-glow);
  margin-bottom: 12px;
}

.page-hero .lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
}

.prose {
  padding: 48px 0 64px;
}

.prose h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--text);
  margin: 40px 0 14px;
  text-shadow: 0 0 16px rgba(0, 230, 118, 0.2);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--emerald);
  margin: 28px 0 12px;
}

.prose p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.prose ul {
  list-style: none;
  margin: 14px 0 20px;
}

.prose ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--emerald);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 6px var(--emerald-glow);
}

.highlight-box {
  border: 1px solid var(--border-strong);
  background: rgba(0, 230, 118, 0.06);
  padding: 18px 22px;
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.1);
}

.highlight-box p {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

/* —— Footer —— */
.site-footer {
  background: #030504;
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-brand:hover {
  text-shadow: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 28px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: var(--emerald);
}

.footer-cta {
  margin-bottom: 28px;
}

.footer-copy {
  font-size: 0.8rem;
  color: #5a6a5c;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 230, 118, 0.1);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--emerald);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--emerald);
  box-shadow: 0 0 12px var(--emerald-glow);
  margin-right: 10px;
  vertical-align: middle;
}

/* —— Animations —— */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px var(--emerald-glow);
  }
  50% {
    box-shadow: 0 0 32px rgba(0, 230, 118, 0.65);
  }
}

.hero-content {
  animation: fadeUp 0.8s ease-out;
}

.btn-primary {
  animation: pulseGlow 3s ease-in-out infinite;
}

.card {
  animation: fadeUp 0.6s ease-out both;
}

.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* —— Responsive —— */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 48px 0 40px;
    max-width: 100%;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(5, 8, 6, 0.55) 0%, rgba(5, 8, 6, 0.92) 70%),
      linear-gradient(0deg, var(--bg-deep) 0%, transparent 25%);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-img img {
    height: 220px;
  }

  .header-cta .btn {
    padding: 10px 14px;
    font-size: 0.75rem;
  }

  .brand img {
    height: 36px;
    max-width: 150px;
  }

  .section {
    padding: 48px 0;
  }

  th, td {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .header-cta .btn-outline {
    display: none;
  }
}
