/* /public/styles/main.css */
:root {
  --color-neon: #00f2ff;
  --color-store: #e4f1ff;
  --color-night: #1a1a2e;
  --color-text: #e0e0e0;
  --gradient-store: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
 }
 


 .container {
  max-width: 900px;  /* Match your timeline width */
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;  /* Reduced padding for mobile */
  box-sizing: border-box;
}


 body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
  
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-store);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
 }
 
 @keyframes glow {
  from { text-shadow: 0 0 20px rgba(0, 242, 255, 0.3); }
  to { text-shadow: 0 0 30px rgba(0, 242, 255, 0.5); }
 }