body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: black;
  color: white;
  overflow-x: hidden;
  -webkit-user-select: none;
  user-select: none;
  background: #000;
}

#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* BG */
.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url('https://i.ibb.co.com/9HQCvdjn/1775328895589.png') center/cover;
  filter: brightness(.3) saturate(1.2);
  z-index: -2;
}

@media (max-width: 400px) {
  .support-options {
    grid-template-columns: 1fr;
  }
}

/* SCANLINE */
.scanline {
  position: fixed;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg,
      rgba(255, 255, 255, .03) 1px,
      transparent 2px);
  animation: scan 6s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes scan {
  to {
    background-position: 0 100%;
  }
}

/* CONTAINER */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* CARD */
.card {
  width: 100%;
  max-width: 380px;
  padding: 25px;
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.7);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
      rgba(0, 255, 255, 0.1),
      transparent 40%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 70px rgba(0, 255, 255, 0.4);
}

/* GLITCH TEXT */
.glitch {
  position: relative;
  color: cyan;
  font-weight: 700;
  text-shadow: 0 0 10px cyan;
  font-size: 2rem;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.glitch::before {
  animation: glitchTop 2s infinite;
  color: #ff0055;
  left: 2px;
}

.glitch::after {
  animation: glitchBottom 2s infinite;
  color: #0055ff;
  left: -2px;
}

@keyframes glitchTop {
  0% {
    clip-path: inset(0 0 80% 0);
  }

  50% {
    clip-path: inset(0 0 20% 0);
  }

  100% {
    clip-path: inset(0 0 80% 0);
  }
}

@keyframes glitchBottom {
  0% {
    clip-path: inset(80% 0 0 0);
  }

  50% {
    clip-path: inset(20% 0 0 0);
  }

  100% {
    clip-path: inset(80% 0 0 0);
  }
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid cyan;
  box-shadow: 0 0 20px cyan;
  object-fit: cover;
}

.status-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: -5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.status-dot.online {
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
}

.status-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.status-text.online {
  color: #00ff88;
}

/* AVATAR COMPACT */
.avatar-box {
  text-align: center;
  margin-top: 10px;
  position: relative;
  min-height: 250px;
}

#avatar3d {
  width: 100%;
  height: 250px;
  cursor: grab;
  z-index: 2;
  position: relative;
}

#avatar3d:active {
  cursor: grabbing;
}

#avatarLoader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

/* COPY BUTTON */
.center-text {
  text-align: center;
  margin-top: 15px;
}

.copy-btn {
  padding: 12px 20px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.5);
  color: cyan;
  cursor: pointer;
  border-radius: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.copy-btn:hover {
  background: cyan;
  color: black;
  box-shadow: 0 0 20px cyan;
  transform: translateY(-2px);
}

.copy-btn:active {
  transform: translateY(0) scale(0.95);
}

.copy-btn.copied {
  background: #00ff88;
  border-color: #00ff88;
  color: black;
  box-shadow: 0 0 20px #00ff88;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 5px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}

.stat h2 {
  margin: 0;
  font-size: 1.2rem;
  color: cyan;
}

.stat span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.stat:hover {
  transform: scale(1.05);
  background: rgba(0, 255, 255, 0.1);
  border-color: cyan;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* SUPPORT MINIMALIST */
/* ROBUX DONATION */
.robux-trigger {
  background: rgba(255, 180, 0, 0.1);
  color: #ffb400;
  border: 1px solid rgba(255, 180, 0, 0.3);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.robux-trigger:hover {
  background: #ffb400;
  color: black;
  box-shadow: 0 0 20px rgba(255, 180, 0, 0.4);
}

/* ROBUX MODAL BOX */
.robux-modal-box {
  max-width: 350px;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(255, 180, 0, 0.3);
  border-radius: 20px;
  padding: 25px;
}

/* ROBUX MODAL REFINEMENT */
.robux-modal-box {
  position: relative;
  max-width: 310px;
  width: 85%;
  background: rgba(10, 10, 10, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 180, 0, 0.2);
  border-radius: 28px;
  padding: 30px 20px 20px 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  margin: auto;
}

.robux-modal-header {
  text-align: center;
  margin-bottom: 15px;
}

.robux-icon-vfx {
  font-size: 24px;
  color: #ffb400;
  text-shadow: 0 0 15px rgba(255, 180, 0, 0.5);
  margin-bottom: 8px;
}

.robux-modal-header h3 {
  font-size: 11px;
  letter-spacing: 3px;
  opacity: 0.9;
  margin-bottom: 3px;
}

.robux-modal-header p {
  font-size: 8px;
  letter-spacing: 0.5px;
  opacity: 0.4;
}

.robux-modal-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 2px 15px 2px;
  scroll-snap-type: x mandatory;
}

/* Slim Scrollbar */
.robux-modal-grid::-webkit-scrollbar {
  height: 2px;
}
.robux-modal-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
.robux-modal-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 180, 0, 0.5);
}

.rbx-item {
  flex: 0 0 85px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 8px;
  border-radius: 14px;
  color: #ffb400;
  font-size: 14px;
  font-weight: 600;
  scroll-snap-align: center;
  transition: all 0.4s ease;
}

.rbx-item::after {
  content: '\f51e';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-left: 6px;
  opacity: 0.8;
}

.rbx-item:hover {
  background: rgba(255, 180, 0, 0.1);
  border-color: #ffb400;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 180, 0, 0.15);
}

/* MODAL FIX & CENTERING */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  /* Force Flex Centering */
  justify-content: center;
  align-items: center;
}

.close-robux {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 20px;
  color: white;
  cursor: pointer;
  opacity: 0.3;
  transition: 0.3s;
  z-index: 10;
}

.close-robux:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.support-section {
  margin-top: 20px;
}

.support-card.small {
  background: rgba(255, 0, 100, 0.03);
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 0, 100, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.support-card.small:hover {
  border-color: #ff0064;
  background: rgba(255, 0, 100, 0.06);
}

.support-header-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-icon-mini {
  font-size: 14px;
  color: #ff0064;
  animation: heartBeat 1.5s infinite;
}

.support-title-mini {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 900;
  color: #ff0064;
}

.support-options-mini {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.support-link.mini {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.saweria {
  background: rgba(250, 187, 0, 0.1);
  color: #fabb00;
  border: 1px solid rgba(250, 187, 0, 0.3);
}

.saweria:hover {
  background: #fabb00;
  color: black;
  box-shadow: 0 0 20px rgba(250, 187, 0, 0.4);
}

@keyframes heartBeat {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* TAG */
.tagline {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #ff0055;
  text-shadow: 0 0 10px #ff0055;
}

/* ICON */
.icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.icons a {
  font-size: 22px;
  color: white;
  transition: all 0.3s;
  opacity: 0.7;
}

.icons a:hover {
  color: cyan;
  opacity: 1;
  transform: scale(1.3);
  text-shadow: 0 0 15px cyan;
}

/* BUTTONS */
.button-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: cyan;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  background: rgba(0, 255, 255, 0.05);
}

.btn:hover {
  background: cyan;
  color: black;
  box-shadow: 0 0 25px cyan;
  transform: translateY(-2px);
}

.main-btn {
  flex: 1;
}

.qr-btn {
  width: 55px;
}

.discord-btn {
  margin-top: 10px;
  width: 100%;
  box-sizing: border-box;
}

/* ROBLOX ITEMS */
.items-section {
  margin-top: 25px;
}

.items-title {
  text-align: center;
  color: cyan;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.items-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 15px 5px;
  scroll-behavior: smooth;
  justify-content: flex-start;
}

.items-container:has(> :nth-child(1):last-child),
.items-container:has(> :nth-child(2):last-child) {
  justify-content: center;
}

.items-container::-webkit-scrollbar {
  height: 4px;
}

.items-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.items-container::-webkit-scrollbar-thumb {
  background: cyan;
  border-radius: 10px;
  box-shadow: 0 0 10px cyan;
}

.no-items {
  font-size: 12px;
  opacity: 0.5;
  grid-column: span 3;
  text-align: center;
}

.item-card {
  width: 70px;
  min-width: 70px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-card:hover {
  transform: scale(1.1) translateY(-5px);
  border-color: cyan;
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.item-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 3px;
}

.item-name {
  font-size: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.8;
  margin-top: 1px;
}

.equipped {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 8px;
  background: #00ff88;
  color: black;
  padding: 2px 6px;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 0 0 10px #00ff88;
}

.skeleton {
  width: 70px;
  min-width: 70px;
  height: 85px;
  border-radius: 10px;
  background: linear-gradient(90deg, #111 25%, #222 50%, #111 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.live-indicator {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  z-index: 100;
}

.live-indicator::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.playing-badge {
  display: none;
  background: linear-gradient(90deg, rgba(0, 255, 255, 0.05), transparent);
  border-left: 3px solid cyan;
  margin: 20px 0;
  padding: 12px 15px;
  border-radius: 4px 12px 12px 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
}

.playing-badge::after {
  content: 'LIVE_SESSION';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%) rotate(90deg);
  font-size: 7px;
  letter-spacing: 2px;
  opacity: 0.2;
  font-weight: 900;
}

.playing-label {
  font-size: 8px;
  color: cyan;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.playing-label::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse 1s infinite;
}

.game-name {
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.join-btn {
  display: inline-block;
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 6px 15px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.join-btn:hover {
  background: #00ff88;
  color: black;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .card {
    padding: 20px;
  }

  .glitch {
    font-size: 1.5rem;
  }

  .profile {
    width: 60px;
    height: 60px;
  }
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  position: relative;
  background: rgba(10, 10, 10, 0.95);
  margin: 15vh auto;
  padding: 25px;
  border: 1px solid rgba(0, 255, 255, 0.4);
  width: 85%;
  max-width: 350px;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 0 80px rgba(0, 255, 255, 0.3);
  transform: scale(0.7);
  animation: scaleUp 0.4s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-content img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.close-modal:hover {
  color: cyan;
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  to {
    transform: scale(1);
  }
}

/* PRELOADER PROFESIONAL */
#preloader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: cyan;
  font-family: 'Orbitron', sans-serif;
  transition: opacity 0.8s ease;
}

.loader-brand {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 15px;
  margin-bottom: 30px;
  text-shadow: 0 0 30px cyan;
  animation: logoPulse 2s infinite alternate;
}

@keyframes logoPulse {
  from {
    opacity: 0.6;
    filter: blur(2px);
  }

  to {
    opacity: 1;
    filter: blur(0px);
  }
}

.loader-terminal {
  width: 300px;
  background: rgba(0, 255, 255, 0.03);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.1);
}

.terminal-header {
  font-size: 10px;
  margin-bottom: 10px;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#terminalText {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  height: 60px;
  color: rgba(0, 255, 255, 0.8);
}

.loader-bar {
  width: 100%;
  height: 1px;
  background: rgba(0, 255, 255, 0.1);
  margin-top: 15px;
  position: relative;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: cyan;
  box-shadow: 0 0 15px cyan;
  transition: width 0.3s ease;
}

/* GAME PRESENCE BADGE */
.game-presence {
  margin-top: 10px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 8px 15px;
  border-radius: 12px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #00ff88;
  animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
  }

  50% {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  }

  100% {
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
  }
}

.join-btn {
  background: #00ff88;
  color: #000;
  text-decoration: none;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 10px;
  margin-left: auto;
}

/* ABOUT SECTION */
.about-section {
  margin-top: 25px;
  padding: 0 5px;
}

.about-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  position: relative;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-card:hover {
  border-color: cyan;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.1);
}

.about-title {
  font-size: 11px;
  color: cyan;
  letter-spacing: 4px;
  font-weight: 900;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 0 10px cyan;
}

.about-text {
  font-size: 12px;
  line-height: 1.8;
  opacity: 0.8;
  margin: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.8px;
  font-weight: 300;
  color: #e0e0e0;
}

.cyan {
  color: cyan;
  font-weight: bold;
}

/* MUSIC CONTROL */
.music-control {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 15px;
  border-radius: 30px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  cursor: pointer;
  z-index: 100;
  transition: 0.3s;
  color: cyan;
}

.music-control:hover {
  background: cyan;
  color: black;
  box-shadow: 0 0 20px cyan;
}

.music-control.playing i {
  animation: musicPulse 1.2s infinite;
}

@keyframes musicPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.music-label {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: bold;
}

/* ENTRANCE ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Sequential Delays */
.reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal:nth-child(4) {
  transition-delay: 0.4s;
}

.reveal:nth-child(5) {
  transition-delay: 0.5s;
}

.reveal:nth-child(6) {
  transition-delay: 0.6s;
}