/* AWT Tech Games — shared styles */
:root {
  --navy: #0B1F3A;
  --navy-light: #12294f;
  --gold: #F2B233;
  --green: #2ECC71;
  --text: #E8EDF5;
  --text-dim: #A9B6CC;
  --border: #1E3358;
  --max-w: 960px;
}

* { box-sizing: border-box; }

html { color-scheme: dark; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

header.site {
  border-bottom: 1px solid var(--border);
  background: var(--navy);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.brand img { width: 28px; height: 28px; }

nav.site-nav a {
  color: var(--text-dim);
  margin-left: 1rem;
  font-size: 0.95rem;
}

nav.site-nav a:hover { color: var(--gold); }

.hero {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
}

.hero h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.hero .tagline {
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 1rem;
}

.hero p.lead {
  color: var(--text-dim);
  max-width: 60ch;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  border-radius: 6px;
  font-weight: 700;
  margin-top: 1rem;
  margin-right: 0.75rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover { text-decoration: none; opacity: 0.9; }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline:hover { border-color: var(--gold); text-decoration: none; }

.store-badge-placeholder {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

section { padding: 2.5rem 0; }

section.alt { background: var(--navy-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

h2 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-top: 0;
}

h3 { color: var(--text); font-size: 1.1rem; }

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .features { grid-template-columns: 1fr 1fr; }
}

.features li {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1rem;
}

.features li::before {
  content: "\25B8";
  color: var(--green);
  margin-right: 0.5rem;
  font-weight: 700;
}

.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  background: var(--navy-light);
}

.card .status {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: var(--green);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.screens-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.screens-strip .shot {
  flex: 0 0 auto;
  width: 160px;
  aspect-ratio: 1080 / 2400;
  background: var(--navy-light);
  border: 1px dashed var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.75rem;
  text-align: center;
  padding: 0.5rem;
}

table.presskit {
  width: 100%;
  border-collapse: collapse;
}

table.presskit th, table.presskit td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

table.presskit th {
  color: var(--text-dim);
  width: 35%;
  font-weight: 600;
}

footer.site {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

footer.site nav a {
  margin-right: 1rem;
  color: var(--text-dim);
}

footer.site nav a:hover { color: var(--gold); }

.legal h2 { margin-top: 2rem; }
.legal p, .legal li { color: var(--text-dim); }

.faq dt {
  font-weight: 700;
  color: var(--text);
  margin-top: 1.25rem;
}

.faq dd {
  margin: 0.35rem 0 0;
  color: var(--text-dim);
}

.notfound {
  text-align: center;
  padding: 5rem 0;
}

.notfound h1 {
  font-size: 4rem;
  color: var(--gold);
  margin: 0;
}
