/* ============================================
   JUMPLINKSTACK.CAM — MAIN STYLESHEET
   jumplinkstack.cam | Nebula Arc Gaming Ltd.
   ============================================ */

/* ── CSS VARIABLES ──────────────────────────── */
:root {
  /* Colors */
  --bg-primary: #05070d;
  --bg-secondary: #0b1120;
  --bg-elevated: rgba(18, 25, 45, 0.6);
  --bg-card: rgba(14, 20, 38, 0.7);

  --accent-cyan: #7cf5ff;
  --accent-purple: #a78bfa;
  --accent-gold: #ffd166;

  --text-primary: #e6f1ff;
  --text-secondary: #aab6d6;
  --text-muted: #6b7aa6;

  --border-subtle: rgba(124, 245, 255, 0.08);
  --border-glow: rgba(124, 245, 255, 0.25);
  --border-card: rgba(167, 139, 250, 0.12);

  --glass-bg: rgba(18, 25, 45, 0.55);
  --glass-border: rgba(124, 245, 255, 0.1);

  --shadow-soft: 0 4px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(124, 245, 255, 0.12);
  --shadow-glow-strong: 0 0 60px rgba(124, 245, 255, 0.22);

  /* Gradients */
  --grad-cyan-purple: linear-gradient(135deg, #7cf5ff, #a78bfa);
  --grad-gold-warm: linear-gradient(135deg, #ffd166, #ff9a3c);
  --grad-hero: linear-gradient(180deg, #05070d 0%, #0b1120 100%);

  /* Spacing */
  --max-width: 1320px;
  --padding-desktop: 32px;
  --padding-tablet: 24px;
  --padding-mobile: 16px;

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

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

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

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

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

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

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

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

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

ul {
  list-style: none;
}

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

iframe {
  border: none;
  display: block;
}

address {
  font-style: normal;
}

/* ── LAYOUT ──────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-desktop);
}

/* ── TYPOGRAPHY ──────────────────────────────── */
.gradient-text {
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

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

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 13px 28px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #7cf5ff 0%, #a78bfa 100%);
  color: #05070d;
  box-shadow: 0 4px 24px rgba(124, 245, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(124, 245, 255, 0.35);
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-glow);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 4px 20px rgba(124, 245, 255, 0.12);
}

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

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

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

/* ── HEADER ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(5, 7, 13, 0.4);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: rgba(5, 7, 13, 0.88);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--border-glow);
}

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

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

.logo-icon {
  font-size: 1.4rem;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 8px var(--accent-cyan));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

/* Nav */
.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 2px;
  transition: width var(--transition-base);
  box-shadow: 0 0 8px var(--accent-cyan);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: rgba(5, 7, 13, 0.97);
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--border-glow);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.2rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  transition: color var(--transition-fast);
}

.mobile-close:hover {
  color: var(--accent-cyan);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

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

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

.mobile-cta {
  margin-top: 24px;
  text-align: center;
  width: 100%;
  justify-content: center;
}

/* ── HERO SECTION ────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.star-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.nebula-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.nebula-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 245, 255, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.nebula-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
  bottom: -50px;
  left: -80px;
}

.nebula-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.04) 0%, transparent 70%);
  top: 40%;
  left: 30%;
}

.nebula-4 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.nebula-5 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 245, 255, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: 20%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

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

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

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

.slot-preview-ring {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-preview-inner {
  width: 240px;
  height: 240px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-strong), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.slot-preview-symbols {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.symbol-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.sym {
  font-size: 1.6rem;
  opacity: 0.4;
  transition: opacity var(--transition-base);
}

.sym.active {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(124, 245, 255, 0.5));
}

.slot-preview-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  text-transform: uppercase;
}

.slot-win-line {
  position: absolute;
  top: 50%;
  left: 8px;
  right: 8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  transform: translateY(-50%);
  opacity: 0.5;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
}

.orbit-1 {
  width: 300px;
  height: 300px;
  border-color: rgba(124, 245, 255, 0.08);
  animation: spin-slow 20s linear infinite;
}

.orbit-2 {
  width: 360px;
  height: 360px;
  border-color: rgba(167, 139, 250, 0.06);
  animation: spin-slow 30s linear infinite reverse;
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-1 {
  background: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-cyan);
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  animation: orbit-move-1 20s linear infinite;
}

.dot-2 {
  background: var(--accent-purple);
  box-shadow: 0 0 12px var(--accent-purple);
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  animation: orbit-move-2 30s linear infinite reverse;
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent-cyan));
  animation: scroll-pulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── GAME SECTION ────────────────────────────── */
.game-section {
  padding: var(--section-gap-desktop) 0;
  position: relative;
}

.game-container {
  position: relative;
  margin: 0 auto;
  max-width: 960px;
}

.game-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: calc(var(--radius-lg) + 20px);
  background: transparent;
  border: 1px solid var(--border-glow);
  pointer-events: none;
  animation: glow-breathe 4s ease-in-out infinite;
}

.game-frame-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow-strong), var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.game-frame-wrapper:hover {
  transform: scale(1.005);
  box-shadow: 0 0 80px rgba(124, 245, 255, 0.28), var(--shadow-soft);
}

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

.game-ambient-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 245, 255, 0.08) 0%, transparent 70%);
  top: -60px;
  left: -60px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
}

.game-ambient-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
  bottom: -60px;
  right: -60px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
}

.game-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.game-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.meta-icon {
  font-size: 1.3rem;
}

/* ── FEATURES SECTION ────────────────────────── */
.features-section {
  padding: var(--section-gap-desktop) 0;
  position: relative;
  background: var(--bg-secondary);
}

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

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  animation-delay: var(--delay);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 32px rgba(124, 245, 255, 0.08);
  border-color: rgba(124, 245, 255, 0.2);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(124, 245, 255, 0.06);
  border: 1px solid rgba(124, 245, 255, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 1.6rem;
}

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

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── HOW TO PLAY ─────────────────────────────── */
.howto-section {
  padding: var(--section-gap-desktop) 0;
}

.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  animation-delay: var(--delay);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  flex-shrink: 0;
}

.connector-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.connector-star {
  color: var(--accent-cyan);
  font-size: 0.7rem;
  opacity: 0.6;
}

/* ── REWARDS SECTION ─────────────────────────── */
.rewards-section {
  padding: var(--section-gap-desktop) 0;
  background: var(--bg-secondary);
  position: relative;
}

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

.rewards-content .section-title {
  text-align: left;
}

.rewards-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reward-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.reward-item:hover {
  border-color: rgba(124, 245, 255, 0.2);
}

.reward-rank {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reward-perk {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Rewards Visual */
.rewards-visual {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rank-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.rank-orb-main {
  width: 140px;
  height: 140px;
  font-size: 2.5rem;
  gap: 6px;
  box-shadow: var(--shadow-glow-strong);
  animation: float-gentle 4s ease-in-out infinite;
}

.rank-orb-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
}

.rank-orb-sm {
  width: 64px;
  height: 64px;
  font-size: 1.4rem;
}

.orb-a { top: 10%; left: 5%; animation: float-gentle 5s ease-in-out infinite 0.5s; }
.orb-b { top: 10%; right: 5%; animation: float-gentle 4.5s ease-in-out infinite 1s; }
.orb-c { bottom: 15%; left: 10%; animation: float-gentle 6s ease-in-out infinite 0.2s; }
.orb-d { bottom: 15%; right: 10%; animation: float-gentle 5.5s ease-in-out infinite 1.5s; }

/* ── PAGE HERO ───────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-sm {
  padding: 120px 0 60px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

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

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

/* ── CONTENT SECTION ─────────────────────────── */
.content-section {
  padding: var(--section-gap-desktop) 0;
  position: relative;
}

.content-section.alt-bg {
  background: var(--bg-secondary);
}

/* ── ABOUT SPLIT ─────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-title {
  text-align: left;
}

.about-text .section-tag {
  display: block;
  text-align: left;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-orb-group {
  position: relative;
  width: 300px;
  height: 300px;
}

.about-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-glow);
}

.about-orb.main-orb {
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  animation: float-gentle 4s ease-in-out infinite;
}

.about-orb.sm-orb {
  width: 64px;
  height: 64px;
}

.about-orb.sm-orb.a { top: 0; left: 0; animation: float-gentle 5s ease-in-out infinite 0.5s; }
.about-orb.sm-orb.b { top: 0; right: 0; animation: float-gentle 4.5s ease-in-out infinite 1s; }
.about-orb.sm-orb.c { bottom: 0; left: 50%; transform: translateX(-50%); animation: float-gentle 6s ease-in-out infinite 0.3s; }

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

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  animation-delay: var(--delay);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.value-icon {
  font-size: 2rem;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

/* ── COMPANY CARD ────────────────────────────── */
.company-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.company-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
}

.company-icon {
  font-size: 2.5rem;
}

.company-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.company-tagline {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin-top: 4px;
}

.company-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.company-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.detail-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.company-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  line-height: 1.7;
}

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

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(12px);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  background: rgba(5, 7, 13, 0.5);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(124, 245, 255, 0.1);
}

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

.form-select {
  cursor: pointer;
}

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

.form-success {
  display: none;
  padding: 14px 20px;
  background: rgba(124, 245, 255, 0.08);
  border: 1px solid rgba(124, 245, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--accent-cyan);
  font-size: 0.9rem;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* Contact Info */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation-delay: var(--delay);
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: border-color var(--transition-fast);
}

.contact-info-card:hover {
  border-color: rgba(124, 245, 255, 0.2);
}

.contact-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-info-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.inline-link {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── LEGAL SECTION ───────────────────────────── */
.legal-section {
  padding: 60px 0 var(--section-gap-desktop);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-meta {
  margin-bottom: 40px;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 16px;
}

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

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

.legal-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

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

.legal-list {
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.legal-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-size: 0.5rem;
  top: 8px;
}

/* Responsible Gaming */
.responsible-banner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(124, 245, 255, 0.05);
  border: 1px solid rgba(124, 245, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 40px;
}

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

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

.responsible-banner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition-fast);
}

.resource-card:hover {
  border-color: rgba(124, 245, 255, 0.2);
}

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

.resource-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.resource-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Rules */
.symbol-guide {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.symbol-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
}

.sym-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  min-width: 36px;
}

.sym-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sym-info strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sym-info span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.sym-value {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(124, 245, 255, 0.06);
  border: 1px solid rgba(124, 245, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  white-space: nowrap;
}

.rules-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.rules-feature {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-cyan);
}

.rules-feature h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.rules-feature p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.faq-item {
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-card);
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
}

.faq-q::after {
  content: '＋';
  font-size: 1.1rem;
  color: var(--accent-cyan);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

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

.faq-q:hover {
  background: rgba(124, 245, 255, 0.03);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding: 16px 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--border-subtle);
  background: rgba(5, 7, 13, 0.4);
}

/* ── DISCLAIMER BANNER ───────────────────────── */
.disclaimer-banner {
  padding: 24px 0;
  background: rgba(255, 209, 102, 0.03);
  border-top: 1px solid rgba(255, 209, 102, 0.1);
  border-bottom: 1px solid rgba(255, 209, 102, 0.1);
}

.disclaimer-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

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

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

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

.disclaimer-text a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  padding: 80px 0 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.footer-nebula {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.04) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
}

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

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

.footer-nav-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ── GLASS CARD UTILITY ──────────────────────── */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
/* ============================================ */