/* === Base NeoSamurai Landing === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.logo-container {
  animation: fadeIn 2s ease-in-out;
}

.logo {
  width: 90vw;
  max-width: 1200px;
  min-width: 300px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.3));
}


@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
