/* ozgamingllc.com: one shared stylesheet. Colors and font match Rosa's by the Sea. */

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/nunito-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --cream: #f6ebdd;
  --paper: #fffaf3;
  --sand: #f0dcc0;
  --navy: #2e3a59;
  --ink-soft: #55607c;
  --mustard: #e3a33b;
  --mustard-dark: #b97d1c;
  --sage: #8fae8b;
  --teal: #6fb7c2;
  --rose: #d9534f;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(46, 58, 89, 0.12);
  --max: 1080px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: "Nunito", ui-rounded, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--mustard-dark); text-underline-offset: 3px; }
a:hover { color: var(--navy); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(246, 235, 221, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); font-weight: 800; font-size: 22px; letter-spacing: -0.2px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--teal), #4f98a4); color: #fff; font-size: 18px;
}
.brand small { font-weight: 700; font-size: 13px; color: var(--ink-soft); margin-left: 2px; }
.nav { display: flex; gap: 4px; flex-wrap: wrap; }
.nav a {
  text-decoration: none; color: var(--navy); font-weight: 700; font-size: 15px;
  padding: 8px 12px; border-radius: 999px;
}
.nav a:hover, .nav a[aria-current="page"] { background: #fff; color: var(--navy); }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 12px; letter-spacing: -0.3px; }
h1 { font-size: clamp(32px, 5vw, 50px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; }
h3 { font-size: 20px; font-weight: 800; }
p { margin: 0 0 14px; }
.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-soft); max-width: 640px; }
.eyebrow { text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px; font-weight: 800; color: var(--mustard-dark); margin-bottom: 8px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.hero-art { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--sand); }

/* ---------- Buttons and badges ---------- */
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-weight: 800; font-size: 16px; padding: 12px 20px; border-radius: 999px;
  background: var(--mustard); color: #fff; box-shadow: 0 4px 0 var(--mustard-dark);
}
.btn:hover { color: #fff; transform: translateY(-1px); }
.btn.ghost { background: #fff; color: var(--navy); box-shadow: 0 4px 0 var(--sand); }
.btn.ghost:hover { color: var(--navy); }
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 800;
  padding: 7px 12px; border-radius: 999px; background: #fff; color: var(--navy); border: 2px solid var(--sand);
}
.badge.soon::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }

/* ---------- Cards ---------- */
.card { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.card-body { padding: 24px; }
.game-card { display: grid; grid-template-columns: 1.2fr 1fr; }
.game-card img { width: 100%; height: 100%; object-fit: cover; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--paper); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.feature .ico { font-size: 28px; margin-bottom: 6px; }

/* ---------- Game page ---------- */
.band { background: var(--paper); }
.chain { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px; margin: 22px 0 6px; }
.chain img { width: 64px; height: 64px; }
.chain .arrow { color: var(--ink-soft); font-weight: 800; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.before-after figure { margin: 0; }
.before-after img { border-radius: 14px; box-shadow: var(--shadow); }
.before-after figcaption { font-weight: 800; font-size: 14px; color: var(--ink-soft); margin-top: 8px; text-align: center; }
.video-row { display: grid; grid-template-columns: 320px 1fr; gap: 36px; align-items: center; }
.video-row video { border-radius: var(--radius); box-shadow: var(--shadow); background: #000; width: 100%; aspect-ratio: 2 / 3; }
.mia { display: flex; gap: 16px; align-items: center; }
.mia img { width: 120px; flex: none; border-radius: 16px; }
ul.ticks { list-style: none; padding: 0; margin: 0 0 14px; }
ul.ticks li { padding-left: 28px; position: relative; margin: 6px 0; }
ul.ticks li::before { content: "✓"; position: absolute; left: 4px; color: var(--sage); font-weight: 800; }

/* ---------- Text pages (privacy, support) ---------- */
.doc { max-width: 760px; margin: 0 auto; padding: 48px 20px 64px; }
.doc h1 { font-size: clamp(30px, 4.5vw, 42px); }
.doc h2 { font-size: 24px; margin-top: 36px; }
.doc h3 { font-size: 18px; margin-top: 22px; }
.doc ul { padding-left: 22px; }
.doc li { margin: 6px 0; }
.updated { color: var(--ink-soft); font-weight: 700; }
.summary { background: var(--paper); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); margin: 22px 0 8px; }
.summary ul { margin: 0; }
details { background: var(--paper); border-radius: 14px; padding: 14px 18px; margin: 10px 0; box-shadow: 0 4px 14px rgba(46, 58, 89, 0.08); }
details summary { cursor: pointer; font-weight: 800; }
details[open] summary { margin-bottom: 8px; }
.contact-box { display: flex; gap: 18px; align-items: center; background: var(--paper); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); margin: 20px 0; }
.contact-box img { width: 96px; flex: none; border-radius: 14px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--sand); padding: 28px 0 40px; color: var(--ink-soft); font-size: 15px; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
.site-footer a { color: var(--ink-soft); }

/* ---------- Phones ---------- */
@media (max-width: 820px) {
  body { font-size: 16px; }
  section { padding: 40px 0; }
  .hero { padding: 36px 0 24px; }
  .hero-grid, .game-card, .video-row { grid-template-columns: 1fr; }
  .hero-grid .hero-art { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .video-row video { max-width: 320px; margin: 0 auto; }
  .chain img { width: 44px; height: 44px; }
  .brand small { display: none; }
}
@media (max-width: 520px) {
  .before-after { grid-template-columns: 1fr; }
  .contact-box, .mia { flex-direction: column; text-align: center; }
  .site-header .wrap { justify-content: center; padding-top: 8px; padding-bottom: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}
