/* ============================================
   MOOZI LANDING PAGE - COMPONENT STYLES
   All shared UI components
   ============================================ */

/* ===========================================
   BUTTONS
   =========================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  padding: 0.875rem 2.5rem;
  background-color: var(--color-gold);
  color: var(--color-text-on-gold);
  font-size: 0.9375rem;
  font-family: "Roboto", Arial, sans-serif;
  text-decoration: none;
  border: 2px solid var(--color-gold);
  transition: all var(--transition-smooth);
  min-height: 44px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgb(255 255 255 / 20%) 0%, transparent 50%);
  pointer-events: none;
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgb(252 207 61 / 30%), 0 8px 32px rgb(252 207 61 / 15%);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgb(0 0 0 / 15%);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgb(252 207 61 / 40%), 0 0 0 4px rgb(252 207 61 / 10%);
}

@media (min-width: 640px) {
  .btn-primary { font-size: 1rem; padding: 1rem 3rem; }
}

@media (min-width: 1024px) {
  .btn-primary { font-size: 1.0625rem; }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  background: transparent;
  color: var(--color-gold);
  font-size: 0.875rem;
  font-family: "Roboto", Arial, sans-serif;
  text-decoration: none;
  border: 2px solid var(--color-gold);
  transition: all var(--transition-smooth);
  min-height: 44px;
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-text-on-gold);
}

.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgb(252 207 61 / 40%), 0 0 0 4px rgb(252 207 61 / 10%);
}

@media (min-width: 640px) {
  .btn-secondary { font-size: 1rem; }
}

/* ===========================================
   NAVIGATION
   =========================================== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--color-bg-darkest);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(252 207 61 / 15%), rgb(255 179 38 / 10%), transparent);
  pointer-events: none;
}

nav.nav--scrolled {
  background: rgb(25 6 7 / 95%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgb(0 0 0 / 40%);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  width: 3rem;
  height: auto;
}

@media (min-width: 480px) { .logo-img { width: 3.5rem; } }
@media (min-width: 640px) { .logo-img { width: 4rem; } }
@media (min-width: 1024px) { .logo-img { width: 5rem; } }

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.register-btn {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 600;
  color: var(--color-text-on-gold);
  background-color: var(--color-gold);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  border: 1.5px solid var(--color-gold);
  white-space: nowrap;
  min-height: 36px;
  transition: all var(--transition-smooth);
  position: relative;
  letter-spacing: 0.02em;
}

.register-btn:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  box-shadow: 0 2px 8px rgb(252 207 61 / 25%);
}

.register-btn:focus-visible,
.login-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgb(252 207 61 / 40%), 0 0 0 4px rgb(252 207 61 / 10%);
}

.bonus-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4444;
  color: white;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.5rem;
  padding: 2px 5px;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.login-btn {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 600;
  color: var(--color-text-primary);
  background: transparent;
  border: 1.5px solid rgb(255 255 255 / 30%);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  white-space: nowrap;
  min-height: 36px;
  transition: all var(--transition-smooth);
  letter-spacing: 0.02em;
}

.login-btn:hover {
  background: rgb(255 255 255 / 10%);
  border-color: rgb(255 255 255 / 50%);
}

@media (min-width: 640px) {
  .register-btn, .login-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    min-height: 40px;
  }
}

@media (min-width: 768px) {
  .register-btn, .login-btn {
    min-height: 44px;
  }
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero-section {
  padding: clamp(2rem, 4vw, 5rem) 0;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    gap: 3rem;
    padding: 0 2rem;
  }
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .hero-text {
    align-items: flex-start;
    text-align: left;
  }
}

.hero-eyebrow {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: "Roboto", Arial, sans-serif;
}

@media (min-width: 640px) {
  .hero-eyebrow { font-size: 0.9375rem; }
}

.hero-heading {
  color: var(--color-text-primary);
  font-family: "Pattaya", "helvetica", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.025em;
  font-size: clamp(1.875rem, 1rem + 5vw, 4.5rem);
  line-height: 0.95;
}

/* Full-width CTA on mobile */
@media (max-width: 639px) {
  .hero-cta-group { width: 100%; }
  .hero-cta-group .btn-primary { width: 100%; max-width: 320px; }
}

.hero-heading .highlight {
  color: var(--color-gold);
  background: linear-gradient(135deg, #FCCF3D, #FFB326);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 0.5rem + 1.5vw, 1.25rem);
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  max-width: 500px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .hero-cta-group { align-items: flex-start; }
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-family: "Roboto", Arial, sans-serif;
}

.hero-social-proof .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-image-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 75vw;
  position: relative;
}

@media (min-width: 480px) { .hero-image-wrap { max-width: 65vw; } }
@media (min-width: 640px) { .hero-image-wrap { max-width: 55vw; } }
@media (min-width: 768px) { .hero-image-wrap { max-width: 500px; } }
@media (min-width: 1024px) { .hero-image-wrap { max-width: 550px; } }

.hero-image {
  width: 100%;
  height: auto;
}

/* Floating sparkle animations */
.hero-image-wrap::before,
.hero-image-wrap::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: float-sparkle 3s ease-in-out infinite;
}

.hero-image-wrap::before {
  top: 15%;
  right: 5%;
  animation-delay: 0s;
}

.hero-image-wrap::after {
  bottom: 25%;
  left: 10%;
  animation-delay: 1.5s;
}

@keyframes float-sparkle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-12px) scale(1.3); opacity: 1; }
}

/* ===========================================
   FEATURE CARDS
   =========================================== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) 1rem 0;
  border-top: 1px solid rgb(255 255 255 / 8%);
}

@media (min-width: 640px) {
  .cards-grid { padding: clamp(1.5rem, 3vw, 2.5rem) 1.5rem 0; }
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: clamp(1.5rem, 3vw, 2.5rem) 2rem 0;
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.feature-card {
  background: rgb(40 12 13 / 65%);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 8%);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 1rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 20%), inset 0 1px 0 rgb(255 255 255 / 5%);
}

.feature-card:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow:
    0 8px 24px rgb(0 0 0 / 30%),
    0 4px 12px rgb(0 0 0 / 20%),
    inset 0 1px 0 rgb(255 255 255 / 8%);
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .feature-card { padding: 1.25rem; }
  .feature-card-icon { width: 64px; height: 64px; }
}

.feature-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-card-title {
  color: var(--color-gold);
  font-family: "helvetica", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .feature-card-title { font-size: 1.125rem; }
}

.feature-card-desc {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.4;
}

/* ===========================================
   GAMES SECTION
   =========================================== */
.games-section {
  padding: var(--space-section) 0;
}

.games-header {
  text-align: center;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.games-heading {
  color: var(--color-text-primary);
  font-family: "helvetica", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  font-size: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.games-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 0.75rem + 0.5vw, 1.125rem);
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  margin-top: 1rem;
}

.games-categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.category-tag {
  padding: 0.5rem 1.25rem;
  min-height: 40px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-subtle);
  transition: all var(--transition-smooth);
  display: inline-flex;
  align-items: center;
}

.category-tag:hover,
.category-tag.active {
  color: var(--color-text-on-gold);
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 2px 12px rgb(252 207 61 / 30%);
  transform: translateY(-1px);
}

/* Marquee */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
  gap: 12px;
}

@media (min-width: 640px) {
  .marquee-track { animation-duration: 30s; gap: 16px; }
}

.marquee-item {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform var(--transition-fast);
  border: 1px solid rgb(255 255 255 / 8%);
  box-shadow: 0 2px 8px rgb(0 0 0 / 20%);
}

@media (min-width: 480px) { .marquee-item { width: 150px; height: 150px; } }
@media (min-width: 768px) { .marquee-item { width: 200px; height: 200px; border-radius: 12px; } }

.marquee-item:hover {
  transform: scale(1.05);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

/* Providers */
.providers-grid {
  overflow: hidden;
  position: relative;
  padding: 12px 0;
  margin-top: 1rem;
}

.providers-grid-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .providers-grid-track { animation-duration: 30s; }
}

.providers-grid img {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

@media (min-width: 480px) { .providers-grid img { width: 150px; } }
@media (min-width: 768px) { .providers-grid img { width: 200px; } }

.providers-grid:hover .providers-grid-track {
  animation-play-state: paused;
}

/* ===========================================
   HOW IT WORKS
   =========================================== */
.how-it-works {
  padding: var(--space-section) 0;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: rgb(40 12 13 / 65%);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-radius: var(--radius-md);
  border: 1px solid rgb(255 255 255 / 8%);
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
}

.step-title {
  color: var(--color-gold);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.step-desc {
  color: var(--color-text-secondary);
  font-size: 1rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

.step-highlight {
  color: var(--color-gold);
  font-weight: 700;
}

/* Arrow connector between steps (desktop) */
@media (min-width: 768px) {
  .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid var(--color-gold);
    opacity: 0.4;
  }
}

/* ===========================================
   PROMOTIONS SHOWCASE
   =========================================== */
.promos-section {
  padding: var(--space-section) 0;
}

.promos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .promos-grid { grid-template-columns: repeat(2, 1fr); padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .promos-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); padding: 0 2rem; }
}

.promo-card {
  background: rgb(40 12 13 / 65%);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 8%);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgb(0 0 0 / 20%), inset 0 1px 0 rgb(255 255 255 / 5%);
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgb(0 0 0 / 30%),
    0 4px 12px rgb(0 0 0 / 20%),
    inset 0 1px 0 rgb(255 255 255 / 8%);
}

.promo-card-badge {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 var(--radius-sm) 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 0;
}

.promo-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.promo-card-body {
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgb(25 6 7 / 30%));
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.promo-card-title {
  color: var(--color-text-primary);
  font-weight: 700;
  font-size: 1rem;
}

.promo-card-sub {
  color: var(--color-gold);
  font-size: 0.875rem;
  font-weight: 600;
}

.promo-card-desc {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.4;
}

.section-title {
  text-align: center;
  font-family: "helvetica", Arial, Helvetica, sans-serif;
  font-size: clamp(1.75rem, 1rem + 2.5vw, 3rem);
  color: var(--color-gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1;
}

/* ===========================================
   LIVE GAMES SPOTLIGHT (Marquee)
   =========================================== */
.live-games-section {
  padding: var(--space-section) 0;
}

.live-marquee-track {
  animation-duration: 20s;
  gap: 16px;
}

.live-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 8%);
  transition: all var(--transition-smooth);
  display: block;
  flex-shrink: 0;
  width: 260px;
  height: 160px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 20%);
}

@media (min-width: 480px) {
  .live-card { width: 320px; height: 190px; }
}

@media (min-width: 768px) {
  .live-card { width: 380px; height: 220px; }
}

.live-card:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 40%);
  border-color: rgb(252 207 61 / 20%);
}

.live-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #dc2626;
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.live-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.live-card-title {
  color: var(--color-text-primary);
  font-weight: 700;
  font-size: 0.9375rem;
}

.live-card-sub {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-family: "Roboto", Arial, sans-serif;
}

/* ===========================================
   PLATFORM BADGES ROW (under Hot Promotions)
   =========================================== */
.platform-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 1rem 0;
  max-width: var(--max-width-content);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .platform-badges { gap: 2.5rem; }
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
  background: rgb(40 12 13 / 40%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgb(255 255 255 / 5%);
}

.platform-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
}


/* ===========================================
   REVIEWS (Trustpilot Widget)
   =========================================== */
.reviews-section {
  padding: var(--space-section) 0;
}

.trustpilot-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===========================================
   PAYMENT & TRUST
   =========================================== */
.payment-section {
  padding: clamp(2rem, 4vw, 4rem) 0;
  text-align: center;
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.payment-icon {
  width: 40px;
  height: auto;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.payment-icon:hover { opacity: 1; }

.payment-icon svg {
  width: 100%;
  height: auto;
}

@media (min-width: 640px) { .payment-icon { width: 48px; } }
@media (min-width: 768px) { .payment-icon { width: 52px; } }

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-family: "Roboto", Arial, sans-serif;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ===========================================
   FAQ ACCORDION
   =========================================== */
.faq-section {
  padding: var(--space-section) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgb(40 12 13 / 65%);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-radius: var(--radius-sm);
  border: 1px solid rgb(255 255 255 / 8%);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item[open] {
  border-color: rgb(252 207 61 / 20%);
  box-shadow: 0 2px 8px rgb(0 0 0 / 20%);
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  min-height: 48px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--color-gold);
  font-size: 1.25rem;
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

/* ===========================================
   FINAL CTA
   =========================================== */
.final-cta {
  padding: var(--space-section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252, 207, 61, 0.03), transparent, rgba(252, 207, 61, 0.03));
  animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgb(40 12 13 / 50%);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: var(--radius-lg);
}

.final-cta-heading {
  color: var(--color-text-primary);
  font-family: "helvetica", Arial, Helvetica, sans-serif;
  font-size: clamp(1.75rem, 1rem + 3vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
}

.final-cta-sub {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 0.75rem + 0.5vw, 1.125rem);
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ===========================================
   RESPONSIBLE GAMING
   =========================================== */
.responsible-gaming {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border-gold);
}

.responsible-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 1rem;
}

.age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-text-muted);
  border-radius: 50%;
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: 0.875rem;
}

.responsible-text {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-family: "Roboto", Arial, sans-serif;
}

.responsible-text a {
  color: var(--color-gold);
  text-decoration: underline;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
  background: var(--color-bg-darkest);
  color: var(--color-text-primary);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.footer-container {
  background: var(--color-bg-darkest);
  text-align: center;
  max-width: 128rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 3.5rem) clamp(1rem, 2vw, 2rem);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .footer-content {
    flex-direction: row;
    gap: 3rem;
  }
}

.footer-logo-container {
  display: none;
  flex-shrink: 0;
  align-items: center;
}

@media (min-width: 1024px) {
  .footer-logo-container { display: flex; }
}

.footer-logo-img {
  width: 33.333%;
}

.footer-logo-inner {
  display: flex;
  width: 33.333%;
  flex-direction: column;
  justify-content: center;
}

.footer-logo-line { margin-bottom: -0.25rem; }
.footer-logo-main { width: 100%; display: flex; justify-content: center; }
.footer-logo-main-img { width: 50%; }
.footer-logo-line-2 { margin-top: 1.5rem; }

.footer-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .footer-links { text-align: right; }
}

.footer-links-row {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-links-row { flex-direction: row; gap: 4rem; }
}

@media (min-width: 1024px) {
  .footer-links-row { gap: 5rem; justify-content: flex-start; }
}

@media (min-width: 1280px) {
  .footer-links-row { gap: 8rem; }
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-link-group { align-items: flex-start; min-width: 8rem; }
}

.footer-link-title {
  font-family: "helvetica", Arial, Helvetica, sans-serif;
  font-size: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.footer-link {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 0.625rem + 0.25vw, 0.875rem);
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  transition: all var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(252 207 61 / 25%);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-logo-mobile {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .footer-logo-mobile { display: none; }
}

.footer-logo-mobile-img {
  width: clamp(4rem, 10vw, 6rem);
}

.footer-disclaimer {
  margin-top: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.disclaimer-text {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-family: "Roboto", Arial, sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

/* ===========================================
   PAYMENT SECTION OVERRIDES
   =========================================== */
.payment-section .section-title {
  margin-bottom: 0.5rem;
}

.payment-section .games-description {
  margin-top: 0;
}

/* ===========================================
   SHIMMER ANIMATION
   =========================================== */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ===========================================
   DEMO GAMES (Try Before You Play)
   =========================================== */
.demo-games-section {
  padding: var(--space-section) 0;
}

.demo-games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: var(--max-width-content);
  margin: 1.5rem auto 0;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .demo-games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .demo-games-grid {
    grid-template-columns: repeat(6, 1fr);
    padding: 0 2rem;
  }
}

.demo-game-card {
  background: rgb(40 12 13 / 65%);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 8%);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 3px rgb(0 0 0 / 20%), inset 0 1px 0 rgb(255 255 255 / 5%);
  text-decoration: none;
}

.demo-game-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgb(0 0 0 / 30%),
    0 4px 12px rgb(0 0 0 / 20%),
    inset 0 1px 0 rgb(255 255 255 / 8%);
  border-color: rgb(252 207 61 / 20%);
}

.demo-game-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.demo-game-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.demo-game-card:hover .demo-game-img-wrap img {
  transform: scale(1.05);
}

.demo-game-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--color-gold);
  color: var(--color-text-on-gold);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Roboto", Arial, sans-serif;
}

.demo-game-name {
  color: var(--color-text-primary);
  font-weight: 700;
  font-size: 0.875rem;
  font-family: "helvetica", Arial, Helvetica, sans-serif;
  text-align: center;
  padding: 0 0.5rem;
  margin-top: 0.625rem;
}

.demo-game-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  margin: 0.625rem 0 0.75rem;
  background: var(--color-gold);
  color: var(--color-text-on-gold);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Roboto", Arial, sans-serif;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--transition-smooth);
}

.demo-game-card:hover .demo-game-cta {
  background: var(--color-gold-hover);
  box-shadow: 0 2px 12px rgb(252 207 61 / 30%);
}

.demo-register-nudge {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.demo-register-nudge strong {
  color: var(--color-gold);
}
