/* Koubit skin for the public showcase landing page.
   Re-points the gallery's base palette at the koubit-design-system tokens
   (navy background, teal accent) without touching the per-domain card themes,
   which are scoped to .gallery-card--<domain> and still apply. */
:root {
  --bg: #0c2b40;              /* koubit --navy-900, primary brand background */
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --panel: rgba(10, 33, 48, 0.92);   /* koubit --navy-950 */
  --hairline-rgb: 255, 255, 255;
  --accent: #0abcc2;          /* koubit --teal-500 */
  --teal: #0abcc2;
  --accent-rgb: 10, 188, 194;
  --teal-rgb: 10, 188, 194;
  --shadow: 0 24px 60px rgba(4, 14, 21, 0.5);
}

/* The base sheet hardcodes warm-brown gradients on body and .hero; re-ground
   both in the koubit navy ramp (navy-900 page, navy-950 hero panel). */
body {
  background:
    radial-gradient(circle at top left, rgba(10, 188, 194, 0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(91, 58, 142, 0.14), transparent 32%),
    linear-gradient(180deg, #0a2130 0%, #0c2b40 100%);
}

.hero {
  background: linear-gradient(135deg, rgba(14, 37, 52, 0.95), rgba(10, 33, 48, 0.92));
}

.home-icon {
  border-radius: 8px;
}

/* Main-site footer, replicated from koubit-website site.css (.fk-footer) with
   the same navy-950 band, muted text, and Privacy/Terms links. Sits outside
   .page-shell so the band runs full-bleed like it does on koubit.me. */
.fk-footer {
  padding-block: 40px;
  background: #0a2130;
  color: rgba(255, 255, 255, 0.56);
  font-family: 'Nunito Sans', 'Nunito', -apple-system, sans-serif;
  font-size: 0.9rem;
}

.fk-footer .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.fk-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.fk-footer a:hover {
  color: #2dd4d0;
}

/* The gallery shell's own bottom padding used to double as footer spacing;
   with the full-bleed footer band the shell just needs a modest gap. */
.gallery-shell {
  padding-bottom: 40px;
}

.public-notice {
  margin: 14px 0 0;
  padding: 12px 16px;
  border: 1px solid rgba(10, 188, 194, 0.35);
  border-radius: 12px;
  background: rgba(10, 188, 194, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.public-notice a {
  color: #2dd4d0;             /* koubit --teal-400 */
  font-weight: 600;
}
