/* ============================================================
   PIXOSWIFTRC — STYLE.CSS
   Modern Vegas Premium Design System
   ============================================================ */

/* ── VARIABLES ── */
:root {
  /* Base Colors */
  --color-bg:           #1a0f0b;
  --color-bg-secondary: #2b1610;
  --color-surface:      rgba(255, 215, 0, 0.04);
  --color-surface-hover:rgba(255, 215, 0, 0.08);
  --color-border:       rgba(212, 175, 55, 0.15);
  --color-border-hover: rgba(212, 175, 55, 0.35);

  /* Accent Colors */
  --color-gold:         #d4af37;
  --color-gold-light:   #ffcc70;
  --color-gold-dark:    #a8892a;
  --color-red:          #b31217;
  --color-red-dark:     #8b0d11;

  /* Text Colors */
  --color-text-primary:   #f5e6c8;
  --color-text-secondary: #d6b98c;
  --color-text-muted:     #9e7f5a;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.45);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold:  0 0 20px rgba(212, 175, 55, 0.18);
  --shadow-gold-lg: 0 0 40px rgba(212, 175, 55, 0.25);

  /* Border Radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-gap-desktop: 110px;
  --section-gap-tablet:  80px;
  --section-gap-mobile:  60px;

  /* Max Width */
  --max-width: 1320px;

  /* Transitions */
  --transition-fast:   0.18s ease;
  --transition-normal: 0.28s ease;
  --transition-slow:   0.45s ease;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold-light);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ── PARTICLES BACKGROUND ── */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle var(--duration, 8s) ease-in-out var(--delay, 0s) infinite;
}

.particle:nth-child(1)  { left: 8%;   --duration: 9s;  --delay: 0s;   }
.particle:nth-child(2)  { left: 18%;  --duration: 11s; --delay: 1.5s; }
.particle:nth-child(3)  { left: 28%;  --duration: 7s;  --delay: 3s;   }
.particle:nth-child(4)  { left: 38%;  --duration: 13s; --delay: 0.5s; }
.particle:nth-child(5)  { left: 50%;  --duration: 9s;  --delay: 2s;   }
.particle:nth-child(6)  { left: 60%;  --duration: 10s; --delay: 4s;   }
.particle:nth-child(7)  { left: 70%;  --duration: 8s;  --delay: 1s;   }
.particle:nth-child(8)  { left: 78%;  --duration: 12s; --delay: 2.5s; }
.particle:nth-child(9)  { left: 85%;  --duration: 7s;  --delay: 0.8s; }
.particle:nth-child(10) { left: 92%;  --duration: 11s; --delay: 3.5s; }
.particle:nth-child(11) { left: 45%;  --duration: 14s; --delay: 1.2s; }
.particle:nth-child(12) { left: 55%;  --duration: 9s;  --delay: 5s;   }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 40px;
}

section {
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 15, 11, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.1);
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(26, 15, 11, 0.96);
  box-shadow: var(--shadow-md), 0 1px 0 rgba(212, 175, 55, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.02em;
}

/* MAIN NAV */
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-cta {
  flex-shrink: 0;
}

/* MOBILE TOGGLE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 15, 11, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-nav-overlay.open {
  display: flex;
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.mobile-nav-cta {
  margin-top: 8px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #1a0f0b;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  filter: brightness(1.08);
  color: #1a0f0b;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
  background: var(--color-surface);
}

.btn-large {
  padding: 16px 38px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}

/* ── HERO SECTION ── */
.hero-section {
  padding-top: 80px;
  padding-bottom: var(--section-gap-desktop);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.text-gold {
  color: var(--color-gold);
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hero-subtext {
  font-size: 1.08rem;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.hero-scroll-hint {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.scroll-arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(212, 175, 55, 0.4);
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* SLOT MACHINE ART */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-machine-art {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slot-machine-body {
  background: linear-gradient(160deg, #2d1a12 0%, #1a0f0b 50%, #2d1a12 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px 24px 16px 16px;
  padding: 24px;
  width: 260px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 215, 0, 0.1);
  position: relative;
  z-index: 2;
}

.slot-top-light {
  width: 60px;
  height: 12px;
  background: var(--color-gold);
  border-radius: 6px;
  margin: 0 auto 16px;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.7);
  animation: pulseLightTop 2s ease-in-out infinite;
}

.slot-screen {
  background: #0d0604;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 16px 12px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.slot-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212,175,55,0.04) 0%, transparent 30%, transparent 70%, rgba(212,175,55,0.04) 100%);
  pointer-events: none;
  z-index: 2;
}

.slot-reels-display {
  display: flex;
  gap: 8px;
  justify-content: center;
  height: 60px;
  overflow: hidden;
}

.reel-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 52px;
  overflow: hidden;
  height: 60px;
}

.reel-display span {
  font-size: 1.8rem;
  line-height: 1;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payline-indicator {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  background: rgba(212, 175, 55, 0.35);
  transform: translateY(-50%);
  z-index: 3;
}

.slot-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slot-coin-indicator {
  display: flex;
  gap: 6px;
}

.coin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.coin-dot.active {
  background: var(--color-gold);
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

.slot-lever-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-lever {
  width: 10px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-radius: 5px;
  position: relative;
  animation: leverPull 3s ease-in-out infinite;
  transform-origin: bottom center;
}

.slot-lever::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--color-red);
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 8px rgba(179, 18, 23, 0.6);
}

.slot-base {
  width: 280px;
  height: 16px;
  background: linear-gradient(90deg, #2d1a12 0%, var(--color-gold-dark) 50%, #2d1a12 100%);
  border-radius: 0 0 12px 12px;
  margin-top: -2px;
  opacity: 0.6;
}

.slot-glow-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

/* ── SECTION TYPOGRAPHY ── */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ── GAME SECTION ── */
.game-section {
  padding-block: var(--section-gap-desktop);
  text-align: center;
}

.game-frame-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 900px;
}

.game-glow-border {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, rgba(212,175,55,0.5), rgba(179,18,23,0.3), rgba(212,175,55,0.5));
  animation: borderGlow 4s ease-in-out infinite;
  z-index: 0;
}

.game-container {
  position: relative;
  z-index: 1;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-gold-lg), var(--shadow-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.game-container:hover {
  transform: scale(1.005);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.3), var(--shadow-lg);
}

.game-iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.game-disclaimer {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 10px 20px;
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212,175,55,0.08);
}

/* ── FEATURES SECTION ── */
.features-section {
  padding-block: var(--section-gap-desktop);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
  background: var(--color-surface-hover);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── TRUST SECTION ── */
.trust-section {
  padding-block: var(--section-gap-desktop);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-gold);
  background: var(--color-surface-hover);
}

.trust-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  flex: 1;
  line-height: 1.6;
}

.trust-link-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  transition: transform var(--transition-fast);
}

.trust-card:hover .trust-link-arrow {
  transform: translateX(4px);
}

/* ── CTA BANNER ── */
.cta-banner {
  padding-block: 80px;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, rgba(43,22,16,0.9) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.cta-banner-text p {
  color: var(--color-text-secondary);
  font-size: 1rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 80px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-inline: auto;
}

/* ── CONTENT SECTION ── */
.content-section {
  padding-block: 80px;
}

.content-narrow {
  max-width: 820px;
  margin-inline: auto;
}

.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.content-block p {
  color: var(--color-text-secondary);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.content-address {
  color: var(--color-text-secondary);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ── ABOUT VALUES GRID ── */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-block: 48px;
}

.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-gold);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--color-text-secondary);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.contact-detail-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail address {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-legal-links a {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.contact-legal-links a:hover {
  color: var(--color-gold);
}

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 44px;
}

.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-group select option {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.6;
}

/* ── LEGAL DOC ── */
.legal-doc h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc p {
  color: var(--color-text-secondary);
  font-size: 0.96rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-doc a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-doc address {
  color: var(--color-text-secondary);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-top: 8px;
}

.legal-list {
  list-style: decimal;
  list-style-position: inside;
  color: var(--color-text-secondary);
  font-size: 0.96rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-list li {
  margin-bottom: 8px;
}

.legal-nav-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

/* ── RESPONSIBLE GAMING ── */
.rg-banner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(179, 18, 23, 0.08);
  border: 1px solid rgba(179, 18, 23, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 48px;
  color: var(--color-text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

.rg-banner-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.rg-resources {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.rg-resource-link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.rg-resource-link:hover {
  border-color: var(--color-gold);
  background: var(--color-surface-hover);
  transform: translateY(-2px);
  color: var(--color-gold-light);
}

/* ── RULES SYMBOLS ── */
.rules-symbols {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px 0;
  margin-bottom: 24px;
}

.rules-symbol-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(212,175,55,0.06);
  font-size: 0.93rem;
  color: var(--color-text-secondary);
}

.rules-symbol-row:last-child {
  border-bottom: none;
}

.sym {
  font-size: 1.3rem;
  min-width: 80px;
  letter-spacing: 4px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding-top: 72px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  margin-bottom: 20px;
  line-height: 1.65;
}

.footer-address {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.footer-address a {
  color: var(--color-gold);
}

.footer-links-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-block: 28px;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 780px;
  margin-inline: auto;
}

.footer-disclaimer a {
  color: var(--color-gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(158, 127, 90, 0.6);
}

.footer-copy a {
  color: rgba(212, 175, 55, 0.5);
}
/* ENDFILE */