/* ============================================================
   STYLE.CSS — CANDY SPIN DESIGN SYSTEM
   plorviaguide.world | Pixoswiftrc Candy Entertainment Ltd.
   ============================================================ */

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  /* Base Colors */
  --bg-primary: #fff1f7;
  --bg-secondary: #ffe0ec;
  --bg-elevated: rgba(255, 182, 193, 0.25);
  --bg-glass: rgba(255, 255, 255, 0.55);

  /* Accent Colors */
  --accent-pink: #ff4fa3;
  --accent-purple: #9b5de5;
  --accent-gold: #ffd166;
  --accent-mint: #06d6a0;

  /* Typography */
  --text-primary: #3a2b3d;
  --text-secondary: #6b4c5a;
  --text-muted: #9c7b8a;
  --text-white: #ffffff;

  /* Gradients */
  --gradient-pink: linear-gradient(135deg, #ff4fa3, #ff85c1);
  --gradient-purple: linear-gradient(135deg, #9b5de5, #c084fc);
  --gradient-candy: linear-gradient(135deg, #ff4fa3, #9b5de5);
  --gradient-gold: linear-gradient(135deg, #ffd166, #ffb347);
  --gradient-hero: linear-gradient(160deg, #fff1f7 0%, #ffe0ec 50%, #f3d6ff 100%);
  --gradient-mint: linear-gradient(135deg, #06d6a0, #00b894);

  /* Borders & Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(255, 79, 163, 0.1);
  --shadow-md: 0 8px 32px rgba(155, 93, 229, 0.12);
  --shadow-lg: 0 16px 48px rgba(155, 93, 229, 0.18);
  --shadow-glow-pink: 0 0 24px rgba(255, 79, 163, 0.3);
  --shadow-glow-purple: 0 0 24px rgba(155, 93, 229, 0.3);

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 100px;
  --space-3xl: 120px;

  /* Typography Scale */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;

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

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  background-image: var(--gradient-hero);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

address {
  font-style: normal;
}

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

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-primary);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-pink);
  background: rgba(255, 79, 163, 0.1);
  border: 1px solid rgba(255, 79, 163, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

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

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.headline-gradient {
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-candy);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(255, 79, 163, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255, 79, 163, 0.5);
  color: var(--text-white);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent-pink);
  color: var(--accent-pink);
}

.btn-outline:hover {
  background: rgba(255, 79, 163, 0.08);
  transform: translateY(-2px);
  color: var(--accent-pink);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--text-white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  color: var(--text-white);
}

.btn-large {
  padding: 18px 40px;
  font-size: var(--text-lg);
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}

/* ── CANDY PARTICLES ─────────────────────────────────────── */
.candy-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 241, 247, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 79, 163, 0.1);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 241, 247, 0.92);
  box-shadow: 0 4px 24px rgba(155, 93, 229, 0.1);
}

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

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

.logo-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  position: relative;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 28px);
  height: 2px;
  background: var(--gradient-candy);
  border-radius: 2px;
  transition: transform var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-pink);
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 79, 163, 0.08);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--accent-pink);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.nav-toggle:hover {
  background: rgba(255, 79, 163, 0.15);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 100vw);
  height: 100vh;
  background: linear-gradient(160deg, #fff1f7 0%, #ffe0ec 50%, #f3d6ff 100%);
  z-index: 2000;
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: right var(--transition-smooth);
  box-shadow: -8px 0 48px rgba(155, 93, 229, 0.18);
  overflow-y: auto;
}

.mobile-nav-overlay.open {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 79, 163, 0.1);
  border-radius: 50%;
  border: none;
  color: var(--accent-pink);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
  background: rgba(255, 79, 163, 0.2);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--text-primary);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  background: rgba(255, 79, 163, 0.08);
  color: var(--accent-pink);
  padding-left: 24px;
}

.mobile-nav-cta {
  margin-top: auto;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(58, 43, 61, 0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ── HERO SECTION ────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-full);
  filter: blur(40px);
}

.cloud-1 {
  width: 500px;
  height: 200px;
  top: 10%;
  left: -100px;
  animation: cloud-drift 18s ease-in-out infinite;
}

.cloud-2 {
  width: 400px;
  height: 160px;
  top: 50%;
  right: -80px;
  animation: cloud-drift 22s ease-in-out infinite reverse;
}

.cloud-3 {
  width: 300px;
  height: 120px;
  bottom: 20%;
  left: 30%;
  animation: cloud-drift 15s ease-in-out infinite 3s;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-purple);
  background: rgba(155, 93, 229, 0.1);
  border: 1px solid rgba(155, 93, 229, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.hero-headline {
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
}

.hero-subtext {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero-trust-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.trust-badge {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 79, 163, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

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

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

.slot-frame {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 79, 163, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  width: 340px;
  animation: gentle-float 4s ease-in-out infinite;
}

.slot-top-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.slot-title-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.slot-lights {
  display: flex;
  gap: 10px;
}

.slot-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: light-blink 1.5s ease-in-out infinite;
}

.slot-light:nth-child(2) { animation-delay: 0.3s; background: var(--accent-pink); }
.slot-light:nth-child(3) { animation-delay: 0.6s; background: var(--accent-purple); }
.slot-light:nth-child(4) { animation-delay: 0.9s; background: var(--accent-mint); }
.slot-light:nth-child(5) { animation-delay: 1.2s; background: var(--accent-gold); }

.slot-reels-container {
  display: flex;
  gap: 8px;
  background: rgba(255, 241, 247, 0.8);
  border-radius: var(--radius-md);
  padding: 12px;
  border: 1px solid rgba(255, 79, 163, 0.15);
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
}

.reel {
  flex: 1;
  height: 80px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 79, 163, 0.1);
}

.reel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reel-symbol {
  font-size: 2rem;
  line-height: 1;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.slot-win-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  transform: translateY(-50%);
  border-radius: 2px;
  animation: win-line-pulse 2s ease-in-out infinite;
}

.slot-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.slot-coins {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  background: rgba(255, 209, 102, 0.15);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 209, 102, 0.3);
}

.slot-spin-btn {
  background: var(--gradient-candy);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 79, 163, 0.35);
  transition: all var(--transition-fast);
  letter-spacing: 0.05em;
}

.slot-spin-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 79, 163, 0.5);
}

/* Floating candies around hero slot */
.floating-candy {
  position: absolute;
  font-size: 1.5rem;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(255, 79, 163, 0.3));
}

.fc1 { top: -20px; right: -30px; animation: candy-orbit 6s ease-in-out infinite; }
.fc2 { bottom: -20px; left: -30px; animation: candy-orbit 8s ease-in-out infinite 1s; }
.fc3 { top: 30%; right: -50px; animation: candy-orbit 7s ease-in-out infinite 2s; }
.fc4 { bottom: 30%; left: -50px; animation: candy-orbit 9s ease-in-out infinite 0.5s; }

/* ── GAME SECTION ────────────────────────────────────────── */
.game-section {
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.game-wrapper {
  position: relative;
  margin-top: var(--space-xl);
}

.game-glow-ring {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(255, 79, 163, 0.08), transparent 70%);
  border-radius: var(--radius-xl);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

.game-frame-outer {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  border: 2px solid rgba(255, 79, 163, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.game-frame-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(255, 79, 163, 0.1), rgba(155, 93, 229, 0.1));
  border-bottom: 1px solid rgba(255, 79, 163, 0.15);
}

.gft-dot {
  width: 10px;
  height: 10px;
  background: var(--gradient-candy);
  border-radius: 50%;
  animation: light-blink 2s ease-in-out infinite;
}

.gft-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--accent-pink);
  letter-spacing: 0.03em;
}

.game-iframe-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 480px;
  max-height: 640px;
  background: var(--bg-secondary);
  position: relative;
}

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

.game-frame-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(155, 93, 229, 0.08), rgba(255, 79, 163, 0.08));
  border-top: 1px solid rgba(155, 93, 229, 0.12);
}

.gfb-item {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
}

/* ── FEATURES SECTION ────────────────────────────────────── */
.features-section {
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  text-align: left;
}

.feature-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 79, 163, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-candy);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 79, 163, 0.25);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.feature-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

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

/* ── HOW TO PLAY SECTION ─────────────────────────────────── */
.howto-section {
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.3);
}

.howto-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.howto-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 79, 163, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  backdrop-filter: blur(16px);
  transition: all var(--transition-smooth);
}

.howto-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

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

.step-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 10px;
}

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

.howto-connector {
  font-size: 1.5rem;
  color: var(--accent-gold);
  align-self: center;
  animation: star-spin 3s linear infinite;
  flex-shrink: 0;
  margin-top: -20px;
}

/* ── RESPONSIBLE BANNER ──────────────────────────────────── */
.responsible-banner {
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 1;
}

.rb-inner {
  background: var(--gradient-candy);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  box-shadow: var(--shadow-glow-pink);
}

.rb-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.rb-content {
  flex: 1;
}

.rb-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.rb-text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* ── LEGAL NOTICE SECTION ────────────────────────────────── */
.legal-notice-section {
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 1;
}

.legal-notice-inner {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 79, 163, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
  backdrop-filter: blur(16px);
}

.legal-items {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.legal-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 79, 163, 0.06);
  border: 1px solid rgba(255, 79, 163, 0.12);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.legal-item:hover {
  color: var(--accent-pink);
  background: rgba(255, 79, 163, 0.12);
  transform: translateY(-2px);
}

.legal-icon {
  font-size: 1rem;
}

.legal-disclaimer {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--space-3xl) + 20px) 0 var(--space-2xl);
  text-align: center;
  overflow: hidden;
}

.page-hero-compact {
  padding: calc(var(--space-xl) + 20px) 0 var(--space-xl);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.page-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.page-hero-subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-story-section {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}

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

.about-visual-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 79, 163, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

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

.avc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

.about-story-content {
  text-align: left;
}

.about-text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* Values section */
.values-section {
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.3);
}

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

.value-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 79, 163, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

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

.value-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* Team CTA */
.team-cta-section {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}

.team-cta-inner {
  background: var(--gradient-candy);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-glow-pink);
}

.team-cta-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.team-cta-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-sm);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-cta-text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-section {
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}

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

.contact-info {
  text-align: left;
}

.contact-detail-card {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 79, 163, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  backdrop-filter: blur(16px);
  transition: all var(--transition-fast);
}

.contact-detail-card:hover {
  transform: translateX(4px);
  border-color: rgba(255, 79, 163, 0.3);
}

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

.cdc-title {
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: 6px;
}

.cdc-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.cdc-link {
  font-size: var(--text-base);
  color: var(--accent-pink);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.cdc-link:hover {
  color: var(--accent-purple);
}

.cdc-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 4px;
}

/* Contact Form */
.contact-form-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 79, 163, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.form-card-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 241, 247, 0.6);
  border: 1.5px solid rgba(255, 79, 163, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-pink);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 79, 163, 0.12);
}

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

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239c7b8a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

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

.form-privacy-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-sm);
  line-height: 1.5;
}

.form-privacy-note a {
  color: var(--accent-pink);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

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

.form-success-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.form-success-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.form-success-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
}

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-content-section {
  padding: var(--space-2xl) 0 var(--space-3xl);
  position: relative;
  z-index: 1;
}

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

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

.legal-toc {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 79, 163, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.toc-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 79, 163, 0.15);
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-link {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.toc-link:hover {
  color: var(--accent-pink);
  background: rgba(255, 79, 163, 0.08);
  padding-left: 16px;
}

.legal-body {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 79, 163, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.legal-notice-box {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: rgba(255, 79, 163, 0.06);
  border: 1px solid rgba(255, 79, 163, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.legal-section {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 79, 163, 0.08);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  padding-top: var(--space-sm);
}

.legal-h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
}

.legal-section p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.legal-list li::before {
  content: '🍬';
  position: absolute;
  left: -2px;
  font-size: 0.85rem;
  top: 2px;
}

.legal-link {
  color: var(--accent-pink);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.legal-link:hover {
  color: var(--accent-purple);
}

.legal-contact-block {
  background: rgba(255, 79, 163, 0.05);
  border: 1px solid rgba(255, 79, 163, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── RESPONSIBLE GAMING PAGE ─────────────────────────────── */
.rg-commitment-section {
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
}

.rg-notice {
  margin-bottom: var(--space-xl);
}

.rg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.rg-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 79, 163, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all var(--transition-smooth);
}

.rg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.rg-card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.rg-card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 10px;
}

.rg-card-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.rg-signs-section {
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.3);
}

.rg-signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  text-align: left;
}

.rg-sign-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--bg-glass);
  border: 1px solid rgba(255, 79, 163, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: blur(16px);
}

.rg-sign-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.rg-sign-item p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

.rg-tips-section {
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.rg-tips-list {
  max-width: 760px;
  margin: var(--space-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: left;
}

.rg-tip {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 79, 163, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: blur(16px);
  transition: all var(--transition-fast);
}

.rg-tip:hover {
  transform: translateX(4px);
  border-color: rgba(255, 79, 163, 0.25);
}

.rg-tip-number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
  min-width: 40px;
}

.rg-tip-title {
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: 6px;
}

.rg-tip-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
}

.rg-contact-section {
  padding: var(--space-2xl) 0 var(--space-3xl);
  position: relative;
  z-index: 1;
}

.rg-contact-inner {
  background: var(--gradient-candy);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-glow-pink);
}

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

.rg-contact-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-sm);
}

.rg-contact-text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.rg-contact-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RULES PAGE ──────────────────────────────────────────── */
.rules-section {
  padding: var(--space-2xl) 0 var(--space-3xl);
  position: relative;
  z-index: 1;
}

.rules-symbol-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.symbol-card {
  background: rgba(255, 79, 163, 0.06);
  border: 1px solid rgba(255, 79, 163, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-align: center;
  transition: all var(--transition-fast);
}

.symbol-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 79, 163, 0.1);
}

.symbol-emoji {
  font-size: 2rem;
  margin-bottom: 6px;
}

.symbol-name {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.symbol-value {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.rules-cta-section {
  padding: var(--space-xl) 0 var(--space-3xl);
  position: relative;
  z-index: 1;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: rgba(58, 43, 61, 0.97);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
  margin-top: var(--space-xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 32px var(--space-lg);
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: var(--space-md);
}

.footer-logo .logo-text {
  color: white;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.footer-address {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-email {
  color: var(--accent-pink);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-email:hover {
  color: #ff85c1;
}

.footer-nav-groups {
  display: flex;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.footer-nav-group {
  min-width: 140px;
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-nav-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-nav-link:hover {
  color: var(--accent-pink);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-md) 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-age {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* ── UTILITIES ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* ENDFILE */