:root {
  --bg: #050505;
  --bg-card: #111;
  --border: #333;
  --text: #f5f5f5;
  --muted: #999;
  --accent: #0a84ff;
}

/* Base reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-user-select: none;
}


a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  background: none;
  color: var(--text);
  transition: filter 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn.ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.btn:hover {
  filter: brightness(1.05);
}
/* ------------------------------------------------------
   UNIVERSAL SAVE/DOWNLOAD PROTECTION
------------------------------------------------------ */
img {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    user-select: none;
}
