/* ============= Base ============= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; height: 100%; overflow: hidden; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: white;
  background: #0a0a0a;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
button { font-family: inherit; }
input { font-family: inherit; }

/* ============= Aurora background ============= */
#aurora-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #1e1b4b;
  transition: background-color 2s ease;
}
.aurora-band {
  position: absolute;
  width: 200%;
  height: 70%;
  left: -50%;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(80px);
  will-change: transform;
  transition: background 2s ease;
}

/* ============= Hidden YT player ============= */
#yt-player-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  left: -9999px;
  top: -9999px;
}

/* ============= Top bar ============= */
#top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  transition: opacity 0.6s ease;
}
.logo {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  opacity: 0.9;
}
.top-right {
  display: flex;
  gap: 8px;
  align-items: center;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.icon-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}
.icon-btn.active-timer {
  background: rgba(255,255,255,0.25);
}

/* ============= Player main ============= */
#player-main {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px 140px;
}
.now-label {
  font-size: 11px;
  opacity: 0.6;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: opacity 0.6s ease;
}
.track-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 6px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  max-width: 80vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-source-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  padding: 2px 4px;
  border-radius: 0;
  background: none;
  color: rgba(255,255,255,0.38);
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: color 0.2s, opacity 0.6s ease;
  white-space: nowrap;
}
.track-source-link:hover {
  color: rgba(255,255,255,0.62);
}
.track-source-link.hidden {
  display: none;
}
.scene-name-display {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 36px;
  letter-spacing: 1px;
  transition: opacity 0.6s ease;
}

/* ============= Progress ============= */
.progress {
  width: 380px;
  max-width: 80vw;
  margin-bottom: 28px;
  transition: opacity 0.6s ease;
}
.progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.progress-bar:hover .progress-fill {
  background: white;
}
.progress-fill {
  height: 100%;
  background: rgba(255,255,255,0.85);
  width: 0%;
  transition: background 0.2s;
}
.progress-time {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  opacity: 0.65;
  margin-top: 8px;
}

/* ============= Controls ============= */
.controls {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.ctl-slot {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctl {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: white;
  cursor: pointer;
  font-size: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, transform 0.2s, opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#btn-dislike svg {
  transform: scaleX(-1);
}
.ctl:hover { background: rgba(255,255,255,0.22); transform: scale(1.05); }
.ctl:active { transform: scale(0.95); }
.ctl.active { background: rgba(255,255,255,0.3); }
.ctl-play {
  width: 72px;
  height: 72px;
  background: white;
  color: #1e1b4b;
  font-size: 26px;
  font-weight: bold;
}
.ctl-play:hover { background: white; transform: scale(1.08); }
.ctl svg { width: 18px; height: 18px; fill: currentColor; }
.ctl-play svg { width: 36px; height: 36px; fill: currentColor; }
.ctl.liked svg { fill: #ec4899; }

/* ============= Secondary controls ============= */
.secondary-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  transition: opacity 0.6s ease;
}
.volume-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.volume-wrap .icon-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  font-size: 14px;
}
.volume-wrap .icon-btn:hover { background: rgba(255,255,255,0.1); }
#volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  outline: none;
  border-radius: 2px;
}
#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
}
#volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.timer-btn-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.timer-display {
  margin-left: 8px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}
.timer-display.hidden { display: none; }

/* ============= Scene selector ============= */
#scene-selector {
  position: fixed;
  bottom: 24px;
  left: 0; right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  transition: opacity 0.6s ease;
}
.scene-selector-inner {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 100%;
}
.scene-manage-btn {
  padding: 2px 4px;
  margin-top: 2px;
  border-radius: 0;
  background: none;
  color: rgba(255,255,255,0.38);
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: color 0.2s, opacity 0.6s ease;
  white-space: nowrap;
}
.scene-manage-btn:hover {
  color: rgba(255,255,255,0.62);
}
.scene-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s;
  white-space: nowrap;
}
.scene-btn-like-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}
.scene-btn.active .scene-btn-like-icon {
  fill: #ec4899;
}
.scene-btn.active {
  background: rgba(255,255,255,0.95);
  color: #1e1b4b;
  font-weight: 500;
}
.scene-btn:hover:not(.active) {
  background: rgba(255,255,255,0.2);
}
.scene-btn.highlight {
  border-color: rgba(255,255,255,0.6);
  animation: pulse-scene 1.5s ease infinite;
}
@keyframes pulse-scene {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* ============= UI auto-hide ============= */
body.ui-hidden #top-bar,
body.ui-hidden #player-main .now-label,
body.ui-hidden #player-main .track-source-link,
body.ui-hidden #player-main .scene-name-display,
body.ui-hidden .ctl-slot .ctl,
body.ui-hidden .secondary-controls,
body.ui-hidden #scene-selector,
body.ui-hidden #cookie-banner {
  opacity: 0;
  pointer-events: none;
}
body.ui-hidden { cursor: none; }

/* ============= Modals ============= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}
.modal-backdrop.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
  background: rgba(15, 15, 25, 0.88);
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(30px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 440px;
  max-height: 85vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}
.modal-content.modal-wide { max-width: 560px; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.modal-header h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
}
.modal-close {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.modal-close::before,
.liked-item button[data-act="unlike"]::before,
.liked-item button[data-act="undislike"]::before {
  content: '';
  display: block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.3 5.71a1 1 0 0 0-1.41 0L12 10.59 7.11 5.7A1 1 0 0 0 5.7 7.11L10.59 12l-4.89 4.89a1 1 0 1 0 1.41 1.41L12 13.41l4.89 4.89a1 1 0 0 0 1.41-1.41L13.41 12l4.89-4.89a1 1 0 0 0 0-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.3 5.71a1 1 0 0 0-1.41 0L12 10.59 7.11 5.7A1 1 0 0 0 5.7 7.11L10.59 12l-4.89 4.89a1 1 0 1 0 1.41 1.41L12 13.41l4.89 4.89a1 1 0 0 0 1.41-1.41L13.41 12l4.89-4.89a1 1 0 0 0 0-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.modal-close::before {
  width: 14px;
  height: 14px;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-content p { font-size: 14px; line-height: 1.6; opacity: 0.85; margin-bottom: 16px; }
.legal-text { font-size: 13px; line-height: 1.7; opacity: 0.8; }
.legal-text h3 { font-size: 15px; margin: 20px 0 8px; opacity: 1; }
.legal-text h3:first-child { margin-top: 0; }

.btn-primary {
  background: white;
  color: #1e1b4b;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: all 0.2s;
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }
.profile-list-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.profile-list-label {
  flex-shrink: 0;
}
.profile-list-badge {
  min-width: 22px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.profile-list-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}
.btn-open-likes svg {
  fill: #ec4899;
}
.btn-open-dislikes svg {
  transform: scaleX(-1);
}
.btn-text {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: none;
  padding: 8px;
  cursor: pointer;
  font-size: 12px;
  width: 100%;
  margin-top: 12px;
}
.btn-text:hover { color: rgba(255,255,255,0.9); }

input[type="email"], input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: white;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}
input[type="email"]:focus, input[type="text"]:focus {
  border-color: rgba(255,255,255,0.4);
}

.status-msg {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-top: 12px;
}
.status-msg.success {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  color: #bbf7d0;
}
.status-msg.error {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  color: #fecaca;
}
.status-msg.hidden { display: none; }

.account-info {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 14px;
}
.account-info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.account-info-row:last-child { margin-bottom: 0; }
.account-info-row .label { opacity: 0.6; }
.account-info-row .value { font-weight: 500; }

.liked-list { display: flex; flex-direction: column; gap: 8px; }
.liked-empty { text-align: center; opacity: 0.6; padding: 24px 0; font-size: 14px; }
.liked-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: background 0.15s;
}
.liked-item:hover { background: rgba(255,255,255,0.1); }
.liked-title {
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.liked-item button {
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  font-size: 11px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.liked-item button[data-act="unlike"],
.liked-item button[data-act="undislike"] {
  font-size: 0;
  line-height: 0;
}
.liked-item button[data-act="unlike"]::before,
.liked-item button[data-act="undislike"]::before {
  width: 12px;
  height: 12px;
}
.liked-item button:hover { background: rgba(255,255,255,0.2); }

.scenes-manage-list { display: flex; flex-direction: column; gap: 8px; }
.scenes-manage-empty { text-align: center; opacity: 0.6; padding: 24px 0; font-size: 14px; }
.scene-manage-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  cursor: pointer;
}
.scene-manage-row:hover {
  background: rgba(255,255,255,0.08);
}
.scene-manage-name {
  flex: 1;
  font-size: 14px;
}
.scene-manage-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #c084fc;
  cursor: pointer;
  flex-shrink: 0;
}
.scenes-manage-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
#btn-scenes-manage.highlight {
  border-color: rgba(255,255,255,0.6);
  animation: pulse-scene 1.5s ease infinite;
}

#timer-setup.hidden,
#timer-active.hidden {
  display: none;
}
.timer-presets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.timer-preset {
  padding: 14px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}
.timer-preset:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}
.timer-custom {
  margin-bottom: 4px;
}
.timer-custom-label {
  display: block;
  font-size: 12px;
  opacity: 0.65;
  margin-bottom: 8px;
}
.timer-custom-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
#timer-custom-min,
.timer-custom-start {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 13px;
  transition: all 0.2s;
}
#timer-custom-min {
  text-align: center;
  -moz-appearance: textfield;
}
#timer-custom-min::-webkit-outer-spin-button,
#timer-custom-min::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#timer-custom-min:focus {
  outline: none;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
}
#timer-custom-min::placeholder {
  color: rgba(255,255,255,0.35);
}
.timer-custom-start {
  cursor: pointer;
}
.timer-custom-start:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}
.timer-active-label {
  font-size: 12px;
  opacity: 0.65;
  text-align: center;
  margin-bottom: 8px;
}
.timer-modal-remaining {
  font-size: 42px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: center;
  letter-spacing: 2px;
  margin: 8px 0 12px;
}
.timer-active-hint {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.75;
  text-align: center;
  margin-bottom: 20px;
}
#timer-active .btn-text {
  display: block;
  width: 100%;
  text-align: center;
}

#toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  padding: 12px 20px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
#toast.show {
  opacity: 1;
  bottom: 100px;
}

#empty-scene {
  position: fixed;
  inset: 0;
  z-index: 6;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
#empty-scene.visible { display: flex; }
#empty-scene .empty-content {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 24px 32px;
  max-width: 360px;
}

/* ============= Cookie banner ============= */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 20px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  transition: opacity 0.6s ease;
}
#cookie-banner.hidden { display: none; }
#cookie-banner p {
  font-size: 13px;
  opacity: 0.85;
  margin: 0;
  max-width: 520px;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-actions button {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 13px;
}
#btn-cookie-accept {
  background: white;
  color: #1e1b4b;
  font-weight: 600;
}
#btn-cookie-more {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ============= Mobile ============= */
@media (max-width: 600px) {
  .track-title { font-size: 26px; }
  .scene-name-display { margin-bottom: 28px; }
  .ctl { width: 44px; height: 44px; }
  .ctl-slot { width: 44px; height: 44px; }
  .ctl-play { width: 64px; height: 64px; }
  .controls { gap: 14px; }
  .secondary-controls { flex-wrap: wrap; justify-content: center; }
  #scene-selector {
    padding: 0 16px 8px;
    bottom: 16px;
  }
  .scene-selector-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
  }
  .scene-selector-inner::-webkit-scrollbar { display: none; }
  .scene-btn { flex-shrink: 0; }
  #player-main { padding: 100px 16px 120px; }
  #top-bar { padding: 14px 16px; }
  .modal-content { padding: 22px; }
  #cookie-banner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-band {
    animation: none !important;
    transform: none !important;
    transition: background 2s ease;
  }
}
