/* =====================================================
   BANGLASLOT — Static Design System
   Gold · Royal Blue · Gaming Red
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --bg: hsl(222, 47%, 8%);
  --bg-card: hsl(222, 47%, 12%);
  --bg-secondary: hsl(222, 47%, 18%);
  --bg-royal: hsl(222, 47%, 15%);
  --bg-royal-dark: hsl(222, 47%, 8%);

  --fg: hsl(45, 100%, 96%);
  --fg-muted: hsl(220, 15%, 65%);

  --gold: hsl(45, 100%, 50%);
  --gold-light: hsl(45, 100%, 65%);
  --gold-dark: hsl(45, 100%, 35%);
  --gaming-red: hsl(0, 85%, 55%);
  --gaming-green: hsl(142, 70%, 45%);
  --gaming-purple: hsl(270, 60%, 50%);

  --border: hsl(222, 30%, 25%);
  --radius: 0.75rem;

  --gradient-gold: linear-gradient(135deg, hsl(45,100%,45%), hsl(45,100%,60%), hsl(45,100%,45%));
  --gradient-hero: linear-gradient(180deg, hsl(222,47%,12%) 0%, hsl(222,47%,6%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(222,47%,15%), hsl(222,47%,10%));
  --gradient-button: linear-gradient(135deg, hsl(45,100%,50%), hsl(35,100%,45%));
  --gradient-button-hover: linear-gradient(135deg, hsl(45,100%,55%), hsl(35,100%,50%));

  --shadow-gold: 0 0 30px hsl(45 100% 50% / 0.3);
  --shadow-card: 0 10px 40px hsl(222 47% 5% / 0.5);
  --shadow-button: 0 4px 20px hsl(45 100% 50% / 0.4);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid var(--border); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: hsl(45 100% 50% / 0.5); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: hsl(45 100% 50% / 0.7); }

/* ── Container ── */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ── Text Utilities ── */
.text-gradient-gold {
  background: linear-gradient(135deg, hsl(45,100%,50%), hsl(45,100%,70%), hsl(45,100%,50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold { color: var(--gold); }
.text-fg { color: var(--fg); }
.text-muted { color: var(--fg-muted); }
.text-fg-60 { color: hsl(45 100% 96% / 0.6); }
.text-fg-70 { color: hsl(45 100% 96% / 0.7); }
.text-fg-80 { color: hsl(45 100% 96% / 0.8); }
.text-fg-50 { color: hsl(45 100% 96% / 0.5); }
.text-fg-40 { color: hsl(45 100% 96% / 0.4); }
.text-white { color: #fff; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-9xl { font-size: 8rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.2em; }
.leading-relaxed { line-height: 1.625; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-4 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Spacing ── */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pb-16 { padding-bottom: 4rem; }

/* ── Layout ── */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.max-w-sm { max-width: 24rem; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-none { max-width: none; }
.mx-auto { margin-left: auto; margin-right: auto; }
.min-h-screen { min-height: 100vh; }
.h-20 { height: 5rem; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* ── Grid Templates ── */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:block { display: block; }
  .hidden-mobile { display: block; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
}
.sm\:flex-row { flex-direction: row; }
@media (min-width: 640px) { .sm\:flex-row { flex-direction: row; } .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }

/* ── Shorthand Grid Classes (static HTML pages) ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ── Background Utilities ── */
.bg-background { background: var(--bg); }
.bg-royal-dark { background: var(--bg-royal-dark); }
.bg-gradient-hero { background: var(--gradient-hero); }
.bg-gradient-card { background: var(--gradient-card); }
.bg-secondary { background: var(--bg-secondary); }
.bg-secondary-30 { background: hsl(222 47% 18% / 0.3); }
.bg-secondary-40 { background: hsl(222 47% 18% / 0.4); }
.bg-secondary-50 { background: hsl(222 47% 18% / 0.5); }
.bg-secondary-60 { background: hsl(222 47% 18% / 0.6); }
.bg-gold { background: var(--gold); }
.bg-gold-10 { background: hsl(45 100% 50% / 0.1); }
.bg-gold-20 { background: hsl(45 100% 50% / 0.2); }
.bg-gaming-red { background: var(--gaming-red); }
.bg-gaming-green { background: var(--gaming-green); }
.bg-transparent { background: transparent; }

/* ── Border ── */
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.border-border { border-color: var(--border); }
.border-gold { border-color: var(--gold); }
.border-gold-30 { border-color: hsl(45 100% 50% / 0.3); }
.border-gold-40 { border-color: hsl(45 100% 50% / 0.4); }
.border-gold-50 { border-color: hsl(45 100% 50% / 0.5); }
.border-transparent { border-color: transparent; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 0.25rem); }
.rounded-2xl { border-radius: calc(var(--radius) + 0.5rem); }
.rounded-3xl { border-radius: 1.5rem; }

/* ── Shadows ── */
.shadow-gold { box-shadow: var(--shadow-gold); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); }
.drop-shadow-xl { filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08)); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15)); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gradient-button);
  color: var(--bg);
  box-shadow: var(--shadow-button);
}
.btn-gold:hover {
  background: var(--gradient-button-hover);
  transform: translateY(-1px);
}
.btn-hero {
  background: var(--gradient-button);
  color: var(--bg);
  box-shadow: var(--shadow-button);
  font-size: 1rem;
  padding: 0.875rem 2rem;
  font-weight: 700;
}
.btn-hero:hover { background: var(--gradient-button-hover); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-icon { padding: 0.625rem; }
.btn-full { width: 100%; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}
.header.scrolled {
  background: hsl(222 47% 8% / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px hsl(0 0% 0% / 0.3);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.nav-link {
  color: hsl(45 100% 96% / 0.8);
  font-weight: 500;
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsl(222 47% 8% / 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1rem;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 1rem; }
.hamburger { display: block; background: none; color: var(--fg); padding: 0.5rem; }
.main-nav { display: none; align-items: center; gap: 2rem; }
.header-actions { display: none; align-items: center; gap: 1rem; }
.desktop-nav { display: none; align-items: center; gap: 2rem; }
.desktop-cta { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) {
  .hamburger { display: none; }
  .main-nav { display: flex !important; }
  .header-actions { display: flex !important; }
  .desktop-nav { display: flex !important; }
  .desktop-cta { display: flex !important; }
}

/* ── Sections ── */
.section-label { color: var(--gold); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Cards ── */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 0.5rem);
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.card:hover { border-color: hsl(45 100% 50% / 0.3); }
.card-featured { border-color: hsl(45 100% 50% / 0.5); box-shadow: var(--shadow-gold); }
.game-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 0.5rem);
  overflow: hidden;
  transition: all 0.3s ease;
}
.game-card:hover { border-color: hsl(45 100% 50% / 0.5); box-shadow: var(--shadow-gold); }
.game-card .game-overlay {
  position: absolute;
  inset: 0;
  background: hsl(222 47% 8% / 0.9);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: opacity 0.3s ease;
}
.game-card:hover .game-overlay { opacity: 1; }
.game-thumb {
  aspect-ratio: 1 / 1;
  background: hsl(222 47% 18% / 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-thumb span { font-size: 2.5rem; font-weight: 700; color: hsl(45 100% 50% / 0.3); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  position: absolute;
  z-index: 10;
}
.badge-hot { background: var(--gaming-red); color: #fff; top: 0.75rem; left: 0.75rem; }
.badge-new { background: var(--gaming-green); color: #fff; top: 0.75rem; left: 0.75rem; }
.badge-rtp { background: hsl(222 47% 18% / 0.9); color: var(--gold); top: 0.75rem; right: 0.75rem; }
.badge-live { background: hsl(0 85% 55% / 0.9); color: #fff; top: 0.75rem; right: 0.75rem; }

/* ── Feature Icon Box ── */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background: hsl(45 100% 50% / 0.1);
  margin-bottom: 1rem;
}
.icon-box svg { width: 1.75rem; height: 1.75rem; color: var(--gold); }
.icon-box-sm { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; }
.icon-box-sm svg { width: 1.25rem; height: 1.25rem; }

/* ── Accordion (FAQ) ── */
.accordion-item {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: border-color 0.3s;
}
.accordion-item.open { border-color: hsl(45 100% 50% / 0.5); box-shadow: var(--shadow-gold); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  color: var(--fg);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.accordion-trigger:hover { color: var(--gold); }
.accordion-trigger .chevron {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--fg-muted);
}
.accordion-item.open .accordion-trigger .chevron { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-item.open .accordion-content { max-height: 500px; padding: 0 1.5rem 1.25rem; }
.accordion-body { color: hsl(45 100% 96% / 0.7); line-height: 1.7; }

/* ── Testimonial Slider ── */
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: hsl(45 100% 96% / 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active { background: var(--gold); width: 2rem; }

/* ── Marquee ── */
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  flex-shrink: 0;
  background: hsl(222 47% 18% / 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}
.marquee-item:hover { border-color: hsl(45 100% 50% / 0.4); }

/* ── Payment Pill ── */
.payment-pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: hsl(222 47% 18% / 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  transition: border-color 0.3s;
}
.payment-pill:hover { border-color: hsl(45 100% 50% / 0.4); }
.payment-dot { width: 0.75rem; height: 0.75rem; border-radius: 9999px; flex-shrink: 0; }

/* ── Forms ── */
.input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.input::placeholder { color: hsl(45 100% 96% / 0.4); }
.input:focus { border-color: var(--gold); }
textarea.input { resize: none; }
select.input { appearance: none; cursor: pointer; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(45 100% 96% / 0.5);
  padding: 1rem 0;
}
.breadcrumb a { color: var(--gold); transition: opacity 0.3s; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb .sep { color: hsl(45 100% 96% / 0.3); }

/* ── Footer ── */
.footer { background: var(--bg-royal-dark); border-top: 1px solid var(--border); }
.footer a { transition: color 0.3s; }
.footer a:hover { color: var(--gold); }
.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(45 100% 96% / 0.6);
  transition: all 0.3s;
}
.social-icon:hover { background: var(--gold); color: var(--bg); }

/* ── Prose ── */
.prose h2 { font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-top: 2rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.25rem; font-weight: 700; color: hsl(45 100% 50% / 0.9); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.prose p { color: hsl(45 100% 96% / 0.8); line-height: 1.7; margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { color: hsl(45 100% 96% / 0.8); margin-bottom: 0.5rem; }
.prose strong { color: var(--gold); }
.prose a { color: var(--gold); text-decoration: underline; }
.prose a:hover { color: var(--gold-light); }

/* ── Animations ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 20px hsl(45 100% 50% / 0.4); }
  50% { box-shadow: 0 0 40px hsl(45 100% 50% / 0.7); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes shimmer {
  from { background-position: -200% 0; }
  to { background-position: 200% 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; opacity: 0; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse-gold { animation: pulseGold 2s ease-in-out infinite; }
.animate-bounce { animation: bounce 1s infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }
.delay-800 { animation-delay: 0.8s; }
.delay-1000 { animation-delay: 1s; }

/* ── Transitions ── */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:border-gold:hover { border-color: hsl(45 100% 50% / 0.5); }
.hover\:text-gold:hover { color: var(--gold); }

/* ── Backdrop ── */
.backdrop-blur { backdrop-filter: blur(12px); }

/* ── SVG Icons (inline) ── */
.icon { display: inline-block; width: 1.25rem; height: 1.25rem; vertical-align: middle; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }

/* ── Blog Article Image ── */
.article-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), hsl(222 47% 8% / 0.8), transparent);
}

/* ── Responsive hide ── */
.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: block; } .hidden-desktop { display: none; } }
@media (min-width: 1024px) { .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }

/* ── Misc ── */
.aspect-square { aspect-ratio: 1 / 1; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }
.opacity-50 { opacity: 0.5; }

/* ── VIP level gradient helpers ── */
.vip-bronze { background: linear-gradient(135deg, #92400e, #d97706); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.vip-silver { background: linear-gradient(135deg, #9ca3af, #d1d5db); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.vip-gold { background: linear-gradient(135deg, #eab308, #fde047); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.vip-platinum { background: linear-gradient(135deg, #a855f7, #d8b4fe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.vip-diamond { background: linear-gradient(135deg, #22d3ee, #a5f3fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ── Stat counter ── */
.stat-value { font-weight: 900; }
.stat-card { padding: 1.5rem; background: var(--gradient-card); border: 1px solid var(--border); border-radius: var(--radius); }
.stat-label { color: var(--fg-muted); font-size: 0.875rem; margin-top: 0.5rem; }

/* ── Section Titles ── */
.section-title { font-size: 2rem; font-weight: 900; margin-bottom: 1rem; }
@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }
.section-desc { color: var(--fg-muted); font-size: 1rem; line-height: 1.7; max-width: 700px; margin: 0 auto; }
.section { padding: 4rem 0; }

/* ── Tags ── */
.tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: hsl(222 47% 18%); border: 1px solid var(--border);
  font-size: 0.875rem; color: var(--fg-muted);
}

/* ── Badge Gold ── */
.badge-gold { background: hsl(45 100% 50% / 0.15); color: var(--gold); border: 1px solid hsl(45 100% 50% / 0.3); }

/* ── Flex Wrap Center ── */
.flex-wrap-center { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }
.gap-2 { gap: 0.75rem; }

/* ── Form Inputs ── */
.form-input {
  width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius);
  background: hsl(222 47% 12%); border: 1px solid var(--border);
  color: var(--fg); font-family: inherit; font-size: 0.875rem;
  transition: border-color 0.3s;
}
.form-input:focus { outline: none; border-color: var(--gold); }
.form-input::placeholder { color: var(--fg-muted); }
select.form-input { appearance: none; cursor: pointer; }

/* ── Footer Layout ── */
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { color: var(--fg-muted); font-size: 0.875rem; margin-top: 0.75rem; }
.footer-grid h4 { font-weight: 700; margin-bottom: 1rem; }
.footer-grid ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-grid ul a { color: var(--fg-muted); font-size: 0.875rem; }
.footer-grid ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 1.5rem 0;
  text-align: center; color: var(--fg-muted); font-size: 0.875rem;
}

/* ── CSS variables used inline ── */
.text-dim { color: hsl(45 100% 96% / 0.5); }
.secondary-30 { background: hsl(222 47% 18% / 0.3); }
.secondary-50 { background: hsl(222 47% 18% / 0.5); }
.secondary-90 { background: hsl(222 47% 18% / 0.9); }
:root {
  --text-muted: hsl(220, 15%, 65%);
  --text-dim: hsl(45 100% 96% / 0.5);
  --card-bg: hsl(222 47% 12%);
  --gold-30: hsl(45 100% 50% / 0.3);
  --secondary-30: hsl(222 47% 18% / 0.3);
  --secondary-50: hsl(222 47% 18% / 0.5);
  --secondary-90: hsl(222 47% 18% / 0.9);
  --royal-dark: hsl(222 47% 8%);
}
