/* Amunbet Premium Glow — Style 3 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #000000;
  --bg-mid: #0c0906;
  --bronze: #1a1208;
  --gold-light: #f0d48a;
  --gold: #d4a84b;
  --gold-mid: #c4923a;
  --gold-dark: #8b6914;
  --gold-deep: #6b4f0e;
  --white: #ffffff;
  --text: #e6e0d4;
  --text-muted: #a89f8f;
  --glass: rgba(18, 14, 8, 0.72);
  --glass-strong: rgba(10, 8, 5, 0.85);
  --glass-border: rgba(212, 168, 75, 0.28);
  --glass-border-strong: rgba(240, 212, 138, 0.45);
  --glow: rgba(212, 168, 75, 0.35);
  --glow-soft: rgba(212, 168, 75, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(90, 60, 20, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(70, 45, 15, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 80%, rgba(55, 35, 10, 0.25) 0%, transparent 45%),
    radial-gradient(ellipse 100% 100% at 50% 50%, var(--bg-mid) 0%, var(--bg) 70%);
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(rgba(212, 168, 75, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

a:hover {
  color: var(--white);
  text-shadow: 0 0 12px var(--glow);
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(0, 0, 0, 0.78);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 var(--glow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--glow));
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.45rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.3s ease, filter 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  color: #1a1205;
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  box-shadow:
    0 0 20px var(--glow),
    0 4px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  color: #1a1205;
  transform: translateY(-2px);
  box-shadow:
    0 0 32px rgba(240, 212, 138, 0.55),
    0 6px 20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-shadow: none;
  filter: brightness(1.08);
}

.btn-secondary {
  color: var(--gold-light);
  background: transparent;
  border: 1px solid var(--glass-border-strong);
  box-shadow: 0 0 12px var(--glow-soft), inset 0 0 20px rgba(212, 168, 75, 0.05);
}

.btn-secondary:hover {
  color: var(--white);
  border-color: var(--gold-light);
  box-shadow: 0 0 22px var(--glow);
  text-shadow: 0 0 8px var(--glow);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(212, 168, 75, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 16px var(--glow-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 0 40px rgba(212, 168, 75, 0.35), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 18px var(--glow));
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 34em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.2) 0%, transparent 65%);
  z-index: 0;
  animation: pulse-glow 5s ease-in-out infinite reverse;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 0 40px rgba(212, 168, 75, 0.2),
    0 20px 50px rgba(0, 0, 0, 0.6);
}

/* ——— Glass cards ——— */
.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(240, 212, 138, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.2);
}

.glass:hover {
  border-color: var(--glass-border-strong);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 0 28px var(--glow-soft),
    inset 0 1px 0 rgba(240, 212, 138, 0.12);
}

/* ——— Sections ——— */
.section {
  padding: 3.75rem 0;
  position: relative;
}

.section + .section {
  border-top: 1px solid transparent;
  background-image: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top center;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 12px var(--glow);
}

.section h2,
.content-page h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 28px rgba(212, 168, 75, 0.3);
}

.section h3,
.content-page h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 2rem 0 0.85rem;
  text-shadow: 0 0 16px var(--glow-soft);
}

.section h4,
.content-page h4 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin: 1.5rem 0 0.6rem;
}

.section p,
.content-page p {
  margin-bottom: 1.1rem;
}

.section p:last-child,
.content-page p:last-child {
  margin-bottom: 0;
}

.lead-text {
  color: var(--text-muted);
}

.text-gold {
  color: var(--gold-light);
  text-shadow: 0 0 10px var(--glow-soft);
}

/* ——— Intro block ——— */
.intro-block {
  padding: 2rem 2.25rem;
  margin-bottom: 2rem;
}

.intro-block p:first-of-type {
  font-size: 1.12rem;
}

/* ——— Media split ——— */
.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.media-split.reverse {
  direction: rtl;
}

.media-split.reverse > * {
  direction: ltr;
}

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 30px var(--glow-soft), 0 16px 40px rgba(0, 0, 0, 0.5);
}

.media-frame img {
  width: 100%;
}

.media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(212, 168, 75, 0.08);
  pointer-events: none;
}

/* ——— Tables ——— */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 24px var(--glow-soft), 0 8px 28px rgba(0, 0, 0, 0.4);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 560px;
}

thead th {
  background: linear-gradient(180deg, rgba(212, 168, 75, 0.18) 0%, rgba(139, 105, 20, 0.12) 100%);
  color: var(--white);
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.15rem;
  border-bottom: 2px solid var(--gold);
  letter-spacing: 0.02em;
  text-shadow: 0 0 10px var(--glow-soft);
}

tbody td {
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid rgba(212, 168, 75, 0.12);
  color: var(--text);
  background: transparent;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover td {
  background: rgba(212, 168, 75, 0.06);
}

tbody td:first-child {
  color: var(--gold-light);
  font-weight: 500;
}

/* ——— Feature grid ——— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-card {
  padding: 1.6rem 1.4rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card h3,
.feature-card h4 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(145deg, rgba(240, 212, 138, 0.2), rgba(139, 105, 20, 0.15));
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 16px var(--glow-soft);
}

/* ——— VIP cards ——— */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.75rem 0;
}

.vip-card {
  padding: 1.4rem 1.2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 32px var(--glow), 0 12px 30px rgba(0, 0, 0, 0.5);
}

.vip-card .vip-emoji {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 8px var(--glow));
}

.vip-card h4 {
  margin: 0 0 0.5rem;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.vip-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ——— Steps ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.75rem 0 2rem;
  counter-reset: step;
}

.step {
  padding: 1.4rem 1.15rem;
  position: relative;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1205;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 0 16px var(--glow);
}

.step h4 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ——— Providers ——— */
.provider-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.provider-item {
  padding: 1.25rem 1.35rem;
}

.provider-item strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  text-shadow: 0 0 10px var(--glow-soft);
}

.provider-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

/* ——— FAQ ——— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.faq-item {
  padding: 1.35rem 1.5rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item h4 {
  margin: 0 0 0.65rem;
  color: var(--gold-light);
  font-size: 1.05rem;
  text-shadow: 0 0 10px var(--glow-soft);
}

.faq-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ——— CTA banner ——— */
.cta-banner {
  text-align: center;
  padding: 3rem 2rem;
  margin: 1rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 168, 75, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 7s ease-in-out infinite;
}

.cta-banner h2 {
  position: relative;
  margin-bottom: 1rem;
}

.cta-banner p {
  position: relative;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
}

.cta-banner .hero-actions {
  position: relative;
  justify-content: center;
  margin-bottom: 0;
}

/* ——— Lists ——— */
.styled-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.styled-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  color: var(--text);
  border-bottom: 1px solid rgba(212, 168, 75, 0.08);
}

.styled-list li:last-child {
  border-bottom: none;
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 0 8px var(--glow);
}

/* ——— Flow diagram ——— */
.flow-diagram {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.75rem 0;
  padding: 1.5rem;
  font-size: 0.95rem;
  text-align: center;
}

.flow-diagram .flow-node {
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(212, 168, 75, 0.1);
  border: 1px solid var(--glass-border);
  color: var(--gold-light);
  font-weight: 500;
  box-shadow: 0 0 14px var(--glow-soft);
}

.flow-diagram .flow-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  text-shadow: 0 0 8px var(--glow);
}

/* ——— Content pages ——— */
.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  text-shadow: 0 0 32px rgba(212, 168, 75, 0.35);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
}

.content-page {
  padding-bottom: 4rem;
}

.content-body {
  padding: 2rem 2.25rem;
}

/* ——— Footer ——— */
.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.age-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass);
}

/* ——— Animations ——— */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fade-up 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.35s; opacity: 0; }

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .hero-grid,
  .media-split,
  .media-split.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .provider-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .logo img {
    height: 40px;
  }

  .header-cta .btn-secondary {
    display: none;
  }

  .btn {
    padding: 0.65rem 1.15rem;
    font-size: 0.85rem;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .intro-block,
  .content-body,
  .cta-banner {
    padding: 1.4rem 1.2rem;
  }

  .section {
    padding: 2.75rem 0;
  }
}
