/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

 <style>
  h1 {text-align: center;}
  p {text-align: center;}
  ul {text-align: center;}
  li {text-align: center;}
  body {
  background-image: url(https://the-k-hole.neocities.org/purplebg.jpg);
}
  /* black theme */

.pixel-player {
  width: 260px;
  padding: 10px;
  background: #1a001f;
  border: 4px solid #b300ff;
  box-shadow:
    0px 0px 0px 4px #330044,
    0px 0px 0px 8px #b300ff;
  font-family: "Press Start 2P", monospace;
  color: #d966ff;
  text-align: center;
  margin: 20px auto;
}

.pixel-title {
  font-size: 12px;
  margin-bottom: 8px;
  background: #330044;
  padding: 4px;
  border: 2px solid #b300ff;
  color: #e699ff;
}

/* CRT container */
.crt-wrapper {
  position: relative;
  width: 240px;
  height: 135px;
  overflow: hidden;
  border: 2px solid #b300ff;
  background: black;
}

/* The iframe itself */
.pixel-iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0.85; /* slight dim for CRT vibe */
  transition: opacity 0.3s ease;
}

/* Hide controls until hover */
.crt-wrapper:hover .pixel-iframe {
  opacity: 1;
}

/* CRT scanlines + glow */
.crt-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.05) 0px,
      rgba(255, 255, 255, 0.05) 1px,
      rgba(0, 0, 0, 0.05) 2px
    );
  mix-blend-mode: overlay;
  opacity: 0.25;
}

/* CRT curvature */
.crt-wrapper {
  border-radius: 6px;
  box-shadow:
    inset 0 0 20px rgba(179, 0, 255, 0.4),
    inset 0 0 40px rgba(179, 0, 255, 0.2);
}
 body {
    cursor: url("https://the-k-hole.neocities.org/normal.ico"), default;
}
  background-color: white;
  color: black;
  font-family: Verdana;

 
    
}
.gold {
  color: gold;
  font-weight: bold;
}
</style>