:root { color-scheme: light; --blue: #4169e1; --green: #8ae05e; --ink: #111a2c; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; font-family: Inter, system-ui, sans-serif; color: var(--ink); background: radial-gradient(circle at 10% 15%, #e8efff 0, transparent 35%), radial-gradient(circle at 90% 85%, #eaffdf 0, transparent 35%), #f7f9fc; }
.download-shell { min-height: 100vh; display: grid; place-content: center; gap: 28px; padding: 28px; }
.brand { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--ink); font-size: 22px; font-weight: 800; text-decoration: none; }
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; }
.download-card { width: min(620px, calc(100vw - 40px)); border: 1px solid #e2e7f0; border-radius: 28px; background: white; padding: clamp(30px, 6vw, 58px); text-align: center; box-shadow: 0 24px 70px rgba(26, 39, 70, .12); }
.eyebrow { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
h1 { margin: 10px 0; font-size: clamp(38px, 8vw, 62px); line-height: .98; }
.download-card > p:not(.eyebrow) { max-width: 470px; margin: 18px auto 28px; color: #68748a; line-height: 1.6; }
.store-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.store-button { display: flex; min-height: 82px; flex-direction: column; justify-content: center; border-radius: 16px; background: var(--ink); color: white; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.store-button.play { background: var(--blue); }
.store-button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(17, 26, 44, .18); }
.store-button span { font-size: 11px; }
.store-button strong { margin-top: 3px; font-size: 20px; }
.download-card small { display: block; margin-top: 22px; color: #929cad; line-height: 1.5; }
@media (max-width: 560px) { .store-grid { grid-template-columns: 1fr; } }
