/* =============================================================
   ADVENTURER SLOTS — STYLE.CSS
   Pixoswiftrc Gaming Ltd. | arvyntaguide.xyz
   ============================================================= */

/* -------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-primary: #0c1b12;
  --bg-secondary: #14281d;
  --bg-elevated: rgba(34, 60, 45, 0.6);
  --bg-card: rgba(34, 60, 45, 0.55);
  --bg-card-hover: rgba(40, 70, 52, 0.7);

  /* Accents */
  --gold-primary: #c2a878;
  --gold-secondary: #7c5e3c;
  --gold-highlight: #e6c98f;
  --gold-gradient: linear-gradient(135deg, #c2a878 0%, #e6c98f 50%, #c2a878 100%);
  --gold-gradient-hover: linear-gradient(135deg, #d4bb8a 0%, #f0d8a0 50%, #d4bb8a 100%);

  /* Typography */
  --text-primary: #f4f1e8;
  --text-secondary: #cfc7b5;
  --text-muted: #8f8a7a;
  --text-gold: #e6c98f;

  /* Borders */
  --border-subtle: rgba(194, 168, 120, 0.15);
  --border-gold: rgba(194, 168, 120, 0.4);
  --border-card: rgba(194, 168, 120, 0.12);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 24px rgba(194, 168, 120, 0.2);
  --shadow-gold-strong: 0 8px 40px rgba(194, 168, 120, 0.35);

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

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Layout */
  --container-max: 1320px;
  --header-height: 80px;

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

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

/* -------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* -------------------------------------------------------------
   3. LAYOUT — CONTAINER
   ------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

/* -------------------------------------------------------------
   4. TYPOGRAPHY UTILITIES
   ------------------------------------------------------------- */
.text-gold {
  color: var(--gold-highlight);
}

.text-gold-link {
  color: var(--gold-highlight);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

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

.body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: var(--space-4);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

/* -------------------------------------------------------------
   5. BUTTON SYSTEM
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #1a0f00;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-strong);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--border-gold);
}

.btn-outline:hover {
  background: rgba(194, 168, 120, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-highlight);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  font-size: 0.85em;
}

/* -------------------------------------------------------------
   6. PARTICLES & ATMOSPHERIC EFFECTS
   ------------------------------------------------------------- */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.light-rays {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ray {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 120%;
  background: linear-gradient(to bottom, rgba(194, 168, 120, 0.06), transparent);
  transform-origin: top center;
}

.ray-1 {
  left: 20%;
  transform: rotate(-15deg);
  animation: ray-sway 8s ease-in-out infinite;
}

.ray-2 {
  left: 50%;
  transform: rotate(-5deg);
  width: 3px;
  background: linear-gradient(to bottom, rgba(194, 168, 120, 0.04), transparent);
  animation: ray-sway 12s ease-in-out infinite reverse;
}

.ray-3 {
  left: 75%;
  transform: rotate(10deg);
  animation: ray-sway 10s ease-in-out infinite 2s;
}

/* -------------------------------------------------------------
   7. HEADER / NAV
   ------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(12, 27, 18, 0.7);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: rgba(12, 27, 18, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(194, 168, 120, 0.2);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-6);
}

/* Logo */
.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: opacity var(--transition-fast);
}

.logo:hover {
  opacity: 0.85;
}

.logo-icon {
  font-size: 1.4rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.logo-accent {
  color: var(--gold-primary);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-1) 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition-base);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-subtle);
  padding: var(--space-12) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-size: 1.2rem;
  color: var(--text-secondary);
  padding: var(--space-2);
  transition: color var(--transition-fast);
}

.mobile-close:hover {
  color: var(--gold-primary);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-top: var(--space-8);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-3) var(--space-2);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition-fast);
}

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

.mobile-cta {
  margin-top: auto;
  text-align: center;
  justify-content: center;
}

/* -------------------------------------------------------------
   8. HERO SECTION
   ------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slow-zoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 27, 18, 0.92) 0%,
    rgba(12, 27, 18, 0.75) 50%,
    rgba(12, 27, 18, 0.6) 100%
  );
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding: var(--space-20) 0;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(194, 168, 120, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-game-image {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--shadow-gold-strong);
  border: 1px solid var(--border-gold);
  position: relative;
  z-index: 1;
}

.hero-visual-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(194, 168, 120, 0.15), transparent 70%);
  pointer-events: none;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  transform: rotate(45deg);
  animation: scroll-bounce 2s ease-in-out infinite;
  opacity: 0.6;
}

/* -------------------------------------------------------------
   9. FEATURES STRIP
   ------------------------------------------------------------- */
.features-strip {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
  padding: var(--space-6) 0;
}

.features-strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.strip-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.strip-icon {
  font-size: 1.1rem;
}

.strip-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.strip-divider {
  width: 1px;
  height: 20px;
  background: var(--border-subtle);
}

/* -------------------------------------------------------------
   10. GAME SECTION
   ------------------------------------------------------------- */
.game-section {
  padding: var(--space-24) 0;
  position: relative;
}

.game-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition-base);
}

.game-wrapper:hover {
  box-shadow: var(--shadow-lg), var(--shadow-gold-strong);
}

.game-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  background: rgba(20, 40, 29, 0.8);
  border-bottom: 1px solid var(--border-subtle);
}

.game-topbar-left,
.game-topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.game-title-tag {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
}

.game-live-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.game-ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(194, 168, 120, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.game-ctrl-btn:hover {
  background: rgba(194, 168, 120, 0.15);
  border-color: var(--border-gold);
  color: var(--gold-primary);
}

.game-frame-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0a1610;
}

.game-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-bottombar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  background: rgba(20, 40, 29, 0.8);
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.game-balance-display {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.balance-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.balance-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-highlight);
}

.btn-refill {
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: rgba(194, 168, 120, 0.12);
  border: 1px solid var(--border-gold);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-refill:hover {
  background: rgba(194, 168, 120, 0.2);
  color: var(--gold-highlight);
}

.game-social-disclaimer {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.shield-icon {
  font-size: 0.85rem;
}

/* -------------------------------------------------------------
   11. INFO / FEATURES SECTION
   ------------------------------------------------------------- */
.info-section {
  padding: var(--space-24) 0;
  background: linear-gradient(to bottom, transparent, var(--bg-secondary), transparent);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
}

.info-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.info-card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* -------------------------------------------------------------
   12. STEPS SECTION
   ------------------------------------------------------------- */
.steps-section {
  padding: var(--space-24) 0;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

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

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(194, 168, 120, 0.15);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-4);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.step-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.step-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--border-subtle), var(--border-gold), var(--border-subtle));
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   13. RESPONSIBLE GAMING BANNER
   ------------------------------------------------------------- */
.rg-banner {
  padding: var(--space-8) 0;
  margin: var(--space-8) 0;
}

.rg-banner-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  background: rgba(20, 40, 29, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

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

.rg-banner-content {
  flex: 1;
  min-width: 200px;
}

.rg-banner-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.rg-banner-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* -------------------------------------------------------------
   14. PAGE HERO (INNER PAGES)
   ------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 60px) 0 80px;
  overflow: hidden;
}

.page-hero-compact {
  padding: calc(var(--header-height) + 40px) 0 60px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 27, 18, 0.85) 0%,
    rgba(12, 27, 18, 0.7) 100%
  );
}

.page-hero-overlay-dark {
  background: rgba(12, 27, 18, 0.96);
}

.page-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-5);
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* -------------------------------------------------------------
   15. ABOUT PAGE
   ------------------------------------------------------------- */
.about-intro-section {
  padding: var(--space-24) 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-intro-text .section-label {
  display: block;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border: 1px solid var(--border-gold);
}

.about-image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: rgba(12, 27, 18, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  backdrop-filter: blur(8px);
}

.badge-year {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-highlight);
}

.badge-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.values-section {
  padding: var(--space-24) 0;
  background: linear-gradient(to bottom, transparent, var(--bg-secondary), transparent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
}

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

.value-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.value-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.about-mission-section {
  padding: var(--space-20) 0;
}

.mission-card {
  text-align: center;
  background: rgba(194, 168, 120, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-20);
  max-width: 860px;
  margin: 0 auto;
}

.mission-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-5);
}

.mission-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-highlight);
  margin-bottom: var(--space-6);
}

.mission-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.mission-attribution {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* -------------------------------------------------------------
   16. CONTACT PAGE
   ------------------------------------------------------------- */
.contact-section {
  padding: var(--space-24) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
}

.contact-details {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-detail-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.detail-icon {
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(194, 168, 120, 0.1);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  border: 1px solid var(--border-card);
}

.detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

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

.detail-link {
  color: var(--gold-primary);
  transition: color var(--transition-fast);
}

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

.contact-social-disclaimer {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(194, 168, 120, 0.06);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  backdrop-filter: blur(8px);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-8);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  letter-spacing: 0.03em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(12, 27, 18, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px rgba(194, 168, 120, 0.12);
}

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

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238f8a7a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.form-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.form-check-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-success {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: #81c784;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

/* -------------------------------------------------------------
   17. LEGAL PAGES
   ------------------------------------------------------------- */
.legal-section {
  padding: var(--space-20) 0 var(--space-24);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-12);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
}

.legal-nav {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(8px);
}

.legal-nav-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.legal-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.legal-nav-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.legal-nav-link:hover {
  color: var(--gold-primary);
  background: rgba(194, 168, 120, 0.08);
}

.legal-content {
  max-width: 800px;
}

.legal-intro {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  background: rgba(194, 168, 120, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-10);
}

.legal-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.legal-intro p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-block {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-highlight);
  margin-bottom: var(--space-4);
}

.legal-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.legal-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-2);
}

/* -------------------------------------------------------------
   18. RESPONSIBLE GAMING PAGE
   ------------------------------------------------------------- */
.rg-commitment-section {
  padding: var(--space-12) 0;
}

.rg-social-notice {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  background: rgba(76, 175, 80, 0.06);
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  backdrop-filter: blur(8px);
}

.rg-social-notice-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.rg-social-notice-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.rg-social-notice p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.rg-principles-section {
  padding: var(--space-16) 0;
}

.rg-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.rg-principle-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
}

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

.rg-principle-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.rg-principle-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.rg-principle-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.rg-signs-section {
  padding: var(--space-16) 0;
}

.rg-signs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-12);
  max-width: 860px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.rg-signs-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
}

.rg-signs-intro,
.rg-signs-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.rg-signs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.rg-signs-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.rg-signs-list li::before {
  content: '◆';
  color: var(--gold-primary);
  font-size: 0.5rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.rg-resources-section {
  padding: var(--space-16) 0 var(--space-24);
}

.rg-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.rg-resource-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
  text-decoration: none;
}

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

.rg-resource-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.rg-resource-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.rg-resource-url {
  font-size: 0.8rem;
  color: var(--gold-primary);
  margin-bottom: var(--space-3);
}

.rg-resource-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* -------------------------------------------------------------
   19. RULES PAGE
   ------------------------------------------------------------- */
.rules-section {
  padding: var(--space-20) 0;
}

.rules-social-note {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: rgba(194, 168, 120, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-12);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.rules-social-note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.rules-block {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  backdrop-filter: blur(8px);
  transition: border-color var(--transition-base);
}

.rules-block:hover {
  border-color: var(--border-gold);
}

.rules-block-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}

.rules-block-icon {
  font-size: 1.3rem;
}

.rules-block-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-highlight);
}

.rules-block-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.rules-block-content p:last-child {
  margin-bottom: 0;
}

.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: var(--space-3) 0;
}

.rules-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.rules-list li::before {
  content: '▸';
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Symbols Table */
.symbols-table {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.symbol-row {
  display: grid;
  grid-template-columns: 40px 1fr 50px 50px 50px;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

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

.symbol-row-header {
  background: rgba(194, 168, 120, 0.08);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.symbol-row:not(.symbol-row-header):hover {
  background: rgba(194, 168, 120, 0.04);
}

/* Rules CTA */
.rules-cta-section {
  text-align: center;
  padding: var(--space-12) 0 var(--space-8);
}

.rules-cta-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

/* -------------------------------------------------------------
   20. FOOTER
   ------------------------------------------------------------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-16) 0 var(--space-8);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  transition: opacity var(--transition-fast);
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
  max-width: 320px;
}

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

.footer-address strong {
  color: var(--text-secondary);
  font-weight: 600;
}

.footer-nav-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: var(--space-5);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-disclaimer {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  background: rgba(194, 168, 120, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.disclaimer-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-disclaimer strong {
  color: var(--text-secondary);
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}
/* ENDFILE */