/* ========================================
   VELACIRCLECREW.INK — MONSTER FUN CORE
   Design System + Full Stylesheet
   ======================================== */

/* --- CSS Variables --- */
:root {
  /* Base Colors */
  --bg-primary: #0f0f0f;
  --bg-secondary: #1c1c1c;
  --bg-tertiary: #252525;

  /* Accent Colors */
  --monster-purple: #a855f7;
  --slime-green: #22c55e;
  --candy-orange: #fb923c;
  --monster-red: #ef4444;
  --neon-yellow: #facc15;

  /* Gradients */
  --gradient-monster: linear-gradient(135deg, #a855f7, #22c55e);
  --gradient-candy: linear-gradient(135deg, #fb923c, #ef4444);
  --gradient-neon: linear-gradient(135deg, #facc15, #a855f7);

  /* Glows */
  --glow-purple: rgba(168, 85, 247, 0.45);
  --glow-green: rgba(34, 197, 94, 0.45);
  --glow-orange: rgba(251, 146, 60, 0.45);

  /* Surface */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 16px;

  /* Typography */
  --text-primary: #f8fafc;
  --text-secondary: #d4d4d8;
  --text-muted: #71717a;

  /* Fonts */
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-narrow: 800px;
  --padding-desktop: 24px;
  --padding-mobile: 16px;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  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 {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--padding-desktop);
  width: 100%;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.text-center {
  text-align: center;
}

.muted-text {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Gradient Texts --- */
.gradient-text {
  background: var(--gradient-monster);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

/* ========================================
   HEADER — FLOATING MONSTER NAV
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px var(--padding-desktop);
  transition: var(--transition-normal);
}

.header.scrolled {
  padding: 8px var(--padding-desktop);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  position: relative;
}

.header-inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-full);
  padding: 1px;
  background: var(--gradient-monster);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
  z-index: 10;
}

.logo-icon {
  font-size: 1.6rem;
  animation: monsterBounce 2s ease-in-out infinite;
}

.logo-dot {
  color: var(--monster-purple);
}

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

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

.nav-link:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
  background: var(--glass-bg);
}

.nav-link.active {
  color: var(--text-primary);
  background: rgba(168, 85, 247, 0.15);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

/* --- Menu Toggle --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: var(--gradient-monster);
  color: #fff;
  box-shadow: 0 4px 20px var(--glow-purple);
}

.btn-primary:hover {
  box-shadow: 0 8px 35px var(--glow-purple), 0 0 60px rgba(168, 85, 247, 0.2);
}

.btn-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

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

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-nav {
  padding: 10px 22px;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
}

.btn-full {
  width: 100%;
}

.btn-emoji {
  font-size: 1.1em;
  transition: var(--transition-bounce);
}

.btn:hover .btn-emoji {
  transform: scale(1.2) rotate(10deg);
}

/* ========================================
   HERO — MONSTER WORLD
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

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

.floating-shape {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: floatAround 12s ease-in-out infinite;
}

.shape-1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 3rem; }
.shape-2 { top: 20%; right: 10%; animation-delay: -2s; font-size: 2.5rem; }
.shape-3 { bottom: 30%; left: 8%; animation-delay: -4s; }
.shape-4 { top: 50%; right: 5%; animation-delay: -6s; font-size: 2.5rem; }
.shape-5 { bottom: 15%; right: 15%; animation-delay: -8s; font-size: 3rem; }
.shape-6 { top: 35%; left: 20%; animation-delay: -3s; }
.shape-7 { bottom: 40%; right: 25%; animation-delay: -5s; font-size: 2rem; }
.shape-8 { top: 70%; left: 15%; animation-delay: -7s; }

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: glowPulse 6s ease-in-out infinite;
}

.orb-purple {
  width: 400px;
  height: 400px;
  background: var(--monster-purple);
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.orb-green {
  width: 350px;
  height: 350px;
  background: var(--slime-green);
  bottom: 10%;
  right: -5%;
  animation-delay: -2s;
}

.orb-orange {
  width: 300px;
  height: 300px;
  background: var(--candy-orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -4s;
  opacity: 0.15;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slime-green);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-image-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 80px rgba(168, 85, 247, 0.1), 0 0 80px rgba(168, 85, 247, 0.1);
  pointer-events: none;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: fadeInUp 1s ease 2s both;
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
  font-size: 1.2rem;
}

/* ========================================
   SECTIONS — SHARED
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* ========================================
   GAME SECTION
   ======================================== */
.game-section {
  padding: 100px 0;
  position: relative;
}

.game-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
}

.game-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-monster);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.game-frame-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--bg-primary);
}

.game-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--glass-border);
}

.game-info-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.game-tag {
  font-size: 0.8rem;
  padding: 4px 12px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-full);
  color: var(--slime-green);
  font-weight: 600;
}

.game-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.game-players {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.game-preview-image {
  max-width: 800px;
  margin: 40px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0.6;
}

.preview-img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* ========================================
   FEATURES — MONSTER CARDS
   ======================================== */
.features {
  padding: 100px 0;
}

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

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(168, 85, 247, 0.05);
}

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

.feature-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-icon-wrap.gradient-monster {
  background: var(--gradient-monster);
}

.feature-icon-wrap.gradient-candy {
  background: var(--gradient-candy);
}

.feature-icon-wrap.gradient-neon {
  background: var(--gradient-neon);
}

.feature-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-emoji {
  font-size: 2rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 60px 0 120px;
}

.cta-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: var(--gradient-candy);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  pointer-events: none;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  font-size: 3rem;
  opacity: 0.08;
  animation: floatAround 15s ease-in-out infinite;
}

.cta-shape:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.cta-shape:nth-child(2) { top: 20%; right: 15%; animation-delay: -3s; }
.cta-shape:nth-child(3) { bottom: 15%; left: 20%; animation-delay: -6s; }
.cta-shape:nth-child(4) { bottom: 25%; right: 10%; animation-delay: -9s; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-card .btn {
  position: relative;
  z-index: 1;
}

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-content {
  padding: 40px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.about-grid.reverse {
  direction: rtl;
}

.about-grid.reverse > * {
  direction: ltr;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.rounded-image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  width: 100%;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-platform {
  max-width: 600px;
  margin: 0 auto;
}

.about-platform h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-content {
  padding: 40px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.glass-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.glass-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--monster-purple);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

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

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

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

.contact-info-card {
  margin-bottom: 24px;
}

.contact-info-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
}

.info-item:last-child {
  border-bottom: none;
}

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

.info-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.info-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.quick-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.contact-image {
  width: 100%;
  margin-top: 0;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
  padding: 20px 0 100px;
}

.legal-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 8px;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
}

.legal-nav-link {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-bounce);
  white-space: nowrap;
}

.legal-nav-link:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
}

.legal-nav-link.active {
  background: var(--gradient-monster);
  color: #fff;
}

.legal-body {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.legal-notice {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal-body h2:first-of-type {
  margin-top: 0;
}

.legal-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.legal-body ul li {
  color: var(--text-secondary);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.7;
}

.legal-body ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--monster-purple);
  font-weight: 700;
}

.legal-body a {
  color: var(--monster-purple);
  text-decoration: underline;
  text-decoration-color: rgba(168, 85, 247, 0.3);
  text-underline-offset: 3px;
}

.legal-body a:hover {
  text-decoration-color: var(--monster-purple);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition-normal);
}

.footer-links a:hover {
  color: var(--monster-purple);
  transform: translateX(4px);
}

.footer-info-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 4px 0;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Monster Bounce */
@keyframes monsterBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Float Around */
@keyframes floatAround {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -30px) rotate(5deg);
  }
  50% {
    transform: translate(-10px, -50px) rotate(-3deg);
  }
  75% {
    transform: translate(-30px, -20px) rotate(4deg);
  }
}

/* Glow Pulse */
@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

/* Pulse */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Scroll Bounce */
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Fade In */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Fade In Up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.8s ease both;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease both;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .about-grid {
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--padding-mobile);
  }

  .header {
    padding: 10px var(--padding-mobile);
  }

  .header-inner {
    padding: 10px 16px;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.3rem;
    padding: 12px 24px;
  }

  .btn-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .game-section {
    padding: 60px 0;
  }

  .features {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-grid.reverse {
    direction: ltr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-card {
    padding: 48px 24px;
  }

  .legal-body {
    padding: 24px;
  }

  .legal-nav {
    border-radius: var(--radius-lg);
  }

  .legal-nav-link {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .game-card-info {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .game-info-left {
    justify-content: center;
  }

  .feature-card {
    padding: 24px;
  }

  .glass-card {
    padding: 24px;
  }
}