/* NeuraNest Cosmos Learning Universe - Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #00031a 0%, #10173a 50%, #2d3a8c 100%);
  color: #f0f4ff;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Cosmos-themed styles */
.cosmos-gradient {
  background: linear-gradient(135deg, #8a3ffc 0%, #d43ffc 50%, #00f6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Base responsive design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
}