/* Dragon Neon Jade — Casino Drakaris */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&family=Orbitron:wght@600;700;800&display=swap');

:root {
  --bg-deep: #020805;
  --bg-mid: #061a12;
  --bg-emerald: #0a2f22;
  --neon: #00ff9d;
  --neon-soft: #39ffc4;
  --jade: #00c98a;
  --turquoise: #2de8c8;
  --glass: rgba(4, 18, 14, 0.55);
  --glass-border: rgba(0, 255, 157, 0.35);
  --text: #e8fff4;
  --text-muted: #9bbfad;
  --danger: #ff4d6d;
  --radius: 18px;
  --header-h: 76px;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --glow: 0 0 18px rgba(0, 255, 157, 0.55), 0 0 42px rgba(45, 232, 200, 0.25);
  --glow-soft: 0 0 12px rgba(0, 255, 157, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(0, 201, 138, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(45, 232, 200, 0.12), transparent 50%),
    linear-gradient(165deg, var(--bg-deep) 0%, var(--bg-mid) 42%, var(--bg-emerald) 78%, var(--bg-deep) 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpath d='M40 0 L80 23 L80 69 L40 92 L0 69 L0 23 Z' fill='none' stroke='%2300ff9d' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}

a {
  color: var(--neon);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
  color: var(--turquoise);
  text-shadow: var(--glow-soft);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(2, 8, 5, 0.92), rgba(6, 26, 18, 0.78));
  border-bottom: 1px solid rgba(0, 255, 157, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, 92%);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.brand img {
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.55));
}

.header-cta {
  display: flex;
  gap: 0.65rem;
  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.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  color: #02140c;
}

.btn-primary {
  color: #02140c;
  background: linear-gradient(120deg, #04150e 0%, #00c98a 48%, #00ff9d 100%);
  box-shadow: var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 0 28px rgba(0, 255, 157, 0.75), 0 0 56px rgba(45, 232, 200, 0.35);
  color: #02140c;
}

.btn-ghost {
  color: var(--neon);
  background: rgba(0, 255, 157, 0.06);
  border-color: rgba(0, 255, 157, 0.45);
  box-shadow: inset 0 0 20px rgba(0, 255, 157, 0.08);
}

.btn-ghost:hover {
  background: rgba(0, 255, 157, 0.18);
  color: var(--neon-soft);
  box-shadow: var(--glow-soft);
}

.btn-lg {
  padding: 1.05rem 1.8rem;
  font-size: 0.85rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -8%;
  top: 10%;
  width: min(58vw, 640px);
  height: min(58vw, 640px);
  border-radius: 40% 60% 55% 45%;
  background:
    radial-gradient(circle at 40% 40%, rgba(0, 255, 157, 0.28), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(45, 232, 200, 0.18), transparent 55%);
  filter: blur(8px);
  animation: pulse-orb 7s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes pulse-orb {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
  50% { transform: scale(1.08) rotate(8deg); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 1.1rem;
  text-shadow: var(--glow-soft);
}

.hero-badge::before {
  content: '';
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  background: var(--neon);
  box-shadow: var(--glow);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 4.2vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  text-shadow: var(--glow);
  background: linear-gradient(120deg, #e8fff4 20%, #00ff9d 55%, #2de8c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 28px 8px 40px 16px;
  border: 1px solid var(--glass-border);
  box-shadow:
    0 0 0 1px rgba(45, 232, 200, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(0, 255, 157, 0.2);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 34px 14px 46px 22px;
  border: 1px solid rgba(0, 255, 157, 0.2);
  pointer-events: none;
  animation: glow-ring 4s ease-in-out infinite;
}

@keyframes glow-ring {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 157, 0.15); }
  50% { box-shadow: 0 0 36px rgba(45, 232, 200, 0.35); }
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(0, 255, 157, 0.03), transparent);
}

.section-head {
  margin-bottom: 2rem;
  max-width: 48rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
  text-shadow: var(--glow-soft);
  color: var(--text);
}

.section-head p,
.prose p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul,
.prose ol {
  margin: 0.85rem 0 1.25rem 1.25rem;
  color: var(--text-muted);
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose li::marker {
  color: var(--neon);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  margin: 0 0 1rem;
  color: var(--text);
  text-shadow: var(--glow-soft);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--neon-soft);
  text-shadow: var(--glow-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* —— Glass cards —— */
.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(0, 255, 157, 0.12),
    0 0 24px rgba(0, 255, 157, 0.08);
  padding: 1.6rem;
}

.glass-panel {
  padding: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
  color: var(--neon);
}

.feature-card p,
.feature-card ul {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-card ul {
  margin-left: 1.1rem;
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.media-split img {
  border-radius: 22px 6px 28px 12px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.15);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.media-split.reverse .media-copy {
  order: 2;
}

.media-split.reverse .media-img {
  order: 1;
}

/* —— FAQ —— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 157, 0.25);
  background: rgba(2, 12, 9, 0.65);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(0, 255, 157, 0.55);
  box-shadow: var(--glow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--text);
  position: relative;
  padding-right: 2.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neon);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  padding: 0 1.35rem 1.2rem;
  color: var(--text-muted);
}

/* —— Inner page —— */
.page-hero {
  padding: 3.5rem 0 2rem;
  text-align: left;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  text-shadow: var(--glow);
  margin-bottom: 1rem;
  background: linear-gradient(120deg, #fff, #00ff9d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.content-block {
  padding-bottom: 4rem;
}

.content-block .glass-panel {
  margin-bottom: 1.5rem;
}

/* —— Footer —— */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 255, 157, 0.25);
  background: linear-gradient(180deg, rgba(0, 255, 157, 0.05), rgba(2, 8, 5, 0.95));
  padding: 2.75rem 0 2rem;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 42px;
  max-width: 160px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: var(--neon);
}

.footer-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 40rem;
}

.footer-copy {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 255, 157, 0.12);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--neon);
  color: var(--neon);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--glow-soft);
}

/* —— Decorative divider —— */
.scale-divider {
  height: 28px;
  margin: 0 auto;
  width: min(280px, 60%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28' viewBox='0 0 56 28'%3E%3Cpath d='M28 2 L54 14 L28 26 L2 14 Z' fill='none' stroke='%2300ff9d' stroke-width='1.4'/%3E%3C/svg%3E")
    center / contain repeat-x;
  opacity: 0.55;
  filter: drop-shadow(0 0 6px rgba(0, 255, 157, 0.45));
}

/* —— Motion on scroll feel —— */
.reveal {
  animation: fade-up 0.8s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .hero-grid,
  .media-split,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .media-split.reverse .media-copy,
  .media-split.reverse .media-img {
    order: initial;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .header-cta .btn-ghost {
    display: none;
  }
}

@media (max-width: 560px) {
  .btn {
    padding: 0.75rem 1.05rem;
    font-size: 0.7rem;
  }

  .brand img {
    height: 40px;
    max-width: 140px;
  }

  .glass-panel {
    padding: 1.35rem;
  }
}
