/* Start - Custom cursor styling */
* {
  cursor: auto;
}
/* End - Custom cursor styling */

@font-face {
  font-family: Darkhorn; /* set name */
  src: url(../fonts/Darkhorn.woff2); /* url of the font */
}

@font-face {
  font-family: LeLabyrinthedesChevaliers;
  src: url(../fonts/LeLabyrinthedesChevaliers.woff2);
}

@font-face {
  font-family: BLKCHCRY;
  src: url(../fonts/BLKCHCRY.woff2);
}
.main {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 120px;
  padding: 10px;
  flex-wrap: wrap;
}
div {
}
div#music {
  border: 1px solid white;
  margin: 5px auto;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */

  min-height: 60px;
  height: auto;
  /* Set a specific height if you want it 'short' */
  width: 95%; /* Ensure it spans the full width of its parent */
  background: #730000; /* Matching your existing background */
  box-sizing: border-box;
}
.logo {
  font-size: 0;
}

.boxHead img {
  width: 150px;
  height: auto;
  padding: 10px;
  animation: scaleIn 0.8s ease-out 0.2s both;
}
.logo::after {
  content: "𝔤𝔬𝔱𝔥𝔰𝔭𝔞𝔠𝔢.𝔠𝔬𝔪";
  text-shadow: 2px 2px 4px red;
  color: white;
  line-height: 10px;
  font-size: 35px;
  padding: 70px;
}
p#header,
p.header-text {
  margin: 0;
  padding: 0;
  white-space: normal;
  font-family: "Darkhorn";
  font-size: 40px;
}
p#riffraff {
  font-family: LeLabyrinthedesChevaliers;
  color: white;
  text-shadow: 2px 2px 4px red;
  padding: 10px;
  background-color: #000000;
  opacity: 70%;
}
p#hSub,
p.hSub-text {
  margin: 0;
  padding: 0;
  white-space: normal;
  font-size: 12px;
  font-family: "BLKCHCRY";
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a.hSub-link {
  text-decoration: none;
  color: white;
  font-family: "BLKCHCRY";
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding-right: 50px;
}

a.hSub-link:hover {
  color: #ffcccc;
  text-shadow: 0 0 5px rgba(255, 200, 200, 0.5);
}
.divider {
  height: 100px;
  width: 400px;
}
div#header {
  background-color: black;
  background-position: 0px -400px;
  background-size: 30%;
  background-repeat: repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  white-space: normal;
  display: inline-block;
  padding: 5px;
}

div#hSub {
  background-color: rgb(115, 0, 0);
  font-family: "BLKCHCRY";

  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 9999;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  letter-spacing: 1px;
}

h2#name {
  color: white;
  text-shadow: 2px 2px 4px red;
  padding: 10px;
  font-family: BLKCHCRY;
}

.extended.box {
  border: 2px solid white;
  background-color: #730000;
}

h4 {
  color: red;
}

body {
  color: white;
  background-color: #730000;
  background-image: url(https://i.pinimg.com/originals/25/f3/53/25f353c7dd0699fa37b4c5c89fa036cf.gif);
  background-size: 69%;
  background-attachment: fixed;
  font-family: "Century Gothic";
}

.player.box {
  background-color: #730000;
  background-size: 33%;
  background-position: 150px;
  color: white;
}

.boxInfo.box {
  border-color: #ffffff00;
}
img {
  max-width: 100%;
  height: auto;
}
.url {
  background: url(https://i.pinimg.com/originals/a8/70/dd/a870dd8cbfe3dac52494db0035f82195.gif)
    no-repeat;
  position: fixed;
  right: 50px;
  bottom: 20px;
  color: #ffffff00;
  background-size: 300px;
  height: 100px;
  width: 300px;
  border: none;
  box-shadow: none;
  filter: drop-shadow(8px 9px 15px #00000044);
  z-index: 1000;
  font-size: 0px;
  opacity: 1;
}
.audio-skin {
  width: 95%;
  height: auto;
  min-height: 50px;
  background: black;
  border: 1px solid #730000;
  padding: 0 15px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  box-shadow: 2px 2px 0px #4f0000;
  transition: all 0.3s ease;
}

.audio-skin.playing {
  border-color: red;
  box-shadow:
    2px 2px 0px #4f0000,
    0 0 20px rgba(255, 0, 0, 0.4),
    inset 0 0 20px rgba(255, 0, 0, 0.1);
  animation: playerPulse 1.5s ease-in-out infinite;
}

@keyframes playerPulse {
  0% {
    box-shadow:
      2px 2px 0px #4f0000,
      0 0 15px rgba(255, 0, 0, 0.3),
      inset 0 0 15px rgba(255, 0, 0, 0.05);
  }
  50% {
    box-shadow:
      2px 2px 0px #4f0000,
      0 0 30px rgba(255, 0, 0, 0.6),
      inset 0 0 30px rgba(255, 0, 0, 0.15);
  }
  100% {
    box-shadow:
      2px 2px 0px #4f0000,
      0 0 15px rgba(255, 0, 0, 0.3),
      inset 0 0 15px rgba(255, 0, 0, 0.05);
  }
}

.goth-btn {
  flex-grow: 1;
  height: 85%;
  background: #730000;
  color: white;
  border: 1px solid white;
  font-family: "BLKCHCRY", serif;
  padding: 5px 15px;
  cursor: pointer;
  transition: 0.3s;
}

.goth-btn:hover {
  background: white;
  color: black;
}

.track-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-size: 12px;
  justify-content: center;
  gap: 4px;
  color: red;
  font-family: "Century Gothic", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#timer {
  font-family: monospace;
  color: white;
  font-size: 14px;
  text-shadow: 1px 1px 2px red;
}

.music-disk {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid red;
  filter: grayscale(100%) sepia(100%) hue-rotate(-50deg) saturate(5);
  opacity: 0.3;
  transition: opacity 0.5s;
}

.disk-active {
  opacity: 1;
  /*animation: shake 0.5s infinite;*/
}

.progress-container {
  width: 100%;
  height: 4px;
  background: #330000;
  cursor: crosshair;
  border: 1px solid #730000;
  position: relative;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: red;
  box-shadow: 0 0 10px red;
  transition: width 0.1s linear;
}

/* ============ EQUALIZER VISUALIZATION ============ */

.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 40px;
  margin: 0 15px;
  flex-shrink: 0;
}

.eq-bar {
  width: 4px;
  height: 20%;
  background: linear-gradient(to top, red, #ff6666);
  border-radius: 2px;
  box-shadow: 0 0 8px red;
  transition: height 0.1s ease-out;
}

.eq-bar:hover {
  box-shadow:
    0 0 12px red,
    0 0 20px rgba(255, 0, 0, 0.5);
}

/* ============ DISK SPINNING ANIMATION ============ */

.music-disk.disk-spinning {
  animation: spinDisk 2s linear infinite;
}

@keyframes spinDisk {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.topLeft {
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(10px);
  margin-top: 20px;
  background-repeat: no-repeat;
  background-color: black;
  background-size: 100% 100%;
  background-image: url(https://i.pinimg.com/originals/7b/70/2b/7b702b04c757690cab24207496f6711e.gif);
  box-sizing: border-box;
}
.topLeft > div {
  flex: 1;
}

.topRight {
  margin-top: 20px;
  width: 100%;
  max-width: 700px;
  background: #000000;
  margin-bottom: 20px;
  border: 2px solid red;
}

.tabs {
  display: flex;
  border-bottom: 2px solid red;
  background-color: #1a1a1a;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  background-color: #000000;
  border: none;
  border-right: 1px solid #333333;
  color: white;
  font-family: BLKCHCRY;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 12px;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn:hover {
  background-color: rgba(115, 0, 0, 0.5);
}

.tab-btn.active {
  background-color: #730000;
  color: white;
  text-shadow: 0 0 8px red;
  animation: buttonActivate 0.3s ease-out;
}

@keyframes buttonActivate {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0px red;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px red;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 8px red;
  }
}

.tab-content {
  padding: 15px;
  background-color: #000000;
  background-image: url(https://i.pinimg.com/originals/7b/70/2b/7b702b04c757690cab24207496f6711e.gif);
  background-size: 100% 100%;
  min-height: 300px;
}

.tab-pane {
  display: none;
  color: white;
  font-family: LeLabyrinthedesChevaliers;
}

.tab-pane.active {
  display: block;
}

.socials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-family: LeLabyrinthedesChevaliers;
  font-size: 16px;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}

.social-btn:hover {
  background-color: rgba(115, 0, 0, 0.8);
  border-color: red;
  text-shadow: 0 0 10px red;
  box-shadow: 0 0 15px red;
}

.wall-btn {
  grid-column: 1 / -1;
}

.fwiendCount {
  color: red;
}
/* This theme is made by "sophie" more can be found at: https://sophiezhng.github.io/my-space-windows-93-themes */

.tableRight {
  background: #730000;
}

.boxHead {
  color: #fff;
}
.box {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.rightHead {
  color: #fff;
  background: red;
}

div#footer {
  bottom: 0;
  font-size: 0;
  left: 500px;
  position: fixed;
  pointer-events: none;
}

.fwiendFace,
.tableLeft {
  transition: 0.5s;
  background: #ffffff00;
}

.box.blog {
  background: #730000;
}

.fwiendFace:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

.tableLeft:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

#sMsg,
#block,
#report,
#add,
#remove {
  color: white;
  background-image: url(https://cdn.everskies.com/media/attachment/0mxsTTt7Yi7uNDU5_Sj3.gif);
  background-size: 40%;
}

a {
  color: red;
}

a:hover {
  animation: changeColor 1s linear infinite;
  text-shadow: 2px 2px 4px red;
}

::selection {
  background: #ff000050;
}

.blinkYellow,
.blinkViolet {
  animation: blinkingTextRed 0.3s infinite;
}

.blinkGreen {
  animation: blinkingTextWhite 0.3s infinite;
}

@keyframes blinkingTextWhite {
  0% {
    color: black;
  }

  49% {
    color: white;
  }
  50% {
    color: white;
  }
  99% {
    color: white;
  }
  100% {
    color: black;
  }
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    transform: translate(1px, 1px) rotate(0deg);
  }
}

@keyframes changeColor {
  0% {
    color: white;
  }
  10% {
    color: red;
  }
  20% {
    color: white;
  }
  30% {
    color: red;
  }
  40% {
    color: white;
  }
  50% {
    color: red;
  }
  60% {
    color: white;
  }
  70% {
    color: red;
  }
  80% {
    color: white;
  }
  90% {
    color: red;
  }
  100% {
    color: white;
  }
}

.fwiendFace img {
  filter: grayscale(100%);
}

.tableLeft img {
  filter: grayscale(100%);
}

/* ============ MUSIC GALLERY STYLES ============ */

.music-gallery-container {
  margin-top: 120px;
  padding: 40px 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInDown 0.6s ease-out;
}

.gallery-header h1 {
  font-size: 48px;
  margin: 0;
  letter-spacing: 2px;
}

.gallery-header p {
  font-size: 14px;
  letter-spacing: 1px;
}

/* Music gallery grid layout */
.music-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Track card styling */
.track-card {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: slideUp 0.5s ease-out;
}

.track-card:hover:not(.placeholder) {
  transform: translateY(-8px) scale(1.05);
  border-color: red;
  box-shadow:
    0 0 20px rgba(255, 0, 0, 0.6),
    0 10px 30px rgba(0, 0, 0, 0.8);
}

.track-card.playing {
  border-color: red;
  background: rgba(115, 0, 0, 0.3);
  box-shadow:
    0 0 20px rgba(255, 0, 0, 0.5),
    inset 0 0 20px rgba(255, 0, 0, 0.1);
  animation: pulseGlow 1.5s ease-in-out infinite;
}

.track-card.placeholder {
  opacity: 0.6;
  border-style: dashed;
}

.track-card.placeholder:hover {
  transform: none;
  border-color: white;
  box-shadow: none;
}

/* Album art container */
.track-card-art {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: #000;
}

.track-card-art img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.track-card:hover .track-card-art img {
  transform: scale(1.1) rotate(2deg);
}

/* Placeholder art styling */
.placeholder-art {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #330000, #730000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.2);
  font-family: BLKCHCRY;
}

/* Track overlay on hover */
.track-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.track-card:hover .track-overlay {
  opacity: 1;
}

/* Play button on card overlay */
.card-play-btn {
  background: #730000;
  color: white;
  border: 2px solid white;
  padding: 12px 24px;
  font-family: BLKCHCRY;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-play-btn:hover:not(:disabled) {
  background: white;
  color: black;
  box-shadow: 0 0 15px red;
  text-shadow: 0 0 5px red;
}

.card-play-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Track info section */
.track-card-info {
  padding: 15px;
  background: #000;
  border-top: 1px solid #330000;
}

.track-name {
  margin: 0 0 5px 0;
  color: white;
  font-size: 16px;
  font-family: BLKCHCRY;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.track-artist {
  margin: 0 0 3px 0;
  color: red;
  font-size: 12px;
  font-family: LeLabyrinthedesChevaliers;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.track-duration {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-family: monospace;
}

/* Mini player styling */
.track-player {
  padding: 10px;
  background: #330000;
  border-top: 1px solid red;
}

.track-player.hidden {
  display: none;
}

.mini-player {
  width: 100%;
}

.mini-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: black;
  border: 1px solid #730000;
  border-radius: 4px;
}

.mini-btn {
  background: #730000;
  color: white;
  border: 1px solid white;
  padding: 4px 8px;
  cursor: pointer;
  font-family: BLKCHCRY;
  font-size: 12px;
  transition: 0.2s;
  flex-shrink: 0;
}

.mini-btn:hover {
  background: white;
  color: black;
}

.mini-progress {
  flex: 1;
  height: 4px;
  background: #1a0000;
  cursor: crosshair;
  border: 1px solid #730000;
  position: relative;
  border-radius: 2px;
}

.mini-progress-bar {
  height: 100%;
  background: red;
  width: 0%;
  box-shadow: 0 0 5px red;
  transition: width 0.1s linear;
  border-radius: 2px;
}

.mini-timer {
  font-family: monospace;
  font-size: 11px;
  color: red;
  flex-shrink: 0;
  text-shadow: 0 0 3px red;
}

/* ============ ANIMATION KEYFRAMES ============ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
  }
  100% {
    transform: rotate(360deg);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 20px rgba(255, 0, 0, 0.5),
      inset 0 0 20px rgba(255, 0, 0, 0.1);
  }
  50% {
    box-shadow:
      0 0 30px rgba(255, 0, 0, 0.8),
      inset 0 0 30px rgba(255, 0, 0, 0.2);
  }
  100% {
    box-shadow:
      0 0 20px rgba(255, 0, 0, 0.5),
      inset 0 0 20px rgba(255, 0, 0, 0.1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .music-gallery {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 10px;
  }

  .music-gallery-container {
    margin-top: 100px;
    padding: 20px 10px;
  }

  .gallery-header h1 {
    font-size: 36px;
  }

  .track-card:hover:not(.placeholder) {
    transform: translateY(-4px) scale(1.02);
  }
}
@media (max-width: 768px) {
  .main {
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    padding: 10px;
  }

  .topLeft,
  .topRight {
    width: 100%;
    max-width: 100%;
  }

  .box {
    flex-direction: column;
    align-items: center;
  }

  .boxHead {
    text-align: center;
  }

  .divider {
    width: 100%;
    height: auto;
  }

  .tabs {
    flex-direction: column;
  }

  .tab-btn {
    border-right: none;
    border-bottom: 1px solid #333;
  }

  .socials-grid {
    grid-template-columns: 1fr;
  }

  .audio-skin {
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
  }

  .equalizer {
    display: none;
  }

  .music-disk {
    width: 30px;
    height: 30px;
  }

  #header p,
  .header-text {
    font-size: 28px;
  }

  div#hSub {
    top: 40px;
    padding: 8px 12px;
  }

  .gallery-header h1 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  div#header {
    padding: 2px 10px;
  }

  div#hSub {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .music-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-header h1 {
    font-size: 28px;
  }

  .track-card-info {
    padding: 12px;
  }

  .track-name {
    font-size: 14px;
  }
}
