:root {
  color-scheme: dark;
  --background: #060c13;
  --text: #f5f7fa;
  --muted: #b6bfcc;
  --blue: #169bff;
  --gold: #d4af37;
  --gold-light: #f0d885;
  --line: rgba(185, 210, 234, .17);
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: var(--text);
}
* { box-sizing: border-box; }
html { min-width: 280px; scroll-behavior: smooth; }
body { margin: 0; min-height: 100svh; font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
::selection { background: #d4af37; color: #060c13; }
a { color: inherit; }
.artwork { position: absolute; inset: 0 0 auto; min-height: 880px; height: 100svh; z-index: -1; background: linear-gradient(90deg, #060c13 0%, rgba(6,12,19,.92) 19%, rgba(6,12,19,.65) 43%, rgba(6,12,19,.04) 76%), linear-gradient(0deg, #060c13 0%, rgba(6,12,19,.85) 11%, transparent 42%), url("assets/dragon-background.webp") center right / cover no-repeat; }
.page { width: min(1320px, calc(100% - 112px)); margin: 0 auto; min-height: 100svh; display: flex; flex-direction: column; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0 22px; border-bottom: 1px solid var(--line); }
.brand-logo { width: 102px; height: 102px; object-fit: contain; }
.brand-mantra { margin: 0; font-size: .875rem; letter-spacing: .15em; text-transform: uppercase; color: #dbe1e8; }
.brand-mantra span { color: var(--gold); display: inline-block; padding: 0 .55rem; }
main { flex: 1; }
.hero { min-height: 558px; display: flex; align-items: center; padding: 69px 0 82px; }
.hero-copy { max-width: 790px; animation: arrive .8s ease-out both; }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 14px; color: var(--gold-light); font-size: .875rem; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { display: block; width: 34px; height: 1px; background: var(--gold); flex-shrink: 0; }
h1 { font-family: "Cinzel", Georgia, serif; font-size: clamp(2.7rem, 5.45vw, 5.15rem); font-weight: 500; line-height: 1.15; letter-spacing: -.036em; margin: 0 0 26px; text-wrap: balance; }
h1 em { font-style: normal; color: var(--gold-light); }
.intro { max-width: 530px; margin: 0 0 32px; font-size: 1.0625rem; line-height: 1.85; color: var(--muted); text-wrap: pretty; }
.shop-button { display: inline-flex; align-items: center; justify-content: center; gap: 36px; min-height: 58px; padding: 14px 23px; border: 1px solid #eac769; border-radius: 3px; background: linear-gradient(115deg, #edd68a, #d3ac43); color: #15130c; font-size: 1rem; font-weight: 600; text-decoration: none; box-shadow: 0 4px 30px rgba(212,175,55,.09); transition: background .18s ease, transform .18s ease, box-shadow .18s ease; }
.shop-button svg { width: 21px; height: 21px; flex-shrink: 0; }
.shop-button:hover { background: #f0d885; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(212,175,55,.22); }
a:focus-visible { outline: 3px solid #52b9ff; outline-offset: 6px; }
.store-note { color: #adb6c3; margin: 15px 0 0; font-size: .875rem; }
.games { padding: 27px 0 35px; border-top: 1px solid var(--line); }
.games-label { margin: 0 0 16px; font-size: .875rem; color: var(--muted); letter-spacing: .025em; }
.games ul { margin: 0; padding: 0; display: flex; align-items: center; gap: 17px 31px; flex-wrap: wrap; list-style: none; }
.games li { font-family: "Cinzel", Georgia, serif; font-size: 1.125rem; font-weight: 600; letter-spacing: .015em; }
.games li + li::before { content: "·"; color: #6982a0; display: inline-block; margin-right: 31px; }
.games .more-games { color: #aeb8c6; font-family: "Inter", sans-serif; font-size: .875rem; font-weight: 400; }
.site-footer { border-top: 1px solid var(--line); padding: 28px 0 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-promise { margin: 0; font-family: Georgia, serif; font-size: 1.125rem; font-style: italic; color: #d6dfec; }
.brand-promise span { color: var(--gold-light); }
.footer-meta { display: flex; gap: 24px; flex-wrap: wrap; color: #aab5c5; font-size: .875rem; }
.skip-link { position: absolute; left: 20px; top: 12px; padding: 10px 15px; z-index: 10; transform: translateY(-180%); background: var(--gold-light); color: #060c13; border-radius: 4px; }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; height: 1px; width: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@keyframes arrive { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 1650px) { .hero { min-height: 650px; } .artwork { background-position: center, center, right 35%; } }
@media (max-width: 1050px) {
  .page { width: calc(100% - 64px); }
  .brand-mantra { font-size: .8125rem; letter-spacing: .08em; }
  .hero { min-height: 560px; }
  .games ul { gap: 15px 24px; }
  .games li + li::before { display: none; }
  .site-footer { align-items: flex-start; }
  .footer-meta { gap: 6px; flex-direction: column; text-align: right; }
}
@media (max-width: 680px) {
  .page { width: calc(100% - 40px); }
  .artwork { height: 920px; min-height: 0; background-image: linear-gradient(0deg, #060c13 0%, rgba(6,12,19,.98) 25%, rgba(6,12,19,.85) 43%, rgba(6,12,19,.35) 71%, rgba(6,12,19,.28)), url("assets/dragon-background.webp"); background-size: cover, auto 720px; background-position: center, 76% top; background-repeat: no-repeat; }
  .site-header { padding: 19px 0; align-items: center; }
  .brand-logo { width: 80px; height: 80px; }
  .brand-mantra { max-width: 178px; text-align: right; font-size: .875rem; line-height: 2; letter-spacing: .055em; }
  .brand-mantra span { padding: 0 .2rem; }
  .hero { min-height: 600px; align-items: flex-end; padding: 128px 0 43px; }
  .eyebrow { font-size: .8125rem; letter-spacing: .11em; gap: 10px; margin-bottom: 21px; }
  .eyebrow span { width: 23px; }
  h1 { font-size: clamp(2.1rem, 8.3vw, 3.5rem); line-height: 1.2; letter-spacing: -.035em; margin-bottom: 22px; }
  .intro { max-width: 460px; font-size: 1rem; line-height: 1.75; margin-bottom: 26px; }
  .desktop-break { display: none; }
  .shop-button { min-height: 56px; width: 100%; justify-content: space-between; padding: 14px 20px; }
  .store-note { text-align: center; font-size: .875rem; }
  .games { padding: 26px 0 29px; }
  .games ul { gap: 12px 22px; }
  .games li { font-size: 1rem; }
  .site-footer { padding: 25px 0 28px; flex-direction: column; gap: 17px; }
  .brand-promise { font-size: 1.0625rem; }
  .footer-meta { flex-direction: row; text-align: left; gap: 8px 22px; font-size: .8125rem; }
}
@media (max-width: 360px) { .page { width: calc(100% - 32px); } .brand-mantra { max-width: 158px; font-size: .8125rem; } .eyebrow { letter-spacing: .065em; } .eyebrow span { width: 16px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
