/* Casino Drakaris — Style 1: Dragon Emerald Dark */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --bg-deep: #050806;
  --bg-base: #0a0f0c;
  --bg-elevated: #101612;
  --bg-card: #0d1410;
  --green: #00e676;
  --green-bright: #39ff14;
  --green-dark: #00a854;
  --green-dim: rgba(0, 230, 118, 0.15);
  --green-border: rgba(0, 230, 118, 0.35);
  --green-glow: rgba(0, 230, 118, 0.55);
  --text: #e8f5e9;
  --text-muted: #9aafa0;
  --white: #ffffff;
  --radius: 10px;
  --font: 'Poppins', sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 168, 84, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 230, 118, 0.05), transparent),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 40%, #071009 100%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
  color: var(--green-bright);
  text-shadow: 0 0 10px var(--green-glow);
}

ul, ol {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.4rem;
}

/* Scale pattern divider */
.scale-divider {
  height: 28px;
  margin: 0 auto;
  max-width: var(--max);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cpath d='M0 20 Q10 0 20 20 Q30 0 40 20' fill='none' stroke='%2300e676' stroke-opacity='0.35' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.7;
}

/* 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(--green-border);
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.08);
}

.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(--white);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px var(--green-glow);
}

.brand:hover {
  color: var(--green-bright);
}

.brand img {
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
}

.footer-brand img {
  height: 44px;
  max-width: 160px;
}

.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;
  padding: 0.7rem 1.35rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #021006;
  box-shadow: 0 0 18px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  color: #021006;
  transform: translateY(-2px);
  box-shadow: 0 0 28px var(--green-glow), 0 4px 16px rgba(0, 0, 0, 0.4);
  text-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green-border);
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.15);
}

.btn-outline:hover {
  background: var(--green-dim);
  color: var(--green-bright);
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
}

.btn-glow {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 16px var(--green-glow); }
  50% { box-shadow: 0 0 32px var(--green-glow), 0 0 48px rgba(57, 255, 20, 0.25); }
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--green-border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(5, 8, 6, 0.94) 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: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.5rem;
  width: 100%;
}

.hero-brand {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 0 30px var(--green-glow), 0 0 60px rgba(0, 230, 118, 0.3);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.hero-title {
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 600;
  color: var(--green);
  text-shadow: 0 0 16px rgba(0, 230, 118, 0.45);
  margin-bottom: 0.75rem;
  max-width: 640px;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Sections */
.section {
  padding: 3.5rem 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 0 20px rgba(0, 230, 118, 0.35);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-head h2::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e676' stroke-width='2'%3E%3Cpath d='M12 2 L14 8 L20 9 L15 13 L17 20 L12 16 L7 20 L9 13 L4 9 L10 8 Z'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 0 6px var(--green-glow));
}

.section-head p,
.prose p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.prose h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 0 18px rgba(0, 230, 118, 0.3);
  margin: 2rem 0 0.85rem;
}

.prose h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  margin: 1.5rem 0 0.6rem;
  text-shadow: 0 0 10px rgba(0, 230, 118, 0.25);
}

.prose p {
  margin-bottom: 0.9rem;
}

.prose ul, .prose ol {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.06), inset 0 1px 0 rgba(0, 230, 118, 0.08);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.banner-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--green-border);
  margin: 1.25rem 0;
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.12);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--green-border);
  background: var(--bg-card);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 230, 118, 0.12);
}

th {
  background: rgba(0, 230, 118, 0.1);
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

td {
  color: var(--text-muted);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(0, 230, 118, 0.04);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.faq-item:hover {
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.15);
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.faq-item p {
  color: var(--text-muted);
  margin: 0;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 3rem 1.25rem;
  background:
    radial-gradient(ellipse at center, rgba(0, 230, 118, 0.12), transparent 70%),
    var(--bg-elevated);
  border-top: 1px solid var(--green-border);
  border-bottom: 1px solid var(--green-border);
}

.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 0 22px var(--green-glow);
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cta-band .hero-actions {
  justify-content: center;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3rem 1.25rem 2rem;
  border-bottom: 1px solid var(--green-border);
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(0, 168, 84, 0.15), transparent);
}

.page-hero .section-inner h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 0 24px var(--green-glow);
  margin-bottom: 0.5rem;
}

.page-hero .section-inner p {
  color: var(--text-muted);
  max-width: 640px;
}

.content-page {
  padding: 2.5rem 1.25rem 3.5rem;
}

.content-page .section-inner {
  max-width: 860px;
}

/* Footer */
.site-footer {
  background: #030504;
  border-top: 1px solid var(--green-border);
  padding: 2.5rem 1.25rem 1.75rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
  list-style: none;
  padding: 0;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--green);
}

.footer-copy {
  font-size: 0.8rem;
  color: #6a7d70;
  border-top: 1px solid rgba(0, 230, 118, 0.12);
  padding-top: 1.25rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-weight: 800;
  font-size: 0.75rem;
  margin-right: 0.65rem;
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
  vertical-align: middle;
}

/* Help contacts block */
.help-block {
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1rem;
}

.help-block h3 {
  margin-top: 0;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 1rem 1rem 1rem 3.5rem;
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  color: var(--text-muted);
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

/* Media */
@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .header-cta {
    justify-content: stretch;
  }

  .header-cta .btn {
    flex: 1;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3rem 1.15rem 2.5rem;
  }

  th, td {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }
}
