.gogo-app {
  min-height: 100vh;
 
  color: white;
  font-family: system-ui, -apple-system, sans-serif;
}

.demo-content {
 
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.demo-info h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.demo-info p {
  color: #a0a0a0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature p {
  color: #a0a0a0;
  font-size: 0.9rem;
  margin: 0;
}
