/* sHeybklyn.com — logo + footer only */

:root {
  --bg0: #050509;
  --bg1: #2b2b3b;
  --text: #f2f2ff;
  --muted: #c9c9dd;
  --link: #ffffff;
  --glass-bg: rgba(20, 20, 30, 0.92);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-blur: 12px;
}

[data-theme="mid"] {
  --bg0: #1a1a24;
  --bg1: #2d2d3f;
  --text: #e0e0f0;
  --muted: #a0a0b8;
  --link: #ffffff;
  --glass-bg: rgba(35, 35, 50, 0.90);
  --glass-border: rgba(255, 255, 255, 0.18);
}

[data-theme="light"] {
  --bg0: #e8e8f0;
  --bg1: #d0d0e0;
  --text: #1a1a2a;
  --muted: #4a4a5a;
  --link: #1a1a2a;
  --glass-bg: rgba(235, 235, 245, 0.92);
  --glass-border: rgba(0, 0, 0, 0.20);
}

* { box-sizing: border-box; }

html { height: 100%; margin: 0; padding: 0; }

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, var(--bg1), var(--bg0));
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
}

.sbk-main {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 25vh 25vw;
}

.sbk-logo {
  max-width: 280px;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.sbk-footer {
  flex-shrink: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-border);
  padding: 20px;
}

.sbk-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.sbk-footer-inner a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.sbk-footer-inner a:hover { color: var(--text); text-decoration: underline; }
.sbk-footer-dot { color: var(--muted); opacity: 0.5; }
