/* === Analardo Games ===
   Dark one-pager. Accent: #e87a2e.
   Fonts: Rubik (title), Inter (body), Playfair Display (claim), Space Mono (links). */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-snap-type: y mandatory; }

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* --- Header (fixed floating) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 1.25rem 1.5rem;
}

.logo {
  font-size: 1.75rem;
  color: #e87a2e;
  display: inline-block;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.8; }

/* --- Full-screen sections --- */
.section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  scroll-snap-align: start;
}

.content {
  max-width: 40rem;
  width: 100%;
}

/* --- Intro --- */
#intro {
  justify-content: center;
  position: relative;
  padding-bottom: 6rem; /* space for absolute scroll button */
}

.title {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}

.subtitle s {
  text-decoration-color: #e87a2e;
  margin-right: 0.4em;
}

.accent { color: #e87a2e; }

.claim {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  opacity: 0.65;
  max-width: 32ch;
  margin: 0 auto;
}

/* --- Scroll button --- */
.scroll-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #e87a2e;
  color: #e87a2e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.scroll-btn:hover { background: rgba(232, 122, 46, 0.1); }

#intro .scroll-btn {
  position: absolute;
  bottom: 2rem;
}

/* --- Games --- */
#games .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.game-logo {
  max-width: min(20rem, 80%);
  margin: 2rem 0;
}

.game-description {
  line-height: 1.7;
  opacity: 0.75;
  max-width: 40ch;
  margin-bottom: 1.5rem;
}

.game-link {
  font-family: 'Space Mono', monospace;
  color: #e87a2e;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.game-link:hover { border-bottom-color: #e87a2e; }

/* --- Footer --- */
.footer {
  padding: 3rem 1.5rem;
  opacity: 0.4;
  font-size: 0.875rem;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .header { padding: 1rem; }
}
