/* ============================================
   LITTLE LIMP GAMES — coming soon
   ============================================ */

:root {
  /* Slightly warmer ground than the full site — lamplight, not boardroom */
  --ground: #1d1a23;
  --ground-2: #25212a;
  --paper: #f4ede3;
  --paper-dim: rgba(244, 237, 227, 0.7);
  --paper-fade: rgba(244, 237, 227, 0.42);
  --paper-whisper: rgba(244, 237, 227, 0.22);

  --honey: #c9943a;
  --honey-warm: #d9a64a;
  --sage: #7e9478;
  --plum: #6b6880;

  --rule: rgba(201, 148, 58, 0.18);
  --rule-strong: rgba(201, 148, 58, 0.42);

  --content-w: 640px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--ground);
  color: var(--paper);
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;

  /* Atmospheric depth — a single soft glow from the top, like a desk lamp */
  background-image:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(201, 148, 58, 0.13), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 110%, rgba(126, 148, 120, 0.06), transparent 60%);
  background-attachment: fixed;
}

/* Paper-like grain so the dark ground isn't flat */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.96  0 0 0 0 0.93  0 0 0 0 0.89  0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   LAYOUT
   ============================================ */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding: 36px 28px 50px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: var(--content-w);
  margin: 0 auto;
  width: 100%;
  padding: 40px 0;
}

/* ============================================
   TOP RULE — date stamp, top corners
   ============================================ */

.frame {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: 'League Spartan', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper-fade);
}
.frame .left, .frame .right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.frame .right { text-align: right; }

/* ============================================
   COMING SOON BAR
   ============================================ */

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'League Spartan', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 36px;
}
.coming-soon .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 12px rgba(201, 148, 58, 0.7);
  animation: pulse 2.6s ease-in-out infinite;
}
.coming-soon .line {
  width: 28px;
  height: 1px;
  background: var(--honey);
  opacity: 0.5;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px rgba(201, 148, 58, 0.7); }
  50% { opacity: 0.5; transform: scale(0.85); box-shadow: 0 0 4px rgba(201, 148, 58, 0.3); }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: clamp(46px, 8vw, 84px);
  line-height: 0.98;
  color: var(--paper);
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
h1 .accent { color: var(--honey); }

.lede {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.55;
  color: var(--paper-dim);
  max-width: 480px;
  margin: 0 auto 44px;
}

.fineprint {
  font-family: 'League Spartan', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper-whisper);
}

/* ============================================
   DIVIDER ORNAMENT
   ============================================ */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 44px;
  width: 100%;
  max-width: 380px;
}
.ornament .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule-strong), transparent);
}
.ornament .glyph {
  color: var(--honey);
  font-size: 14px;
  opacity: 0.85;
}

/* ============================================
   LOGO
   ============================================ */

.logo-wrap {
  margin-bottom: 38px;
  position: relative;
}
.logo-wrap img {
  height: 76px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  font-family: 'League Spartan', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.footer .left, .footer .right {
  display: flex;
  gap: 26px;
  align-items: center;
}
.footer a {
  color: var(--paper-fade);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer a:hover { color: var(--honey); }
.footer .cat-mark {
  color: var(--paper-whisper);
}

@media (max-width: 700px) {
  body { font-size: 17px; }
  .page { padding: 24px 22px 36px; }
  .frame { font-size: 9px; letter-spacing: 0.24em; }
  .lede { font-size: 19px; }
  .logo-wrap img { height: 60px; }
  .footer { 
    flex-direction: column; 
    gap: 18px; 
    text-align: center;
    font-size: 9px;
  }
  .footer .left, .footer .right { flex-wrap: wrap; justify-content: center; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon .dot { animation: none; }
  html { scroll-behavior: auto; }
}
