/* === Dark Frutiger Aero x Early 2000s MySpace (Side Categories + Center Video) === */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === BODY === */
body {
  background: url('https://i.redd.it/dark-frutiger-aero-v0-ehuxvgitkd7b1.jpg?width=1920&format=pjpg&auto=webp&s=961edbe02c90993c0528b99ff8a2d1040000597e')
    no-repeat center center fixed;
  background-size: cover;
  font-family: "Tahoma", "Verdana", sans-serif;
  color: #eaf9ff;
  cursor: url('https://cur.cursors-4u.net/smilies/smi-3/smi277.cur'), auto;
  overflow-x: hidden;
}

/* === CONTAINER === */
#container {
  width: 90%;
  max-width: 1400px;
  margin: 120px auto 60px auto;
  background: transparent;
  padding: 20px;
}

/* === HEADER === */
header {
  text-align: center;
  margin-bottom: 50px;
}

header h1 {
  font-size: 2.8em;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

header p {
  font-size: 1.2em;
  color: #b6f7ff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
  margin-top: 10px;
}

/* === TOP MUSIC PLAYER BAR === */
.custom-audio-player {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 60%;
  max-width: 700px;
  padding: 10px 20px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.1); /* transparent glass background */
  backdrop-filter: blur(12px);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
  color: #00ffff;
  font-family: "Tahoma", sans-serif;
}

.custom-audio-player button.play-btn {
  background: rgba(0, 255, 255, 0.2);
  border: 1px solid #00ffff;
  border-radius: 8px;
  color: #00ffff;
  font-size: 1.2em;
  cursor: pointer;
  padding: 6px 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.custom-audio-player button.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}

.custom-audio-player .progress-bar {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 8px;
  background: rgba(0, 255, 255, 0.2);
  accent-color: #00ffff;
  cursor: pointer;
}

.custom-audio-player .progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00ffff;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
  cursor: pointer;
}

.custom-audio-player .progress-bar::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00ffff;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
  cursor: pointer;
}

.custom-audio-player .time {
  font-size: 0.9em;
}

}

/* === GRID LAYOUT FOR SIDE CATEGORIES + VIDEO === */
#content {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

/* === FLOATING GLASS CARDS === */
.floating-box {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(130%);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 12px rgba(0, 255, 255, 0.3),
    inset 0 1px 25px rgba(255, 255, 255, 0.08);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  min-height: 240px;
}

/* Reflection overlay for wet glass */
.floating-box::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    ellipse at top left,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );
  opacity: 0.3;
  pointer-events: none;
  transform: rotate(15deg);
}

/* Hover pop-out */
.floating-box:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 25px rgba(0, 255, 255, 0.5),
    0 0 60px rgba(0, 150, 255, 0.4);
}

/* === VIDEO PLAYER CENTER === */
#video-player {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(140%);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 18px rgba(0, 255, 255, 0.35),
    inset 0 2px 25px rgba(255, 255, 255, 0.08);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

#video-player:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 30px rgba(0, 255, 255, 0.5),
    0 0 70px rgba(0, 150, 255, 0.4);
}

#video-player video {
  width: 100%;
  max-width: 600px;
  border-radius: 14px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* === TYPOGRAPHY === */
.floating-box h2 {
  color: #a4e8ff;
  font-size: 1.9em;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.9);
  margin-bottom: 14px;
}

.floating-box p {
  font-size: 1.1em;
  color: #e8faff;
  line-height: 1.8em;
}

/* === SIDEBAR IMAGES === */
aside img {
  width: 220px;
  border-radius: 16px;
  margin-bottom: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* === LINKS === */
a {
  color: #71e5ff;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

/* === FOOTER === */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #b8eaff;
  opacity: 0.85;
  margin-top: 80px;
}

/* === CURSOR TRAIL EFFECT === */
.cursor-trail {
  position: fixed;
  width: 14px;
  height: 14px;
  background: rgba(0, 255, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
  animation: fadeOut 0.9s linear forwards;
  z-index: 9999;
}

@keyframes fadeOut {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(0.5); opacity: 0; }
}
