/* === StudioGearReviews — styles.css === */
/* Base & theme (from your original Coming Soon) */
:root {
  --bg1: #0d1117;
  --bg2: #1f2937;
  --text: #ffffff;
  --muted: #cbd5e1;
  --accent: #3b82f6;
  --accent-2: #22d3ee;
  --ring: rgba(59,130,246,.45);
}

* { box-sizing: border-box; }

/* Ensure page can grow */
html, body { min-height: 100%; }

/* Solid background (no gradients) */
html { background: var(--bg2) !important; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg2) !important; /* or use var(--bg1) if you want it a touch darker */
}


/* Body is transparent so the html gradient shows through */
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: transparent;
}

/* Site frame (header+content) */
.wrap { max-width: 860px; margin: 0 auto; padding: 18px; }
header.wrap {
  display:flex; justify-content:space-between; align-items:center;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.brand { font-weight:700; font-size:20px; color:#e8f0ff; text-decoration:none; }
nav a {
  color:#cfe6ff; margin-left:14px; text-decoration:none;
  border-bottom:1px dashed rgba(207,230,255,.25);
}
nav a:hover { border-bottom-color: rgba(207,230,255,.55); }
main.wrap { padding-top: 24px; }

/* === Coming-Soon card (reused as homepage hero) === */
.card {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  text-align: center;
}
.logo {
  width: 304px; height: 71px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(34,211,238,.18), rgba(59,130,246,.18));
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
h1 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  margin: 8px 0 8px;
  letter-spacing: 0.3px;
}
.sub { color: var(--muted); margin: 0 0 22px; line-height: 1.6; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px; font-size: 0.9rem;
  color: #e5e7eb; background: rgba(255,255,255,0.04);
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(34,211,238,.8);
}
form { margin-top: 18px; display: grid; grid-template-columns: 1fr; gap: 12px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .row { grid-template-columns: 1fr; } }
input[type="text"], input[type="email"] {
  width: 100%; padding: 14px 14px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--text); outline: none;
}
input::placeholder { color: #a3aab9; }
input:focus { border-color: var(--ring); box-shadow: 0 0 0 4px rgba(59,130,246,.12); }
button {
  padding: 14px 18px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #001018; font-weight: 700; cursor: pointer; transition: transform .06s ease;
}
button:active { transform: translateY(1px); }
.foot { margin-top: 18px; font-size: 0.92rem; color: #aab2c2; }
.socials { margin-top: 12px; display:flex; justify-content:center; gap:14px; }
.socials a { color:#cfe6ff; text-decoration:none; border-bottom:1px dashed rgba(207,230,255,.4); }

/* === Posts list on homepage === */
.home-posts { margin-top: 28px; }
.home-posts h2 { margin: 0 0 8px; font-size: 1.3rem; }
.post-list { list-style: none; padding: 0; margin: 12px 0 0; }
.post-list li {
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 12px; margin: 8px 0;
  border: 1px dashed rgba(255,255,255,0.10);
  border-radius: 12px; background: rgba(255,255,255,0.03);
  gap: 12px;
}
.post-list a { color:#e7f1ff; text-decoration:none; }
.post-list a:hover { text-decoration:underline; }
small.date { color:#9fb1c8; }

/* === Article page body === */
.post h1 { margin-top:0; }
.post-body { line-height: 1.7; font-size: 1.02rem; }
.post-body h2 { margin-top:1.5em; border-top:1px solid rgba(255,255,255,0.08); padding-top:0.8em; font-size:1.35rem; }
.post-body h3 { font-size:1.12rem; margin-top:1.2em; }
.post-body p { margin: 12px 0; }
.post-body blockquote {
  border-left:3px solid #233; padding:10px 14px; margin:14px 0;
  background:rgba(255,255,255,0.04); color:#cfe1ff;
}
.post-body ul, .post-body ol { margin: 12px 0 12px 24px; }
.post-body li { margin: 4px 0; }

/* Links, code, tables inside posts */
.post-body a { color:#cfe6ff; text-decoration:none; border-bottom:1px dashed rgba(207,230,255,.35); }
.post-body a:hover { border-bottom-color: rgba(207,230,255,.7); }
.post-body code { padding: 2px 5px; border-radius: 6px; background: rgba(255,255,255,.07); }
.post-body pre { padding: 12px; border-radius: 12px; background: rgba(255,255,255,.06); overflow:auto; }
.post-body table { width:100%; border-collapse: collapse; margin: 14px 0; }
.post-body th, .post-body td { border:1px solid rgba(255,255,255,.12); padding:8px 10px; }
.post-body th { background: rgba(255,255,255,.05); text-align:left; }
