/* Zaika Games — shared styles.
   Brand colors are placeholders (we'll finalize these together).
   Change --brand and --accent in one place to re-theme the whole site;
   they also match the two fills in logo.svg. */
:root {
  --brand:   #1f1b3a;   /* deep navy — page background */
  --brand-2: #14112a;   /* darker navy — gradient bottom */
  --accent:  #f68b32;   /* warm orange — links, highlights */
  --card:    #262147;   /* raised surfaces */
  --text:    #eceaf6;   /* primary text */
  --muted:   #a29fc0;   /* secondary text */
  --line:    rgba(255, 255, 255, 0.08);
  --radius:  18px;
  --maxw:    720px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: radial-gradient(120% 90% at 50% -10%, #2a2452 0%, var(--brand) 45%, var(--brand-2) 100%);
  background-attachment: fixed;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 32px 22px 64px; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 28px;
}
.site-header img { width: 56px; height: 56px; display: block; }
.site-header .brand-name { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.2px; }
.site-header .brand-sub { display: block; font-size: 0.82rem; font-weight: 500; color: var(--muted); }

/* Headings */
h1 { font-size: 2rem; margin: 12px 0 6px; letter-spacing: -0.02em; }
h2 { font-size: 1.25rem; margin: 40px 0 12px; }
.lede { font-size: 1.08rem; color: var(--muted); margin-top: 0; }

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

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 16px 0;
}
.card h3 { margin: 0 0 4px; font-size: 1.05rem; }
.card p  { margin: 0; color: var(--muted); }

.contact-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #241100;
  font-weight: 700;
}
.contact-btn:hover { text-decoration: none; opacity: 0.92; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 30px 14px 2px;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 400;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 2px 16px; color: var(--muted); }

/* Footer */
footer {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: space-between;
}
