/* ===== NTSH DESIGN TOKENS ===== */
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Inter:wght@600;700&display=swap");

:root {
  --bg-main: #0b0d12;
  --bg-glass: rgba(255,255,255,0.06);
  --bg-card: #141824;

  --text-main: #e6e8ef;
  --text-muted: #9aa0b4;

  --accent-primary: #6cf2c2;
  --accent-secondary: #7aa2ff;
  --accent-danger: #ff6b6b;

  --border-soft: rgba(255,255,255,0.1);

  --radius-lg: 18px;
  --radius-md: 12px;

  --font-ui: "JetBrains Mono", monospace;
  --font-brand: "Inter", system-ui, sans-serif;
}

/* ===== RESET ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-ui);
}

/* ===== UTILS ===== */
.centered {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

/* ===== GLASS ===== */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}

/* ===== TOP BAR ===== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}

/* ===== CARD ===== */
.card {
  width: 380px;
  padding: 2.5rem;
  text-align: center;
}

.brand {
  font-family: var(--font-brand);
  font-size: 3rem;
  letter-spacing: 0.2em;
}

.subtitle {
  margin-top: .5rem;
  opacity: .75;
}

.tagline {
  opacity: .45;
  margin-bottom: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  width: 100%;
  padding: .75rem;
  margin: .5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
}

.btn.primary {
  background: var(--accent-primary);
  color: #04120c;
  border: none;
}

.btn.ghost {
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
}

/* ===== LINKS ===== */
a {
  color: var(--accent-secondary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  width: 360px;
  padding: 2rem;
}

/* ===== EASTER EGG ===== */
.easter-egg {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  opacity: .4;
  cursor: pointer;
}

.alt-theme {
  background: #f5f5f5;
  color: #0b0d12;
}



#artModal img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.reactions {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.reactions button {
  font-size: 1.4rem;
  border: none;
  background: none;
  cursor: pointer;
}
