:root {
  --canvas-bg: #F4F1FA;
  --foreground: #332F3A;
  --muted: #635F69;
  
  --violet: #7C3AED;
  --pink: #DB2777;
  --sky: #0EA5E9;
  --emerald: #10B981;
  --amber: #F59E0B;

  --gradient-primary: linear-gradient(135deg, #A78BFA, #7C3AED);
  --gradient-emerald: linear-gradient(135deg, #5EEAD4, #10B981);
  --gradient-pink: linear-gradient(135deg, #F472B6, #DB2777);
  --gradient-sky: linear-gradient(135deg, #38BDF8, #0EA5E9);
  --gradient-amber: linear-gradient(135deg, #FCD34D, #F59E0B);
  --gradient-text: linear-gradient(135deg, #332F3A 20%, #7C3AED 60%, #DB2777);

  --font-headings: 'Nunito', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* High fidelity claymorphism shadows */
  --clay-shadow-deep: 30px 30px 60px #cdc6d9,
                       -30px -30px 60px #ffffff,
                       inset 10px 10px 20px rgba(124, 58, 237, 0.05),
                       inset -10px -10px 20px rgba(255, 255, 255, 0.8);

  --clay-shadow-card: 16px 16px 32px rgba(160, 150, 180, 0.15),
                      -10px -10px 24px rgba(255, 255, 255, 0.9),
                      inset 6px 6px 12px rgba(124, 58, 237, 0.03),
                      inset -6px -6px 12px rgba(255, 255, 255, 1);

  --clay-shadow-button-primary: 8px 8px 16px rgba(16, 185, 129, 0.25),
                               -6px -6px 12px rgba(255, 255, 255, 0.5),
                               inset 3px 3px 6px rgba(255, 255, 255, 0.4),
                               inset -3px -3px 6px rgba(0, 0, 0, 0.15);

  --clay-shadow-button-secondary: 8px 8px 16px rgba(160, 150, 180, 0.15),
                                 -6px -6px 12px rgba(255, 255, 255, 0.8),
                                 inset 3px 3px 6px rgba(255, 255, 255, 0.6),
                                 inset -3px -3px 6px rgba(0, 0, 0, 0.08);

  --clay-shadow-pressed: inset 6px 6px 12px #d9d4e3,
                         inset -6px -6px 12px #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--canvas-bg);
  color: var(--foreground);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--canvas-bg);
}
::-webkit-scrollbar-thumb {
  background: #E1DBEC;
  border-radius: 5px;
  border: 3px solid var(--canvas-bg);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.5);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--violet);
}

/* 3D Blobs in Background */
.blob-container {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -10;
}

.blob {
  position: absolute;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.blob-1 {
  background: var(--violet);
  top: -15%;
  left: -10%;
  animation: floatSlow 12s infinite ease-in-out;
}

.blob-2 {
  background: var(--pink);
  bottom: -10%;
  right: -5%;
  animation: floatSlowDelayed 14s infinite ease-in-out;
}

.blob-3 {
  background: var(--sky);
  top: 30%;
  right: -15%;
  animation: floatSlow 16s infinite ease-in-out;
}

.blob-4 {
  background: var(--emerald);
  bottom: 25%;
  left: -15%;
  animation: floatSlowDelayed 18s infinite ease-in-out;
}

/* Claymorphic Animations */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes floatSlowDelayed {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(-5deg); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes pulseIndicator {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}

.animate-breathe {
  animation: breathe 6s infinite ease-in-out;
}
.animate-breathe.delay-1 { animation-delay: 1.5s; }
.animate-breathe.delay-2 { animation-delay: 3s; }
.animate-breathe.delay-3 { animation-delay: 4.5s; }

/* Utilities */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* High Fidelity Clay Card */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--clay-shadow-card);
  border-radius: 32px;
}

/* Header Styles */
.forest-header {
  position: fixed;
  top: 24px;
  left: 24px;
  right: 24px;
  width: calc(100% - 48px);
  z-index: 1000;
  padding: 8px 16px;
  box-sizing: border-box;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-emerald);
  box-shadow: var(--clay-shadow-button-primary);
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 20px;
  transition: all 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--violet);
  background: rgba(124, 58, 237, 0.08);
  box-shadow: inset 2px 2px 6px rgba(124, 58, 237, 0.1);
}

/* Premium Squishy Buttons */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 20px;
  font-family: var(--font-headings);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-emerald);
  color: #FFFFFF;
  box-shadow: var(--clay-shadow-button-primary);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px rgba(16, 185, 129, 0.35),
              -8px -8px 16px rgba(255, 255, 255, 0.6),
              inset 3px 3px 6px rgba(255, 255, 255, 0.4),
              inset -3px -3px 6px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: translateY(1px) scale(0.93);
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.15),
              inset -4px -4px 8px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--foreground);
  box-shadow: var(--clay-shadow-button-secondary);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px rgba(160, 150, 180, 0.25),
              -8px -8px 16px rgba(255, 255, 255, 0.9),
              inset 3px 3px 6px rgba(255, 255, 255, 0.6),
              inset -3px -3px 6px rgba(0, 0, 0, 0.08);
}

.btn-secondary:active {
  transform: translateY(1px) scale(0.93);
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.08),
              inset -4px -4px 8px rgba(255, 255, 255, 0.8);
}

/* Hover Lift Utilities */
.hover-lift {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 24px 24px 48px rgba(160, 150, 180, 0.22),
              -12px -12px 30px rgba(255, 255, 255, 0.95),
              inset 6px 6px 12px rgba(124, 58, 237, 0.03),
              inset -6px -6px 12px rgba(255, 255, 255, 1);
}

/* Hero Section */
.hero-section {
  padding: 180px 0 80px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: var(--violet);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: var(--clay-shadow-button-secondary);
  margin-bottom: 24px;
}

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

.hero-title {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--foreground);
  margin-bottom: 20px;
}

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

.hero-description {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 35px;
  max-width: 580px;
}

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

.disclaimer-micro {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Clay Photo Wrapper */
.hero-preview-frame {
  padding: 24px;
  border-radius: 40px;
}

.clay-image {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: inset 4px 4px 8px rgba(255,255,255,0.4),
              4px 4px 12px rgba(160,150,180,0.15);
}

.preview-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  margin-top: 20px;
}

.preview-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

/* Stats Section */
.stats-section {
  padding: 40px 0 80px;
}

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

.clay-orb {
  background: #FFFFFF;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  box-shadow: var(--clay-shadow-deep);
  border: 1px solid rgba(255,255,255,0.8);
}

.stat-number {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--violet);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 140px;
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--foreground);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--muted);
}

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

.feature-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 32px;
}

.feature-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: #FFFFFF;
  box-shadow: var(--clay-shadow-button-primary);
}

.gradient-emerald-bg { background: var(--gradient-emerald); }
.gradient-pink-bg { background: var(--gradient-pink); }
.gradient-sky-bg { background: var(--gradient-sky); }

.feature-card h3 {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  font-size: 1rem;
}

/* Banner Section */
.quick-game-banner {
  padding: 80px 0 120px;
}

.game-banner-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 60px;
  border-radius: 48px;
  overflow: hidden;
}

.banner-title {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.banner-description {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 30px;
}

.banner-image {
  border-radius: 32px;
  max-width: 100%;
}

/* Game Arena Wrapper */
.game-arena-wrapper {
  padding: 160px 0 80px;
}

.game-title-group {
  text-align: center;
  margin-bottom: 40px;
}

.game-title-group h1 {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 10px;
}

.game-title-group p {
  color: var(--muted);
  font-size: 1.1rem;
}

.game-frame-container {
  padding: 16px;
  border-radius: 40px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.45);
}

.game-frame-container iframe {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: 28px;
  box-shadow: inset 4px 4px 12px rgba(0,0,0,0.1);
  display: block;
  background: #000;
}

.game-control-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  border-radius: 24px;
}

.control-left, .control-right {
  display: flex;
  gap: 12px;
}

.control-btn {
  background: #FFFFFF;
  border: none;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--foreground);
  padding: 12px 24px;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: var(--clay-shadow-button-secondary);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 8px;
}

.control-btn:hover {
  transform: translateY(-3px);
  box-shadow: 10px 10px 20px rgba(160, 150, 180, 0.2), -6px -6px 12px rgba(255,255,255,0.9);
}

.control-btn:active {
  transform: translateY(1px) scale(0.95);
  box-shadow: var(--clay-shadow-pressed);
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(51, 47, 58, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.modal-box {
  width: 100%;
  max-width: 800px;
  padding: 50px;
  position: relative;
  border-radius: 40px;
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--clay-shadow-button-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-modal:hover {
  transform: scale(1.1);
  box-shadow: 8px 8px 16px rgba(160, 150, 180, 0.2);
}

.modal-title {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

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

.rules-card {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--clay-shadow-deep);
  border: 1px solid rgba(255,255,255,0.8);
}

.rules-card h4 {
  font-family: var(--font-headings);
  font-weight: 850;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--violet);
}

.rules-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Legal Information Styles */
.legal-wrapper {
  padding: 160px 0 80px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.legal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-tab {
  background: #FFFFFF;
  border: none;
  padding: 16px 24px;
  border-radius: 20px;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--clay-shadow-button-secondary);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sidebar-tab:hover {
  transform: translateY(-3px);
  color: var(--foreground);
}

.sidebar-tab.active {
  background: var(--gradient-primary);
  color: #FFFFFF;
  box-shadow: 8px 8px 16px rgba(124, 58, 237, 0.25),
              -6px -6px 12px rgba(255, 255, 255, 0.5),
              inset 3px 3px 6px rgba(255, 255, 255, 0.4),
              inset -3px -3px 6px rgba(0, 0, 0, 0.15);
}

.legal-content-panel {
  padding: 50px;
  border-radius: 40px;
}

.legal-content-section {
  display: none;
}

.legal-content-section.active {
  display: block;
}

.legal-content-section h1 {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 2.8rem;
  margin-bottom: 24px;
}

.legal-content-section h3 {
  font-family: var(--font-headings);
  font-weight: 850;
  font-size: 1.4rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content-section p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-wrapper {
  padding: 160px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.contact-info-panel h1 {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-info-panel p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 35px;
}

.info-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  margin-bottom: 20px;
}

.info-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--clay-shadow-button-secondary);
}

.info-card-content h4 {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.info-card-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.info-card-content a {
  color: var(--violet);
  text-decoration: none;
  font-weight: 700;
}

.contact-form-panel {
  padding: 50px;
  border-radius: 40px;
}

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

.form-label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: #EFEBF5;
  border: none;
  border-radius: 20px;
  padding: 16px 20px;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: var(--clay-shadow-pressed);
  transition: all 0.25s ease;
  outline: none;
}

.form-input:focus {
  background: #ffffff;
  box-shadow: 12px 12px 24px rgba(160, 150, 180, 0.15),
              -8px -8px 16px rgba(255, 255, 255, 0.9),
              inset 3px 3px 6px rgba(124, 58, 237, 0.03),
              inset -3px -3px 6px rgba(255, 255, 255, 1);
}

textarea.form-input {
  height: 150px;
  resize: vertical;
}

.form-success-alert {
  display: none;
  background: #E8F8F5;
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 24px;
  border-radius: 24px;
  margin-bottom: 24px;
  text-align: center;
}

/* Vault Page */
.vault-wrapper {
  padding: 160px 0 80px;
}

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

.vault-hero h1 {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 3.2rem;
  margin-bottom: 16px;
}

.vault-hero p {
  color: var(--muted);
  font-size: 1.15rem;
}

.vault-dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.dashboard-panel {
  padding: 40px;
  border-radius: 40px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.panel-header h3 {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.6rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E8F8F5;
  color: #10B981;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 12px;
}

.logo-icon-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  display: block;
}

.vault-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.metric-card {
  padding: 24px;
  border-radius: 24px;
}

.metric-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.metric-value {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--violet);
  margin-bottom: 16px;
}

.progress-track {
  background: #EFEBF5;
  height: 14px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--clay-shadow-pressed);
}

.progress-fill {
  background: var(--gradient-primary);
  width: 75%;
  height: 100%;
  border-radius: 20px;
  box-shadow: inset 1px 1px 3px rgba(255,255,255,0.4);
}

.vault-info-box {
  background: rgba(124, 58, 237, 0.05);
  border: 1.5px dashed rgba(124, 58, 237, 0.2);
  padding: 24px;
  border-radius: 24px;
}

.vault-info-box h4 {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.vault-info-box p {
  font-size: 0.95rem;
  color: var(--muted);
}

.challenge-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.challenge-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
}

.challenge-details h4 {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.challenge-details p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.challenge-reward {
  font-family: var(--font-headings);
  font-weight: 900;
  color: var(--emerald);
  font-size: 1.1rem;
  background: #E8F8F5;
  padding: 8px 16px;
  border-radius: 12px;
}

/* Footer Section */
.forest-footer {
  margin-top: 100px;
  padding: 60px 0 40px;
  border-radius: 48px 48px 0 0;
}

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

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-column p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 340px;
}

.footer-column h4 {
  font-family: var(--font-headings);
  color: var(--foreground);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.footer-column ul li a:hover {
  color: var(--violet);
}

.footer-bottom {
  border-top: 1.5px dashed #E1DBEC;
  padding-top: 40px;
  text-align: center;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-copyright {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .game-banner-container {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .banner-image-wrapper {
    display: none;
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .vault-dashboard-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .game-control-bar {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .control-left, .control-right {
    justify-content: center;
  }
}