:root {
    --ink: #20262b;
    --muted: #657079;
    --cream: #f7e7f6;
    --paper: #fffdf8;
    --orange: #7a3af2;
    --yellow: #18b7df;
    --blue: #2a1cef;
    --line: rgba(32, 38, 43, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "Trebuchet MS", "Helvetica Neue", sans-serif; line-height: 1.6; }
.hero { min-height: 72vh; padding: clamp(2rem, 6vw, 5.5rem) max(1.5rem, 8vw); display: flex; align-items: center; justify-content: space-between; gap: 3rem; overflow: hidden; background-color: var(--orange); background-image: radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px); background-size: 18px 18px; }
.hero-content { max-width: 680px; animation: rise-in .8s ease both; }
.eyebrow, .game-number { margin: 0 0 .7rem; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero .eyebrow { color: #fff7e6; }
h1, h2, h3 { margin: 0; line-height: .98; font-family: Georgia, serif; font-weight: 400; }
h1 { color: #fffdf8; font-size: clamp(4rem, 11vw, 9rem); letter-spacing: -.06em; }
h1 span { color: var(--yellow); }
.hero-intro { max-width: 450px; margin: 2rem 0; color: #fff7e6; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-link { color: var(--ink); font-weight: 700; text-decoration: none; }
.hero-link span { display: inline-block; margin-left: .5rem; font-size: 1.3rem; }
.hero-character { width: clamp(150px, 24vw, 310px); filter: drop-shadow(10px 14px 0 rgba(32,38,43,.2)); animation: float-in 1s .15s ease both; }
main { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: clamp(4rem, 8vw, 8rem) 0; }
.about { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; border-bottom: 1px solid var(--line); }
.about h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
.about h2 em { color: var(--orange); }
.about-copy { max-width: 560px; font-size: 1.1rem; color: var(--muted); }
.about-copy p:first-child { margin-top: 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.5rem; }
.section-heading h2, .closing-row h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.section-heading > p { max-width: 230px; margin: 0; color: var(--muted); }
.game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.game-card { overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); }
.game-card--sun .game-images { background: var(--yellow); } /* not in use */
.game-card--blue .game-images { background: var(--blue); } /* not in use */
.game-images-horizontal { display: grid; grid-template-rows: repeat(2, 1fr); gap: 1rem; padding: 1.5rem; }
.game-images-horizontal img { width: 100%; aspect-ratio: 2.2 / 1; object-fit: cover; border: 4px solid var(--paper); border-radius: 3px; box-shadow: 5px 5px 0 rgba(32,38,43,.12); }
.game-images-vertical { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.5rem; }
.game-images-vertical img { width: 100%; aspect-ratio: 1 / 1.9; object-fit: cover; border: 4px solid var(--paper); border-radius: 3px; box-shadow: 5px 5px 0 rgba(32,38,43,.12); }
.game-details { padding: 2rem; }
.game-number { color: var(--orange); }
.game-details h3 { margin-bottom: 1rem; font-size: 2.6rem; }
.game-details p { color: var(--muted); }
.game-note { padding-top: 1rem; border-top: 1px solid var(--line); font-size: .9rem; }
.closing-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; padding-top: 0; }
.privacy, .contact { padding: 2.5rem; border-top: 5px solid var(--orange); background: var(--paper); }
.contact { border-color: var(--blue); }
.closing-row h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.5rem); }
.closing-row p:last-child { margin-bottom: 0; color: var(--muted); }
.contact a { color: var(--ink); text-decoration-color: var(--orange); text-decoration-thickness: 3px; text-underline-offset: 5px; }
.contact a span { color: var(--orange); }
footer { display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem max(1.5rem, 8vw); color: #fff7e6; background: var(--ink); font-size: .8rem; }
footer p { margin: 0; }
@keyframes rise-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float-in { from { opacity: 0; transform: translateY(24px) rotate(4deg); } to { opacity: 1; transform: translateY(0) rotate(4deg); } }
@media (max-width: 700px) {
    .hero { min-height: auto; align-items: flex-start; flex-direction: column; }
    .hero-character { align-self: flex-end; width: 150px; margin-top: -2rem; }
    .about, .closing-row, .game-grid { grid-template-columns: 1fr; }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 1rem; }
    .game-images { padding: 1rem; gap: .7rem; }
    .game-details, .privacy, .contact { padding: 1.5rem; }
    footer { display: block; }
    footer p + p { margin-top: .4rem; }
}
