/* === Y2K SK8 EMO MYSPACE BACKGROUND === */

/* Base page */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #ffffff;

  /* Y2K emo gradient sky */
  background:
    radial-gradient(circle at top, #ff3b8d 0%, #1a0b1f 40%, #000000 100%);
  background-attachment: fixed;
}

/* Main MySpace content wrapper (classic IDs/classes you can target) */
body, #content, #container, #wrap {
  background-color: transparent !important;
}

/* Sk8 sticker overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    url('https://i.imgur.com/8xg7p8M.png'), /* skull */
    url('https://i.imgur.com/1l0k6qH.png'), /* flame */
    url('https://i.imgur.com/7p8Yw0Z.png'); /* skateboard */
  background-size: 180px, 220px, 200px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  z-index: 1;
}

/* Y2K gloss layer */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg,
      rgba(255,255,255,0.15) 0%,
      rgba(255,255,255,0.02) 40%,
      rgba(255,0,120,0.05) 100%);
  z-index: 2;
}

/* Emo vignette around edges */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 200px 80px rgba(0,0,0,0.85);
  z-index: 3;
}

/* Optional: make profile boxes semi‑transparent to show background */
table, div, #content, #container, #wrap {
  background-color: rgba(0, 0, 0, 0.55) !important;
  border: 1px solid #ff3b8d !important;
}

/* Optional: links = neon sk8 emo */
a:link, a:visited {
  color: #ff66c7 !important;
  text-decoration: none;
}
a:hover {
  color: #00ffe5 !important;
  text-decoration: underline;
}
