* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: transparent;
  color: #f5f5f5;
}

body {
  min-height: 100vh;
  position: relative;
  background: url("../img/bg.jpg") center center / cover no-repeat fixed;
}

.hero {
  min-height: 100vh;
  display: flex;
}

.left-side,
.right-side {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.left-side {
  justify-content: flex-start;
  padding-left: 80px;
}

.title-wrap {
  width: 100%;
}

#site-name {
  display: block;
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #f2f2f2;
  line-height: 1.1;
  white-space: pre-line;
}

.auth-box {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-btn,
.secondary-btn {
  width: 100%;
  height: 54px;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-btn {
  border: none;
  background: #f2f2f2;
  color: #111111;
  font-weight: bold;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #f2f2f2;
}

.main-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.footer {
  position: fixed;
  left: 0;
  bottom: 14px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .left-side,
  .right-side {
    width: 100%;
    min-height: 50vh;
    justify-content: center;
    padding: 30px;
  }

  .left-side {
    padding-left: 30px;
  }

  #site-name {
    font-size: 42px;
    text-align: center;
  }

  .auth-box {
    max-width: 320px;
    width: 100%;
  }
}

.link-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.form-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(6px);
}

.form-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 8px;
  text-align: center;
}

.form-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.form-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box input {
  width: 100%;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f2f2f2;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
}

.form-box input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.mensagem {
  margin-top: 18px;
  text-align: center;
  color: #f2f2f2;
  font-size: 14px;
}

.painel-layout {
  min-height: 100vh;
  display: flex;
  gap: 24px;
  padding: 30px;
}

.painel-centro {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;

  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px;
}

.painel-lateral {
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.categoria-bloco,
.side-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 24px;
}

.categoria-titulo {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.vip-title {
  color: #f0d8ff;
}

.botoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.painel-btn {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #f2f2f2;
  font-size: 13px;
  cursor: pointer;
  transition: 0.25s ease;
  padding: 8px 10px;
  backdrop-filter: blur(4px);
}

.painel-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}

.vip-btn {
  border: 1px solid rgba(214, 168, 255, 0.3);
  background: rgba(214, 168, 255, 0.05);
}

.side-card h3 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 16px;
}

.config-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.config-box label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.config-box input {
  width: 100%;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f2f2f2;
  padding: 0 14px;
  outline: none;
  margin-bottom: 6px;
}

@media (max-width: 1100px) {
  .painel-layout {
    flex-direction: column;
  }

  .painel-lateral {
    width: 100%;
  }

  .botoes-grid {
    grid-template-columns: 1fr;
  }
}

.perfil-info {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.perfil-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.vip-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}

.vip-modal.ativo {
  display: flex;
}

.vip-modal-box {
  width: 100%;
  max-width: 980px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
}

.vip-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.vip-topo h2 {
  font-size: 32px;
  font-weight: 300;
  color: #f2f2f2;
}

.fechar-modal {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2f2f2;
  font-size: 24px;
  cursor: pointer;
}

.vip-texto {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 22px;
}

.vip-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vip-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(214, 168, 255, 0.18);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.vip-card h4 {
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 10px;
}

.vip-card p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.vip-buy-btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .vip-cards {
    grid-template-columns: 1fr;
  }
}

.mini-side-card {
  width: 100%;
  min-height: 86px;
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(214, 168, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(214, 168, 255, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.mini-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.58);
}

#vip-contagem {
  font-size: 22px;
  font-weight: 600;
  color: #f6ebff;
}

.side-action-btn,
.side-link-btn {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #f2f2f2;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.side-action-btn:hover,
.side-link-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}

.vip-open-btn {
  background: linear-gradient(135deg, rgba(214, 168, 255, 0.18), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(214, 168, 255, 0.20);
}

.logout-btn {
  background: rgba(255, 255, 255, 0.02);
}

.config-panel {
  display: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 20px;
}

.config-panel.ativo {
  display: block;
}

.vip-modal-box-beauty {
  background:
    radial-gradient(circle at top, rgba(214, 168, 255, 0.12), transparent 35%),
    linear-gradient(180deg, #101010, #0b0b0b);
  border: 1px solid rgba(214, 168, 255, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(214, 168, 255, 0.12);
  border: 1px solid rgba(214, 168, 255, 0.22);
  color: #f5eaff;
  font-size: 13px;
  margin-bottom: 12px;
}

.vip-topo h2 {
  font-size: 34px;
  font-weight: 300;
  color: #ffffff;
}

.beauty-text {
  font-size: 15px;
  max-width: 520px;
  line-height: 1.6;
}

.beauty-vip-cards {
  margin-top: 10px;
}

.beauty-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(214, 168, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.beauty-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(214, 168, 255, 0.14), transparent 45%);
  pointer-events: none;
}

.vip-card-top {
  position: relative;
  z-index: 1;
}

.vip-mini-tag {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.beauty-card h4 {
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 10px;
}

.beauty-card p {
  font-size: 18px;
}

.destaque-vip {
  transform: translateY(-6px);
  border: 1px solid rgba(214, 168, 255, 0.28);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.beauty-buy-btn {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
  .painel-lateral {
    width: 100%;
  }
}

.admin-panel {
  display: none;
  width: 100%;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 18px;
}

.admin-card h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 14px;
}

.admin-resumo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.admin-mini-box {
  min-height: 74px;
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.admin-mini-box span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
}

.admin-mini-box strong {
  font-size: 18px;
  color: #ffffff;
}

.admin-select {
  width: 100%;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f2f2f2;
  padding: 0 14px;
  outline: none;
}

.admin-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.admin-status-text,
.promo-info-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 12px;
}

.destaque-brilho {
  position: relative;
  overflow: hidden;
}

.destaque-brilho::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -35%;
  width: 70%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: rotate(15deg);
  animation: brilhoVip 3s linear infinite;
}

.coroa-vip {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 22px;
}

@keyframes brilhoVip {
  0% {
    left: -40%;
  }
  100% {
    left: 120%;
  }
}

.resultado-box {
  margin-top: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 16px;
}

#consulta-resultado {
  white-space: pre-wrap;
  font-family: monospace;
  color: #eaeaea;
}

.consulta-modal-box {
  max-width: 900px;
}

.consulta-linha {
  display: flex;
  gap: 12px;
  align-items: center;
}

.consulta-linha input {
  flex: 1;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f2f2f2;
  padding: 0 14px;
  outline: none;
}

.consulta-btn {
  width: 170px;
  min-width: 170px;
}

.resultado-topo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
  font-size: 22px;
}

.consulta-acoes {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.consulta-acao-btn {
  width: auto;
  min-width: 170px;
  padding: 0 18px;
}

#consulta-resultado {
  white-space: pre-wrap;
  font-family: monospace;
  color: #eaeaea;
  max-height: 360px;
  overflow: auto;
}

@media (max-width: 700px) {
  .consulta-linha {
    flex-direction: column;
  }

  .consulta-btn,
  .consulta-acao-btn {
    width: 100%;
    min-width: 100%;
  }
}

/* FUNDO ANIMADO MELANCÓLICO */

.bg-animado {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

/* partículas flutuando */
.bg-animado span {
  position: absolute;
  display: block;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  animation: flutuar 25s linear infinite;
  filter: blur(40px);
}

/* posições diferentes */
.bg-animado span:nth-child(1) {
  top: 10%;
  left: 15%;
  animation-duration: 30s;
}

.bg-animado span:nth-child(2) {
  top: 60%;
  left: 70%;
  animation-duration: 25s;
}

.bg-animado span:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-duration: 35s;
}

.bg-animado span:nth-child(4) {
  top: 30%;
  left: 80%;
  animation-duration: 28s;
}

.bg-animado span:nth-child(5) {
  top: 50%;
  left: 40%;
  animation-duration: 32s;
}

/* animação */
@keyframes flutuar {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-120px) scale(1.2);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

/* OLHOS */

.olhos-container {
  position: fixed;
  top: 20%;
  right: 10%;
  display: flex;
  gap: 20px;
  z-index: 2;
  opacity: 0.6;
}

.olho {
  width: 80px;
  height: 80px;
  background: #0d0d0d;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
}

.pupila {
  width: 28px;
  height: 28px;
  background: #f2f2f2;
  border-radius: 50%;
  transition: 0.05s linear;
}

/* =========================
   BOTÕES INSANOS
========================= */

.main-btn,
.secondary-btn,
.painel-btn,
.side-action-btn,
.side-link-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

/* HOVER */
.main-btn:hover,
.secondary-btn:hover,
.painel-btn:hover,
.side-action-btn:hover,
.side-link-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* CLIQUE (pressiona) */
.main-btn:active,
.secondary-btn:active,
.painel-btn:active,
.side-action-btn:active,
.side-link-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* BRILHO DESLIZANTE */
.main-btn::after,
.secondary-btn::after,
.painel-btn::after,
.side-action-btn::after,
.side-link-btn::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -40%;
  width: 60%;
  height: 140%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );
  transform: rotate(20deg);
  transition: 0.6s;
}

.main-btn:hover::after,
.secondary-btn:hover::after,
.painel-btn:hover::after,
.side-action-btn:hover::after,
.side-link-btn:hover::after {
  left: 120%;
}

/* GLOW ESPECIAL BOTÃO PRINCIPAL */
.main-btn {
  box-shadow: 0 0 0 rgba(255,255,255,0);
}

.main-btn:hover {
  box-shadow: 0 0 18px rgba(255,255,255,0.25);
}

/* VIP MAIS FORTE */
.vip-btn:hover {
  box-shadow: 0 0 20px rgba(214,168,255,0.35);
  border: 1px solid rgba(214,168,255,0.4);
}

/* BOTÃO BLOQUEADO (VIP SEM ACESSO) */
.vip-btn.bloqueado {
  animation: tremer 0.2s ease;
  border: 1px solid rgba(255, 80, 80, 0.4);
}

/* TREMER */
@keyframes tremer {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

/* =========================
   CURSOR PERSONALIZADO
========================= */

/* remove cursor padrão */
body {
  cursor: none;
}

/* bolinha principal */
.cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, width 0.2s, height 0.2s;
}

/* rastro */
.cursor-trail {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

/* efeito em botão */
.cursor-hover {
  width: 24px !important;
  height: 24px !important;
  background: rgba(255,255,255,0.8) !important;
}

.cursor-trail-hover {
  width: 70px !important;
  height: 70px !important;
  border: 1px solid rgba(255,255,255,0.4);
}

/* =========================
   LOADER DE ENTRADA
========================= */

.loader-screen {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(214, 168, 255, 0.10), transparent 35%),
    linear-gradient(180deg, #050505, #0a0a0a, #111111);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader-screen.esconder {
  opacity: 0;
  visibility: hidden;
}

.loader-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.loader-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.10);
  border-top: 3px solid rgba(255, 255, 255, 0.85);
  animation: girarLoader 1s linear infinite;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.06);
}

.loader-title {
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #f2f2f2;
}

.loader-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
}

@keyframes girarLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: -1;
}

/* PLAYER LATERAL NIVEL SPOTIFY */

.music-side-card {
  width: 100%;
  border-radius: 22px;
  padding: 18px;
  background: rgba(8, 8, 8, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.music-side-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.music-side-label {
  font-size: 22px;
  font-weight: 500;
  color: #f2f2f2;
}

.music-side-status {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.60);
}

.music-side-now {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  min-height: 42px;
}

.music-side-range {
  width: 100%;
  accent-color: #ffffff;
}

.music-side-actions {
  display: flex;
  gap: 10px;
}

.music-side-btn {
  flex: 1;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: #f2f2f2;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s ease;
}

.music-side-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.music-side-btn-main {
  background: #f2f2f2;
  color: #111111;
  font-weight: 600;
}

.music-side-btn-main:hover {
  background: #ffffff;
}

@media (max-width: 1100px) {
  .music-side-actions {
    flex-direction: column;
  }
}