@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #d4a83c;
  --gold-bright: #f0c840;
  --gold-dark: #9a7820;
  --glow: 0 0 18px rgba(212,168,60,0.5), 0 0 40px rgba(212,168,60,0.18);
  --glow-strong: 0 0 28px rgba(212,168,60,0.75), 0 0 65px rgba(212,168,60,0.28);
  --card-bg: rgba(5,30,16,0.62);
  --card-border: rgba(212,168,60,0.22);
  --card-border-hover: rgba(212,168,60,0.52);
  --text: #f0ede5;
  --text-muted: rgba(240,237,229,0.6);
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: radial-gradient(ellipse at 50% -5%, #145c35 0%, #052010 42%, #010c06 75%, #010805 100%) fixed;
  min-height: 100vh;
  line-height: 1.72;
  font-size: 16px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(1,10,5,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212,168,60,0.14);
  padding: 13px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(140deg, #d4a83c 0%, #c06018 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 14px rgba(212,168,60,0.55);
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  text-shadow: 0 0 16px rgba(212,168,60,0.4);
}

.logo-text span { color: #fff; }

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #d4a83c 0%, #c06018 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 0.03em;
  box-shadow: 0 0 18px rgba(212,168,60,0.4), 0 4px 14px rgba(0,0,0,0.4);
  transition: all 0.28s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: 0 0 32px rgba(212,168,60,0.75), 0 0 65px rgba(212,168,60,0.25), 0 4px 20px rgba(0,0,0,0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 11px 26px;
  background: transparent;
  color: var(--gold-bright);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 50px;
  border: 1.5px solid rgba(212,168,60,0.45);
  transition: all 0.28s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-secondary:hover {
  border-color: var(--gold-bright);
  background: rgba(212,168,60,0.08);
  box-shadow: 0 0 16px rgba(212,168,60,0.22);
}

.btn-large { padding: 16px 44px; font-size: 1.05rem; }

/* ── HERO ── */
.hero {
  padding: 88px 24px 76px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(20,92,53,0.3) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero > .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(212,168,60,0.09);
  border: 1px solid rgba(212,168,60,0.38);
  color: var(--gold-bright);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .gold-line {
  color: var(--gold-bright);
  text-shadow: 0 0 28px rgba(212,168,60,0.45);
}

.hero-intro {
  font-size: 1.04rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 34px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-img {
  max-width: 860px;
  width: 100%;
  border-radius: 18px;
  margin: 0 auto;
  display: block;
  border: 1px solid rgba(212,168,60,0.2);
  box-shadow: 0 0 50px rgba(0,0,0,0.55), 0 0 30px rgba(212,168,60,0.1);
}

/* ── SECTIONS ── */
section { padding: 75px 24px; }

.section-badge {
  display: inline-block;
  padding: 5px 17px;
  background: rgba(212,168,60,0.08);
  border: 1px solid rgba(212,168,60,0.32);
  color: var(--gold);
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 58px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  border-radius: 2px;
}

.section-header { margin-bottom: 42px; }

.section-header.centered { text-align: center; }

.section-header.centered .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-lead {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 18px;
  max-width: 680px;
}

.section-header.centered .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ── GLASS CARD ── */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 0 28px rgba(212,168,60,0.1);
}

/* ── TABLES ── */
.table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.styled-table th {
  background: rgba(212,168,60,0.1);
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(212,168,60,0.22);
}

.styled-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(212,168,60,0.09);
  color: var(--text);
  font-size: 0.94rem;
}

.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: rgba(212,168,60,0.04); }

.td-highlight {
  color: var(--gold-bright);
  font-weight: 600;
  text-shadow: 0 0 8px rgba(212,168,60,0.28);
}

/* ── GAME GRID ── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.game-card { text-align: center; padding: 30px 24px; }

.game-card-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: block;
}

.game-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

.game-card p { color: var(--text-muted); font-size: 0.88rem; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.step-card { padding: 30px 26px; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(212,168,60,0.18);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 9px;
}

.step-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item { padding: 24px 28px; }

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 10px;
  line-height: 1.45;
}

.faq-item p { color: var(--text-muted); font-size: 0.92rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(18,80,46,0.38) 0%, rgba(100,68,8,0.18) 100%);
  border: 1px solid rgba(212,168,60,0.28);
  border-radius: 20px;
  padding: 62px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,60,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  color: #fff;
  margin-bottom: 14px;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 32px;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 72px 24px 54px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(20,92,53,0.28) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero > .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero h1 .gold {
  color: var(--gold-bright);
  text-shadow: 0 0 22px rgba(212,168,60,0.42);
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 30px;
}

/* ── TEXT CONTENT ── */
.text-content p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 15px;
}

.text-content p:last-child { margin-bottom: 0; }

.text-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #fff;
  margin: 30px 0 13px;
}

.text-content h3:first-child { margin-top: 0; }

/* ── STYLED LIST ── */
.styled-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.styled-list li {
  padding-left: 22px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.styled-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.42em;
}

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.feature-card { padding: 28px; }

.feature-icon {
  font-size: 2.1rem;
  margin-bottom: 13px;
  display: block;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: #fff;
  margin-bottom: 9px;
}

.feature-card p { color: var(--text-muted); font-size: 0.89rem; }

/* ── BONUS STEPS ── */
.bonus-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.bonus-step { padding: 28px 22px; text-align: center; }

.bonus-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(212,168,60,0.13);
  border: 1px solid rgba(212,168,60,0.33);
  border-radius: 50px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bonus-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(212,168,60,0.42);
  margin-bottom: 4px;
}

.bonus-step h4 {
  font-size: 0.97rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.bonus-step p { color: var(--text-muted); font-size: 0.87rem; }

/* ── SLOT ITEMS ── */
.slots-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.slot-item {
  padding: 20px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.slot-icon {
  font-size: 1.9rem;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
  padding-top: 2px;
}

.slot-item h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 5px;
}

.slot-item p { color: var(--text-muted); font-size: 0.88rem; }

/* ── PROVIDERS ── */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.provider-item { padding: 18px 20px; text-align: center; }

.provider-item h4 {
  color: var(--gold-bright);
  font-size: 0.97rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.provider-item p { color: var(--text-muted); font-size: 0.83rem; }

/* ── CONTACT CARDS ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.contact-card { padding: 30px 28px; }

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

.contact-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; }
.contact-card p:last-child { margin-bottom: 0; }

/* ── OVER ONS ── */
.mission-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission-item {
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mission-dot {
  width: 10px;
  height: 10px;
  background: var(--gold-bright);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 8px rgba(212,168,60,0.55);
}

.mission-item p { color: var(--text-muted); font-size: 0.93rem; }

.mission-item strong { color: #fff; }

/* ── FOOTER ── */
footer {
  background: rgba(1,5,3,0.97);
  border-top: 1px solid rgba(212,168,60,0.11);
  padding: 52px 24px 32px;
  margin-top: 20px;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
  margin-bottom: 38px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-top: 14px;
  max-width: 290px;
  line-height: 1.65;
}

.footer-nav h4 {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.22s;
}

.footer-nav ul li a:hover { color: var(--gold-bright); }

.footer-bottom {
  border-top: 1px solid rgba(212,168,60,0.09);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.footer-bottom p { color: rgba(240,237,229,0.38); font-size: 0.8rem; }

.resp-gaming {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240,237,229,0.42);
  font-size: 0.78rem;
}

.resp-gaming-badge {
  padding: 3px 10px;
  border: 1px solid rgba(240,237,229,0.22);
  border-radius: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  flex-shrink: 0;
}

.footer-legal {
  color: rgba(240,237,229,0.32);
  font-size: 0.77rem;
  line-height: 1.65;
  max-width: var(--max-w);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 55px 16px; }
  .hero { padding: 62px 16px 54px; }
  .page-hero { padding: 54px 16px 42px; }
  .cta-banner { padding: 44px 22px; }
  .footer-top { flex-direction: column; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.88rem; }
  .header-cta .btn-secondary { display: none; }
  .bonus-steps, .steps-grid { grid-template-columns: 1fr; }
}
