/* Penny Drop Games — placeholder styles */

:root {
  --bg: #0d0b10;
  --bg-soft: #151220;
  --ink: #f3efe8;
  --ink-dim: #a49db2;
  --copper: #c98a4b;
  --copper-bright: #f0b573;
  --font-display: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 1.5rem;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Soft radial light behind the content */
.glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 50% -10%, rgba(201, 138, 75, 0.18), transparent 70%),
    radial-gradient(40rem 30rem at 80% 110%, rgba(90, 70, 160, 0.20), transparent 70%);
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: auto;
  text-align: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.mark {
  width: 4.5rem;
  height: 4.5rem;
  color: var(--copper);
  animation: drop 4s cubic-bezier(0.3, 0.9, 0.4, 1) infinite;
  filter: drop-shadow(0 0 1.5rem rgba(201, 138, 75, 0.35));
}

@keyframes drop {
  0%, 60%, 100% { transform: translateY(0); }
  15%           { transform: translateY(-0.9rem); }
  30%           { transform: translateY(0); }
  40%           { transform: translateY(-0.35rem); }
  50%           { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .mark { animation: none; }
}

.eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper-bright);
}

h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0 auto 2rem;
  max-width: 30rem;
  color: var(--ink-dim);
  font-size: 1.05rem;
}

.contact {
  margin: 0;
  font-size: 0.95rem;
}

a {
  color: var(--copper-bright);
  text-decoration-color: rgba(240, 181, 115, 0.4);
  text-underline-offset: 0.25em;
}

a:hover,
a:focus-visible {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.foot {
  position: relative;
  z-index: 1;
  color: var(--ink-dim);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
