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

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f7f7ff;
  background: radial-gradient(circle at top, #2e2a5a 0, #050311 55%, #020108 100%);
  overflow-x: hidden;
}

body.splash-active {
  overflow: hidden;
}

/* Splash overlay */

#splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none; /* turned on by JS on first visit */
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #050315 0, #020109 55%, #000000 100%);
  cursor: grab;
  touch-action: none;
  transition: transform 0.35s ease-out, opacity 0.35s ease-out;
}

#splash-overlay.dragging {
  cursor: grabbing;
}

.splash-content {
  max-width: 1000px;
  width: min(90%, 1000px);
  text-align: center;
}

.splash-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.8);
  user-select: none;
  pointer-events: none;
}

.splash-hint {
  margin-top: 18px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* Page content */

#app {
  min-height: 100vh;
  padding: 32px 20px 40px;
}

.site-header {
  max-width: 960px;
  margin: 0 auto 32px;
  text-align: center;
}

.site-header h1 {
  font-size: clamp(2.5rem, 3.5vw, 3.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tagline {
  margin-top: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.site-main {
  max-width: 960px;
  margin: 0 auto;
}

.hero {
  padding: 24px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(28, 24, 74, 0.95), rgba(12, 9, 40, 0.98));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
}

.hero h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.hero p {
  line-height: 1.6;
  color: rgba(232, 232, 255, 0.92);
}
