/* --- WITCHY GLAM BASE --- */

/* Bulletproof @font-face for Kingjola */
@font-face {
  font-family: 'Bradstone-Parker Script Limited Free Version';
  src: url('Bradstone-Parker Script Limited Free Version.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  background: linear-gradient(180deg, #080008 0%, #1a001a 100%);
  color: #ffaad9;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  margin: 0;
  padding: 20px;
}

body {
  cursor: none;
}

#custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  background: url('https://artwork.neocities.org/pixels/cursors/2247803t2b4h1lw7i.gif') no-repeat center center;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

/* --- HEADERS --- */
h1, h2 {
  color: #ff36b4;
  text-shadow: 0 0 8px #570032, 0 0 20px #7a0045;
  letter-spacing: 1px;
  font-family:'Bradstone-Parker Script Limited Free Version';
}

h1 {
  font-size: 5em;
  animation: pulseGlow 4s infinite;
}
h2 {
  font-size: 3em;
}

/* --- NAV --- */
nav {
  margin-bottom: 20px;
}
nav a {
  color: #ffaad9;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(255, 0, 120, 0.1);
  border: 1px solid rgba(255, 0, 120, 0.4);
  box-shadow: 0 0 10px rgba(255, 0, 120, 0.3);
  transition: all 0.3s ease;
}
nav a:hover {
  color: #fff;
  background: rgba(255, 0, 120, 0.3);
  box-shadow: 0 0 20px #ff007f;
}

/* --- LINKS --- */
a {
  color: #ff4fae;
  text-decoration: none;
}
a:hover {
  text-shadow: 0 0 10px #ff007f;
}

/* --- LISTS --- */
ul {
  list-style: none;
  padding: 0;
}
ul li::before {
  content: "💗 ";
  margin-right: 6px;
}

/* --- HIGHLIGHT BOX --- */
.highlight-box {
  background-color: rgba(239, 197, 210, 0.1);
  color: #ff4fae;
  padding: 15px;
  border-radius: 50px;
  width: fit-content;
  margin: 20px auto;
  border: 1px solid #ff2e9a;
  box-shadow: 0 0 20px #8b0053;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ff007f;
}

/* --- MEDIA CENTER --- */
.media-center {
  text-align: center;
}

img:hover, iframe:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ff36b4;
  border-radius: 50px;
}

img, iframe {
  border: none;       /* remove border */
  box-shadow: none;   /* remove any glow/shadow if present */
  outline: none;      /* remove any outline */
}

/* --- MAIN CONTENT BOX --- */
main {
  background: rgba(255, 0, 120, 0.05);
  border: 1px solid #ff1fc8;
  border-radius: 20px;
  padding: 20px;
  margin: 20px auto;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 0 40px #8b0053;
  transition: box-shadow 0.3s ease;
}
main:hover {
  box-shadow: 0 0 60px #ff007f;
}

/* --- FOOTER --- */
footer {
  color: #c28fb1;
  font-size: 0.9em;
  margin-top: 40px;
  text-shadow: 0 0 5px #ff2ec4;
}

/* --- GLOW ANIMATION --- */
@keyframes pulseGlow {
  0% { text-shadow: 0 0 5px #ff2ec4; }
  50% { text-shadow: 0 0 20px #d1006d; }
  100% { text-shadow: 0 0 5px #ff2ec4; }
}

