@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Poppins:wght@400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #e8b830;
  --gold-bright: #ffd54a;
  --gold-warm: #e07820;
  --glow: 0 0 22px rgba(232,184,48,0.55), 0 0 48px rgba(232,184,48,0.2);
  --glow-strong: 0 0 36px rgba(255,213,74,0.8), 0 0 72px rgba(232,184,48,0.32);
  --card-bg: rgba(8,38,22,0.58);
  --card-border: rgba(232,184,48,0.26);
  --card-border-hover: rgba(255,213,74,0.55);
  --text: #f4f1ea;
  --text-muted: rgba(244,241,234,0.62);
  --max-w: 1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: radial-gradient(ellipse at 50% 0%, #1a7048 0%, #0a2818 38%, #041408 72%, #020a05 100%) fixed;
  min-height: 100vh;
  line-height: 1.75;
  font-size: 16px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(2,12,6,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,184,48,0.16);
  padding: 14px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-block;
  padding: 13px 30px;
  background: linear-gradient(135deg, #ffd54a 0%, #e07820 100%);
  color: #1a1200;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: var(--glow), 0 4px 16px rgba(0,0,0,0.45);
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: var(--glow-strong), 0 6px 22px rgba(0,0,0,0.5);
  transform: translateY(-2px);
  color: #1a1200;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 26px;
  background: rgba(8,38,22,0.5);
  color: var(--gold-bright);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 50px;
  border: 1.5px solid rgba(232,184,48,0.42);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--gold-bright);
  background: rgba(232,184,48,0.1);
  box-shadow: 0 0 20px rgba(232,184,48,0.25);
}

.btn-large { padding: 17px 46px; font-size: 1.05rem; }

.hero {
  padding: 90px 24px 78px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  height: 780px;
  background: radial-gradient(circle, rgba(26,112,72,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero > .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  padding: 7px 22px;
  background: rgba(232,184,48,0.1);
  border: 1px solid rgba(232,184,48,0.42);
  color: var(--gold-bright);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .gold-line {
  color: var(--gold-bright);
  text-shadow: 0 0 32px rgba(255,213,74,0.5);
}

.hero-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.hero-img {
  max-width: 880px;
  width: 100%;
  border-radius: 20px;
  margin: 0 auto;
  display: block;
  border: 1px solid rgba(232,184,48,0.24);
  box-shadow: 0 0 60px rgba(0,0,0,0.55), 0 0 36px rgba(232,184,48,0.12);
}

.banner-section {
  padding: 0 24px 20px;
}

.content-banner {
  max-width: 880px;
  width: 100%;
  border-radius: 20px;
  margin: 0 auto;
  display: block;
  border: 1px solid rgba(232,184,48,0.24);
  box-shadow: 0 0 60px rgba(0,0,0,0.55), 0 0 36px rgba(232,184,48,0.12);
}

section { padding: 78px 24px; }

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(232,184,48,0.09);
  border: 1px solid rgba(232,184,48,0.35);
  color: var(--gold);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 3.6vw, 2.45rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255,213,74,0.45);
}

.section-header { margin-bottom: 44px; }
.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: 1.02rem;
  margin-top: 20px;
  max-width: 700px;
}

.section-header.centered .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 30px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 0 32px rgba(232,184,48,0.12);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.styled-table th {
  background: rgba(232,184,48,0.12);
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 15px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(232,184,48,0.24);
}

.styled-table td {
  padding: 15px 22px;
  border-bottom: 1px solid rgba(232,184,48,0.1);
  color: var(--text);
  font-size: 0.94rem;
}

.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: rgba(232,184,48,0.05); }

.td-highlight {
  color: var(--gold-bright);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255,213,74,0.32);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.step-card { padding: 32px 28px; }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: rgba(232,184,48,0.2);
  line-height: 1;
  margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(232,184,48,0.15);
}

.step-card h3 {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 10px;
}

.step-card p { color: var(--text-muted); font-size: 0.91rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card { padding: 30px; }

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

.cta-banner {
  background: linear-gradient(135deg, rgba(22,90,55,0.42) 0%, rgba(120,72,8,0.2) 100%);
  border: 1px solid rgba(232,184,48,0.3);
  border-radius: 22px;
  padding: 64px 42px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -65%;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(255,213,74,0.07) 0%, transparent 68%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto 34px;
}

.page-hero {
  padding: 74px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 520px;
  background: radial-gradient(circle, rgba(26,112,72,0.3) 0%, transparent 68%);
  pointer-events: none;
}

.page-hero > .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 4.2vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.page-hero h1 .gold {
  color: var(--gold-bright);
  text-shadow: 0 0 26px rgba(255,213,74,0.48);
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 660px;
  margin: 0 auto 32px;
}

.text-content p {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 16px;
}

.text-content p:last-child { margin-bottom: 0; }

.text-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin: 36px 0 16px;
  position: relative;
  display: inline-block;
}

.text-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  box-shadow: 0 0 10px rgba(255,213,74,0.4);
}

.text-content h2:first-child { margin-top: 0; }

.text-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.38rem;
  color: #fff;
  margin: 28px 0 14px;
}

.styled-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 16px;
}

.styled-list li {
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.styled-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.45em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.contact-card { padding: 32px 30px; }

.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.contact-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 10px; }
.contact-card p:last-child { margin-bottom: 0; }

.section-cta { text-align: center; margin-top: 36px; }

footer {
  background: rgba(2,8,4,0.98);
  border-top: 1px solid rgba(232,184,48,0.12);
  padding: 54px 24px 34px;
  margin-top: 24px;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.87rem;
  margin-top: 14px;
  max-width: 300px;
  line-height: 1.68;
}

.footer-nav h4 {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.89rem;
  transition: color 0.22s;
}

.footer-nav ul li a:hover { color: var(--gold-bright); }

.footer-bottom {
  border-top: 1px solid rgba(232,184,48,0.1);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-bottom p { color: rgba(244,241,234,0.38); font-size: 0.81rem; }

.resp-gaming {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(244,241,234,0.42);
  font-size: 0.79rem;
}

.resp-gaming-badge {
  padding: 3px 10px;
  border: 1px solid rgba(244,241,234,0.24);
  border-radius: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  flex-shrink: 0;
}

.footer-legal {
  color: rgba(244,241,234,0.32);
  font-size: 0.78rem;
  line-height: 1.68;
  max-width: var(--max-w);
}

@media (max-width: 768px) {
  section { padding: 56px 16px; }
  .hero { padding: 64px 16px 56px; }
  .page-hero { padding: 56px 16px 44px; }
  .cta-banner { padding: 46px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .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; }
  .steps-grid { grid-template-columns: 1fr; }
}
