/* Dragon Neon Jade — Casino Drakaris */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --bg-void: #020805;
  --bg-deep: #04140c;
  --bg-emerald: #0a2f1f;
  --neon: #00ff88;
  --neon-hot: #39ff14;
  --jade: #00e5a0;
  --cyan: #00f5d4;
  --glass: rgba(4, 20, 12, 0.55);
  --glass-border: rgba(0, 255, 136, 0.35);
  --text: #e8fff4;
  --muted: #9bbfad;
  --danger: #ff4d6d;
  --radius: 18px;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --glow: 0 0 18px rgba(0, 255, 136, 0.45), 0 0 40px rgba(0, 245, 212, 0.2);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(0, 229, 160, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(0, 245, 212, 0.12), transparent 50%),
    linear-gradient(165deg, var(--bg-void) 0%, var(--bg-deep) 42%, var(--bg-emerald) 100%);
  background-attachment: fixed;
  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 width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l15 8.66v17.32L30 34.64 15 25.98V8.66z' fill='none' stroke='%2300ff88' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
  color: var(--neon);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(2, 8, 5, 0.75);
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 30px rgba(0, 255, 136, 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 img {
  width: auto;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.55));
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--neon), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.35));
}

.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.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.35rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  border-radius: 4px;
}

.btn-primary {
  color: #02140a;
  background: linear-gradient(115deg, #0a0a0a 0%, #00c96a 45%, var(--neon-hot) 100%);
  box-shadow: var(--glow);
}

.btn-primary:hover {
  color: #02140a;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 28px rgba(0, 255, 136, 0.65), 0 0 60px rgba(0, 245, 212, 0.3);
  filter: brightness(1.08);
}

.btn-ghost {
  color: var(--neon);
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.45);
  box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.08), 0 0 16px rgba(0, 255, 136, 0.15);
  clip-path: none;
  border-radius: 4px;
}

.btn-ghost:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(0, 245, 212, 0.1);
}

.btn-lg {
  font-size: 0.8rem;
  padding: 1.05rem 1.8rem;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.2), inset 0 0 60px rgba(0, 255, 136, 0.05);
  object-fit: cover;
  min-height: 280px;
  background: linear-gradient(135deg, #041a10, #0a3d28);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, transparent 40%, rgba(0, 255, 136, 0.35), rgba(0, 245, 212, 0.25));
  z-index: -1;
  filter: blur(12px);
  opacity: 0.7;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(0, 245, 212, 0.4);
  background: rgba(0, 245, 212, 0.08);
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.15);
}

.hero h1,
.page-hero h1,
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  text-shadow: 0 0 24px rgba(0, 255, 136, 0.45), 0 0 48px rgba(0, 245, 212, 0.2);
}

.hero h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.85rem);
  background: linear-gradient(100deg, #fff 10%, var(--neon) 55%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(0, 255, 136, 0.35));
}

.hero-lead,
.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin: 0 0 1.5rem;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.03), transparent 40%, rgba(0, 245, 212, 0.04));
  border-block: 1px solid rgba(0, 255, 136, 0.12);
}

.section-title {
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: var(--text);
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 0.65rem;
  vertical-align: middle;
  background: linear-gradient(135deg, var(--neon), var(--cyan));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 12px var(--neon);
}

.section-intro {
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 70ch;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--jade);
  text-shadow: 0 0 14px rgba(0, 229, 160, 0.35);
  margin: 2rem 0 0.85rem;
}

p {
  margin: 0 0 1rem;
}

ul, ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

li {
  margin-bottom: 0.45rem;
}

li strong,
p strong {
  color: var(--text);
}

/* Glass cards */
.glass {
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(0, 245, 212, 0.05) inset,
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(0, 255, 136, 0.08);
  padding: clamp(1.25rem, 3vw, 1.85rem);
}

.glass-grid {
  display: grid;
  gap: 1.25rem;
}

.glass-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.glass-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card h3 {
  margin-top: 0;
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.icon-row .scale-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 255, 136, 0.4);
  display: grid;
  place-items: center;
  color: var(--neon);
  font-size: 1rem;
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.2);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(0, 255, 136, 0.1);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: rgba(2, 12, 8, 0.65);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  min-width: 560px;
}

th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 255, 136, 0.12);
  vertical-align: top;
}

th {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(0, 255, 136, 0.08);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.35);
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(0, 255, 136, 0.04);
  color: var(--text);
}

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4.25rem;
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--muted);
  margin: 0;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.06);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #02140a;
  background: linear-gradient(135deg, var(--neon), var(--cyan));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: var(--glow);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.05);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--neon);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

/* Banner strip */
.cta-banner {
  position: relative;
  margin: 1rem 0;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 255, 136, 0.4);
  background:
    linear-gradient(120deg, rgba(0, 255, 136, 0.12), rgba(0, 245, 212, 0.05) 50%, rgba(0, 0, 0, 0.4)),
    rgba(4, 20, 12, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: var(--glow);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  text-shadow: 0 0 22px rgba(0, 255, 136, 0.5);
}

.cta-banner p {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 1.5rem;
}

.banner-img {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
  min-height: 160px;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #041a10, #0a3d28);
}

/* Page (inner) */
.page-hero {
  padding: clamp(2rem, 5vw, 3.25rem) 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  background: linear-gradient(100deg, #fff, var(--neon), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(0, 255, 136, 0.3));
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}

.meta-line span {
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(0, 245, 212, 0.3);
  background: rgba(0, 245, 212, 0.06);
}

.content-block {
  margin-bottom: 2rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--text);
  text-shadow: 0 0 16px rgba(0, 255, 136, 0.35);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.page-marker {
  font-size: 0.85rem;
  color: rgba(155, 191, 173, 0.55);
  margin: 1.5rem 0;
  font-style: italic;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 255, 136, 0.2);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}

.footer-inner {
  padding: 2.5rem 0 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  display: inline-block;
}

.footer-brand img {
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--neon);
}

.footer-note {
  color: rgba(155, 191, 173, 0.65);
  font-size: 0.95rem;
  margin: 0;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--danger);
  color: var(--danger);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 77, 109, 0.35);
}

/* Animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-visual,
.section .glass,
.cta-banner {
  animation: fade-up 0.7s ease-out both;
}

.hero-visual {
  animation-delay: 0.15s;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .glass-grid-2,
  .glass-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .header-cta {
    justify-content: stretch;
  }

  .header-cta .btn {
    flex: 1;
    text-align: center;
  }

  .btn {
    font-size: 0.65rem;
    padding: 0.75rem 1rem;
  }

  .brand-name {
    font-size: 0.95rem;
  }
}
