/* Boardwalk Arcade hub — candy-gloss to match the games it hosts
   (reuses Boardwalk Putt's button/shadow recipe + palette). */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { min-height: 100%; font-family: 'Segoe UI', system-ui, sans-serif; }
body {
  background: linear-gradient(180deg, #ff9ec2 0%, #ffd166 48%, #4db9ff 120%);
  background-attachment: fixed;
  color: #23445c;
  padding: 24px 16px 40px;
}
.hide { display: none !important; }

#wrap { max-width: 960px; margin: 0 auto; }

header { text-align: center; margin-bottom: 18px; }
header h1 { font-size: clamp(34px, 7vw, 58px); color: #fff; text-shadow: 0 4px 0 rgba(0,0,0,.18); }
.sub { font-weight: 700; color: #5a3a1a; margin-top: 4px; }

/* daily strip */
#daily-strip {
  background: #fff; border-radius: 18px; padding: 14px 18px; margin: 0 auto 20px;
  max-width: 460px; box-shadow: 0 6px 0 rgba(0,0,0,.18);
}
#daily-strip h3 { font-size: 16px; margin-bottom: 8px; }
.drow { display: flex; justify-content: space-between; font-size: 15px; padding: 3px 0; }
.drow b { color: #d94a80; }

/* game cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card {
  background: #fff; border-radius: 22px; padding: 22px 20px 18px; text-decoration: none;
  color: #23445c; box-shadow: 0 7px 0 rgba(0,0,0,.2); text-align: center;
  border-top: 8px solid var(--accent, #3fc463); display: flex; flex-direction: column; align-items: center;
  transition: transform .08s;
}
.card:active { transform: translateY(3px); box-shadow: 0 4px 0 rgba(0,0,0,.2); }
.card .emoji { font-size: 52px; line-height: 1; margin-bottom: 6px; }
.card h2 { font-size: 22px; }
.card .tag { font-size: 13px; color: #6a8098; margin: 6px 0 12px; min-height: 34px; }
.stats { display: flex; gap: 10px; width: 100%; margin-bottom: 14px; }
.stat { flex: 1; background: #f2f6fb; border-radius: 12px; padding: 8px 4px; display: flex; flex-direction: column; }
.stat b { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: #8aa0b4; }
.stat i { font-style: normal; font-size: 20px; font-weight: 800; color: #23445c; }
.play {
  background: var(--accent, #3fc463); color: #fff; font-weight: 800; font-size: 17px;
  border-radius: 14px; padding: 12px 0; width: 100%; box-shadow: 0 4px 0 rgba(0,0,0,.22);
}
/* coming-soon tile — deliberately not a link */
.card.soon { border-top-color: #cbd6e2; opacity: .85; cursor: default; justify-content: center; }
.card.soon .tag { min-height: 0; }

footer { text-align: center; margin-top: 26px; }
.note { color: rgba(0,0,0,.5); font-size: 12px; }
