/* GENERAL PAGE STYLE */
body {
  background: #E5CCF9;
  font-family: "Trebuchet MS", "Century Gothic", "Verdana", sans-serif;
  color: #776189;
  text-align: center;
  margin: 0;
  padding: 20px;
  animation: fadeIn 1s ease;

}

/* FADE IN ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* HEADINGS */
h1 {
  background: linear-gradient(to right, #dda0ff, #ffb347);
  color: #fff;
  margin: 0 0 20px 0;
  padding: 8px 12px;
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  border: 2px solid #ff8800;
  border-radius: 4px 4px 0 0;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #c66aff;
}

h2, h3 {
  font-weight: bold;
  font-size: 18px;
  background: linear-gradient(to right, #8E24DB, #ff8800, #B955FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

/* PARAGRAPHS */
p {
  line-height: 1.6;
  margin: 15px 0;
}

/* LINKS */
a {
  color: #B970F2;
  font-weight: bold;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #BB63FF;
}

a:hover {
  color: #FF842F;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #FFAD74;
}

/* FOOTER */
footer {
  margin-top: 40px;
  font-size: 12px;
  color: #ffdfff;
  opacity: 0.7;
}

/* CUSTOM BULLETS */
ul.custom-bullets {
  list-style-type: none;
  padding-left: 0;
}

ul.custom-bullets li {
  position: relative;
  padding-left: 10px;
}

ul.custom-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background-size: contain;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #f9f0ff;
  border: 2px solid #dda0ff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#ff8800, #dda0ff);
  border-radius: 10px;
  border: 2px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#dda0ff, #ffb347);
}

/* COMMENT BOX */
#HCB_comment_box {
  background: #f9f0ff;
  border: 3px double #ff8800;
  border-radius: 15px;
  padding: 15px;
  width: 80%;
  margin: 20px auto;
  font-family: "Trebuchet MS", "Verdana", sans-serif;
  color: #51356E;
  box-shadow: 3px 3px 0px #ffb347;
}

#HCB_comment_box h3, 
#HCB_comment_box h4 {
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(to right, #ffb347, #dda0ff);
  color: white;
  padding: 5px 10px;
  border-radius: 8px;
  border-bottom: 2px solid #ff8800;
  text-shadow: 1px 1px #51356E;
}

#HCB_comment_box a {
  color: #FF842F;
  text-decoration: underline dotted;
  font-weight: bold;
}

#HCB_comment_box a:hover {
  color: #fff;
  background: #FF842F;
  padding: 0 3px;
  border-radius: 3px;
  transition: 0.3s;
}

#HCB_comment_box input[type="text"],
#HCB_comment_box textarea {
  background: #fffafc;
  border: 2px solid #dda0ff;
  border-radius: 6px;
  padding: 5px;
  font-family: "Trebuchet MS", sans-serif;
  color: #51356E;
}

#HCB_comment_box input[type="submit"] {
  background: linear-gradient(to bottom, #ffb347, #ff8800);
  color: white;
  border: 2px solid #dda0ff;
  border-radius: 8px;
  font-weight: bold;
  padding: 5px 10px;
  cursor: pointer;
}

#HCB_comment_box input[type="submit"]:hover {
  background: #dda0ff;
  color: #fff;
}

#HCB_comment_box .hcb-comment-body {
  background: #fffafc;
  border: 1px solid #ffb347;
  border-radius: 10px;
  padding: 10px;
  margin: 10px 0;
}

/* POPUP WINDOW */
.popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: #f9f0ff;
  border: 4px double #ff8800;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 20px #dda0ff;
}

.popup-content h2 {
  font-size: 20px;
  background: linear-gradient(to right, #dda0ff, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.popup button {
  background: #ff842f;
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
}

/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
  display: none; /* HIDDEN BY DEFAULT */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  border: none;
  outline: none;
  background: linear-gradient(to right, #dda0ff, #ffb347);
  color: #fff;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0 0 10px #51356E;
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  transform: scale(1.2);
  background: linear-gradient(to right, #ffb347, #dda0ff);
}

/* RETRO PLAYER */
.retro-player {
  display: inline-block;
  padding: 10px;
  border: 4px ridge #FF842F;
  border-radius: 12px;
  background: linear-gradient(to bottom, #dda0ff, #ffb347);
  box-shadow: 3px 3px 0px #51356E;
  margin: 15px auto;
}

.retro-player audio {
  width: 130px;
  height: 40px;
  outline: none;
  border-radius: 8px;
}

audio::-webkit-media-controls-panel {
  background: linear-gradient(to right, #FF842F, #D679FF);
  border-radius: 8px;
}

audio::-webkit-media-controls-play-button {
  background-color: #fff;
  border-radius: 50%;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
  color: #fff;
  text-shadow: 0 0 3px #FF842F;
}
