:root {
  --color-bg:           #090d16;
  --color-surface:      #1e293b;
  --color-border:       #1f2937;
  --color-nav-bg:       #111827;
  --color-accent:       #6366f1;
  --color-accent-light: #a5b4fc;
  --color-muted:        #94a3b8;
  --color-muted-dark:   #64748b;
  --color-text:         #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: system-ui, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  text-align: center;
  margin-top: 56px;
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
  overflow-x: hidden;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-nav-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.title-link {
  text-decoration: none;
  color: var(--color-accent-light);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.container {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-nav-bg);
  border-top: 1px solid var(--color-border);
  padding: 12px 15px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2000;
}

.cookie-text {
  font-size: 0.8em;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.4;
  max-width: 420px;
}

.cookie-text a { color: var(--color-muted); text-decoration-color: var(--color-muted); }

.cookie-btn {
  background: #10b981;
  color: #fff;
  border: none;
  padding: 7px 18px;
  font-size: 0.8em;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  max-width: 110px;
}

@media (min-width: 480px) {
  .cookie-banner { flex-direction: row; justify-content: center; gap: 20px; }
  .cookie-btn { width: auto; }
}