@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Syne+Mono&display=swap');

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

body {
  min-height: 100vh;
  background: #06080c;
  font-family: 'Syne Mono', monospace;
  color: #c8a84b;
  user-select: none;
}

#sl-app { min-height: 100vh; padding: 20px; position: relative; }

#sl-hud {
  display: flex; justify-content: space-between; max-width: 640px; margin: 0 auto 20px;
  font-size: 0.75rem;
}
#sl-timer { color: #e74c3c; }

#sl-stage { max-width: 640px; margin: 0 auto; }

#sl-silhouette {
  width: 160px; height: 200px; margin: 0 auto 24px;
  background: #0a0e14; border: 2px solid #2a3540; border-radius: 8px;
  position: relative; overflow: hidden;
}
#sl-silhouette::before {
  content: ''; position: absolute; inset: 20% 25%;
  background: #000; border-radius: 50% 50% 40% 40%;
}

#sl-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.sl-card {
  padding: 16px; background: #101820; border: 1px solid #2a3540;
  border-radius: 8px; cursor: pointer; transition: border-color 0.15s;
  text-align: left;
}
.sl-card:hover { border-color: #c8a84b; }
.sl-card h3 { font-family: 'Bungee', cursive; font-size: 0.85rem; color: #f0d880; margin-bottom: 6px; }
.sl-card p { font-size: 0.65rem; opacity: 0.7; line-height: 1.4; }

.sl-screen {
  position: fixed; inset: 0; z-index: 20;
  display: none; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px; text-align: center; background: rgba(4, 6, 10, 0.96);
}
.sl-screen.active { display: flex; }

.sl-credit { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; opacity: 0.7; margin-bottom: 12px; }
h1 { font-family: 'Bungee', cursive; font-size: clamp(1.4rem, 5vw, 2.2rem); color: #f0d880; margin-bottom: 12px; }
.sl-tagline { font-size: 0.85rem; opacity: 0.85; margin-bottom: 8px; }
.sl-sub { font-size: 0.75rem; line-height: 1.6; opacity: 0.65; margin-bottom: 24px; max-width: 420px; }

button {
  font-family: 'Syne Mono', monospace; font-size: 0.75rem; letter-spacing: 0.15em;
  padding: 12px 28px; color: #fff; background: #2a1018; border: 1px solid rgba(200,168,75,0.4);
  border-radius: 6px; cursor: pointer;
}

.sl-exit { position: fixed; bottom: 12px; right: 14px; font-size: 0.7rem; color: rgba(200,168,75,0.6); text-decoration: none; }
