/* Shared chrome for zioło.eu sub-pages (games, etc.) */
/* Use with: <link rel="stylesheet" href="/fonts/fonts.css"><link rel="stylesheet" href="/site-chrome.css"> */

:root {
  --zl-bg-dark: #121212;
  --zl-card-bg: rgba(30, 30, 30, 0.85);
  --zl-text-light: #f0f0f0;
  --zl-border-color: #444;
  --zl-accent: #2e7d32;
}

/* Minimal back bar - sticky header */
.site-back-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(12px, 2vw, 24px);
  background-color: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.site-logo {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #f0f0f0;
  text-decoration: none;
  font-family: 'Roboto Mono', monospace;
}

.site-logo:hover {
  color: #fff;
}

.site-back-link {
  color: var(--zl-accent);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.site-back-link:hover {
  background-color: rgba(46, 125, 50, 0.2);
  color: #fff;
}

/* Site footer - matches main site */
.site-footer {
  text-align: center;
  padding: 24px;
  margin-top: 32px;
  border-top: 1px solid var(--zl-border-color);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--zl-accent);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
