@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════════════════
   DRAGON MINIMAL ONYX — Style 2
   Casino Drakaris | it-drakaris.com
═══════════════════════════════════════════════════════ */

:root {
  --bg:              #0f1012;
  --surface:         #161719;
  --card:            #1b1d21;
  --accent:          #00c870;
  --accent-hover:    #00e882;
  --accent-dim:      rgba(0, 200, 112, 0.09);
  --accent-border:   rgba(0, 200, 112, 0.24);
  --text:            #dde0e5;
  --text-muted:      #6a6e75;
  --text-sub:        #9ca0a8;
  --border:          #242629;
  --radius-sm:       4px;
  --radius:          6px;
  --radius-lg:       10px;
  --header-h:        64px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ── */
h1 {
  font-size: clamp(1.75rem, 4.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.01em;
}
h3 { font-size: 1.05rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

/* ── Container ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ─────────────────────────────
   HEADER
───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(15, 16, 18, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; color: var(--text); }
.logo-icon { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.logo-accent { color: var(--accent); }
.logo-img { height: 36px; width: auto; display: block; }
.header-ctas { display: flex; gap: 0.6rem; align-items: center; }

/* ─────────────────────────────
   BUTTONS
───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.87rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
  padding: 0.5rem 1.25rem;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #07100c;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #07100c;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-border);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-dim);
  border-color: rgba(0, 200, 112, 0.5);
  text-decoration: none;
  color: var(--accent);
}
.btn-lg { padding: 0.72rem 2.1rem; font-size: 0.95rem; }
.btn-xl { padding: 0.88rem 2.5rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ─────────────────────────────
   HERO
───────────────────────────── */
.hero {
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 40%;
  transform: translateY(-50%);
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,200,112,0.035) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--accent-border);
  background: var(--accent-dim);
  border-radius: 2rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.hero-eyebrow svg { width: 10px; height: 10px; }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .hl { color: var(--accent); }
.hero-desc {
  color: var(--text-sub);
  font-size: 0.98rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background-color: var(--card);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 4 / 3;
  min-height: 260px;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(140deg, var(--accent-border) 0%, transparent 45%);
  z-index: 0;
  pointer-events: none;
}
.banner-bg {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background-color: var(--card);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 260px;
  width: 100%;
  overflow: hidden;
}

/* ─────────────────────────────
   SECTION BASE
───────────────────────────── */
.section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.section-eyebrow svg { width: 10px; height: 10px; flex-shrink: 0; }
.section-title { margin-bottom: 0.6rem; }
.section-lead {
  color: var(--text-sub);
  max-width: 700px;
  margin-bottom: 2rem;
  font-size: 0.98rem;
}

/* ─────────────────────────────
   CARDS
───────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.card-sm { padding: 1.1rem 1.25rem; }
.card-accent { border-color: var(--accent-border); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ─────────────────────────────
   STEP LIST
───────────────────────────── */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1.5rem 0;
  list-style: none;
  padding: 0;
}
.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.8rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0;
  line-height: 1.55;
  font-size: 0.94rem;
}
.step-list li .num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--accent-border);
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ─────────────────────────────
   DIAMOND LIST
───────────────────────────── */
.diamond-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 1rem 0;
}
.diamond-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.94rem;
  color: var(--text-sub);
  margin-bottom: 0;
}
.diamond-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.54rem;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* ─────────────────────────────
   TABLES
───────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
}
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
thead th {
  background: var(--surface);
  color: var(--accent);
  font-weight: 700;
  text-align: left;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
tbody tr { border-bottom: 1px solid var(--border); transition: background 0.1s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover td { background: rgba(0, 200, 112, 0.04) !important; }
tbody td { padding: 0.65rem 1rem; vertical-align: middle; }
tbody tr:nth-child(odd) td { background: var(--card); }
tbody tr:nth-child(even) td { background: var(--bg); }

/* ─────────────────────────────
   FAQ ACCORDION
───────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item.open { border-color: var(--accent-border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.15s;
}
.faq-btn:hover { color: var(--accent); }
.faq-item.open .faq-btn { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 0.22s, background 0.15s, border-color 0.15s;
  font-size: 1rem;
  line-height: 1;
}
.faq-item.open .faq-chevron {
  transform: rotate(45deg);
  background: var(--accent-dim);
  border-color: var(--accent-border);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-item.open .faq-body { max-height: 600px; }
.faq-body-inner {
  padding: 0.9rem 1.25rem 1.1rem;
  color: var(--text-sub);
  font-size: 0.9rem;
  line-height: 1.72;
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────
   TWO-COL LAYOUT
───────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.two-col-65 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ─────────────────────────────
   INFOBOX
───────────────────────────── */
.infobox {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 0.95rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  margin: 1.25rem 0;
}
.infobox svg { flex-shrink: 0; color: var(--accent); width: 16px; height: 16px; margin-top: 2px; }
.infobox p { color: var(--text-sub); margin: 0; line-height: 1.6; }

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  margin-top: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-brand { max-width: 360px; }
.footer-brand .logo { margin-bottom: 0.6rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-end; }
.footer-nav-label {
  color: var(--text-muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.footer-nav a {
  color: var(--text-muted);
  font-size: 0.83rem;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--accent); text-decoration: none; }
.footer-legal {
  color: var(--text-muted);
  font-size: 0.77rem;
  line-height: 1.7;
}
.footer-legal p { margin-bottom: 0.35rem; }
.footer-legal p:last-child { margin-bottom: 0; }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-muted);
  vertical-align: middle;
  margin-right: 0.35rem;
}

/* ─────────────────────────────
   INNER PAGE
───────────────────────────── */
.page-header {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.page-header .section-eyebrow { margin-bottom: 0.5rem; }
.page-header h1 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 0.6rem; }
.page-header .lead {
  color: var(--text-sub);
  font-size: 0.98rem;
  max-width: 680px;
}
.page-body {
  max-width: 820px;
  padding-bottom: 5rem;
}
.page-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.65rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.page-body h2:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.page-body h3 {
  font-size: 0.97rem;
  color: var(--accent);
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.page-body > p { color: var(--text-sub); }
.page-body > p strong { color: var(--text); }
.page-body ul, .page-body ol {
  color: var(--text-sub);
  margin: 0.65rem 0 1rem;
}
.page-body li { margin-bottom: 0.45rem; }

/* ─────────────────────────────
   SECTION DIVIDER ORNAMENT
───────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.25rem 0 2rem;
}
.ornament-line { flex: 1; height: 1px; background: var(--border); }
.ornament-diamond {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
  opacity: 0.55;
}

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .two-col-65 { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 660px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { align-items: flex-start; }
}
@media (max-width: 600px) {
  .hero { padding: 2.75rem 0 2.5rem; }
  .section { padding: 2.5rem 0; }
  .hero-ctas { flex-direction: column; }
  .btn-lg, .btn-xl { width: 100%; }
  .header-ctas .btn-outline { display: none; }
  thead th, tbody td { padding: 0.55rem 0.75rem; font-size: 0.82rem; }
}
