body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  color: #c4c1c1;
  background: #000;
}

a {
  color: #ad79cf;
  font: 24px sans-serif;
  border: 4px  rgb(113, 105, 221);
  white-space: inherit;
}

b {
  font: 24px sans-serif;
  color: #0e71aa;
}

image {
  border: 5px  rgb(113, 105, 221);
}

:root {
  --mint-50: #eafff7;
  --mint-100: #c6ffea;
  --mint-200: #8bffd7;
  --mint-300: #4ef2c1;
  --mint-400: #27e5b1;
  --mint-500: #14d3a0;
  --mint-600: #0fb087;
  --mint-700: #0c8e70;
  --ink-900: #0b0d0f;
  --ink-800: #101418;
  --ink-700: #151b20;
  --glow: 0 8px 30px rgba(20, 211, 160, 0.35), 0 2px 10px rgba(20, 211, 160, 0.25);
  --soft: 0 10px 25px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.35);
}

body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  color: #c4c1c1;
  background: var(--ink-900);
}

a {
  color: #ad79cf;
  font: 24px sans-serif;
  border: 4px  rgb(113, 105, 221);
  white-space: inherit;
}

b {
  font: 24px sans-serif;
  color: #0e71aa;
}

image {
  border: 5px  rgb(113, 105, 221);
}

.psyop-download {
  min-height: 60vh;
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(20, 211, 160, 0.10), transparent 60%),
              radial-gradient(1000px 500px at 120% 10%, rgba(39, 229, 177, 0.08), transparent 55%);
  border-radius: 24px;
}

.psyop-download h1 {
  margin: 0 0 8px;
  font-size: 64px;
  letter-spacing: 0.5px;
  color: #e9fff7;
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
}

.psyop-download .tagline {
  margin: 0;
  color: #b6c9c2;
  font-size: 14px;
}

.download-btn {
  --btn-bg: linear-gradient(145deg, var(--mint-500), var(--mint-300));
  --btn-bg-hover: linear-gradient(145deg, var(--mint-400), var(--mint-200));
  --ring: 0 0 0 0 rgba(20, 211, 160, 0.0);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #05261d;
  background: var(--btn-bg);
  box-shadow: var(--soft), var(--glow);
  text-decoration: none;
  position: relative;
  transform: translateY(0);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1),
              box-shadow 220ms ease,
              background 220ms ease,
              color 220ms ease,
              filter 220ms ease;
  animation: floaty 5s ease-in-out infinite;
}

.download-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -10px 20px rgba(0,0,0,0.08);
  pointer-events: none;
}

.download-btn:hover {
  transform: translateY(-3px) scale(1.01);
  background: var(--btn-bg-hover);
  box-shadow: 0 14px 40px rgba(20, 211, 160, 0.45), 0 4px 12px rgba(20, 211, 160, 0.3);
  filter: saturate(1.05);
}

.download-btn:active {
  transform: translateY(0px) scale(0.995);
  box-shadow: var(--soft);
}

.download-btn:focus-visible {
  outline: none;
  box-shadow: var(--soft), 0 0 0 6px rgba(20, 211, 160, 0.15), 0 0 0 3px rgba(20, 211, 160, 0.45);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.psyop-download .watermark {
  width: 100%;
  max-width: 520px;
  height: 120px;
  background-image: url('https://i.postimg.cc/BvgDZQ2W/watermark.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.59;
  filter: drop-shadow(0 2px 8px rgba(20, 211, 160, 0.15));
  margin-bottom: 4px;
}

.dev-section {
  margin-top: 56px;
  padding: 24px 12px 8px;
}

.dev-section h2 {
  margin: 0 0 18px;
  font-size: 28px;
  color: var(--mint-200);
  letter-spacing: 0.6px;
}

.dev-grid {
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax(220px, 1fr) );
  gap: 16px;
}

.dev-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(21, 27, 32, 0.8), rgba(16, 20, 24, 0.9));
  border: 1px solid rgba(20, 211, 160, 0.08);
  text-decoration: none;
  color: #dfe9e5;
  box-shadow: var(--soft);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.dev-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(20, 211, 160, 0.25), 0 2px 10px rgba(0,0,0,0.35);
  border-color: rgba(20, 211, 160, 0.35);
  background: linear-gradient(180deg, rgba(27, 34, 40, 0.9), rgba(16, 20, 24, 0.95));
}

.dev-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(20, 211, 160, 0.35);
  box-shadow: 0 4px 16px rgba(20, 211, 160, 0.18);
  object-fit: cover;
  background: #0e1317;
}

.dev-name {
  margin: 0;
  font-size: 18px;
  color: #eafff7;
}

.dev-hint {
  margin: 2px 0 0;
  font-size: 12px;
  color: #98b3aa;
}
/* Maps page styles */
.maps-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-title {
  margin: 0 0 6px 0;
  font-size: 42px;
  line-height: 1.1;
  color: #e9fff7;
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.map-card {
  background: var(--ink-800);
  border: 1px solid rgba(139, 255, 215, 0.08);
  border-radius: 14px;
  box-shadow: var(--soft);
  overflow: hidden;
  transition: transform 180ms cubic-bezier(.2,.8,.2,1),
              box-shadow 180ms ease, border-color 180ms ease;
}

.map-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 255, 215, 0.18);
  box-shadow: var(--soft), var(--glow);
}

.map-thumb {
  background: radial-gradient(600px 300px at 10% -10%, rgba(20, 211, 160, 0.08), transparent 60%),
              radial-gradient(500px 250px at 110% 10%, rgba(39, 229, 177, 0.06), transparent 55%),
              var(--ink-900);
  display: grid;
  place-items: center;
}

.map-thumb img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.map-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}

.map-name {
  font-weight: 700;
  color: #dcf8ef;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-dim {
  color: #98b9af;
  font-size: 12px;
}

/* Map artist */
.map-artist {
  padding: 10px 14px 0 14px;
  color: #98b9af;
  font-size: 12px;
  opacity: 0.95;
}

/* Map tags */
.map-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.map-tags .tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(139, 255, 215, 0.10);
  color: #bfeee3;
  font-size: 11px;
  line-height: 1.6;
  border: 1px solid rgba(139, 255, 215, 0.20);
}

/* Filters bar */
.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  background: var(--ink-800);
  border: 1px solid rgba(139, 255, 215, 0.08);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--soft);
}

.map-filters input[type="text"],
.map-filters input[type="search"] {
  flex: 1 1 260px;
  min-width: 180px;
  padding: 10px 12px;
  color: #dcf8ef;
  background: var(--ink-900);
  border: 1px solid rgba(139, 255, 215, 0.12);
  border-radius: 10px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.map-filters input[type="text"]::placeholder,
.map-filters input[type="search"]::placeholder {
  color: #8fb3a9;
}

.map-filters input[type="text"]:focus,
.map-filters input[type="search"]:focus {
  border-color: rgba(139, 255, 215, 0.28);
  box-shadow: 0 0 0 3px rgba(20, 211, 160, 0.15);
  background: #0f1417;
}

/* Themed button */
.btn {
  --btn-bg: linear-gradient(145deg, var(--mint-500), var(--mint-300));
  --btn-bg-hover: linear-gradient(145deg, var(--mint-400), var(--mint-200));
  --ring: 0 0 0 0 rgba(20, 211, 160, 0.0);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #05261d;
  background: var(--btn-bg);
  box-shadow: var(--soft);
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(.2,.8,.2,1),
              box-shadow 200ms ease,
              background 160ms ease,
              color 160ms ease,
              filter 200ms ease;
}

.btn:hover {
  background: var(--btn-bg-hover);
  filter: brightness(1.02) saturate(1.02);
}

.btn:active {
  transform: translateY(1px);
  filter: brightness(0.98);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--soft), 0 0 0 4px rgba(20, 211, 160, 0.25);
}

/* Compact button variant for forms if needed */
.map-filters .btn {
  padding: 10px 14px;
  border-radius: 10px;
}

/** Fancy GitHub button styles to match Download button **/
.github-btn {
  --btn-bg: linear-gradient(145deg, #24292e, #3a3f44);
  --btn-bg-hover: linear-gradient(145deg, #2b3137, #4a525a);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #e9eef2;
  background: var(--btn-bg);
  box-shadow: var(--soft), 0 8px 24px rgba(3, 102, 214, 0.25);
  text-decoration: none;
  position: relative;
  transform: translateY(0);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1),
              box-shadow 220ms ease,
              background 220ms ease,
              color 220ms ease,
              filter 220ms ease;
  animation: floaty 5s ease-in-out infinite;
}

.github-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -10px 20px rgba(0,0,0,0.12);
  pointer-events: none;
}

/* Octocat icon */
.github-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.25));
  /* white Octocat so it’s visible on dark bg */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path d='M8 0C3.58 0 0 3.58 0 8a8.01 8.01 0 005.47 7.59c.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.24-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.01.08-2.11 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.03 2.2-.82 2.2-.82.44 1.1.16 1.91.08 2.11.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0016 8c0-4.42-3.58-8-8-8z'/></svg>");
}

.github-btn:hover {
  transform: translateY(-3px) scale(1.01);
  background: var(--btn-bg-hover);
  box-shadow: 0 14px 36px rgba(3, 102, 214, 0.35), 0 4px 12px rgba(0,0,0,0.4);
  filter: saturate(1.05);
}

.github-btn:active {
  transform: translateY(0px) scale(0.995);
  box-shadow: var(--soft);
}

.github-btn:focus-visible {
  outline: none;
  box-shadow: var(--soft), 0 0 0 6px rgba(3, 102, 214, 0.18), 0 0 0 3px rgba(3, 102, 214, 0.45);
}
