/* ─────────────────────────────────────────────────────────────
   Roadway Nostalgia — Bus Drivers Highway Music Player
   Glassmorphism design system with neutral chrome on layered artwork.
   ───────────────────────────────────────────────────────────── */

:root {
  --logo-x: 0vw;
  --logo-top: 10vh;
  --logo-size: clamp(2.5rem, 8.5vw, 6.5rem);

  --edge: clamp(1rem, 2.2vw, 1.75rem);
  --glass: rgba(255, 255, 255, 0.12);
  --glass-line: rgba(255, 255, 255, 0.22);
  --shadow-glass: 0 12px 40px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  --text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);

  --body: "Baloo 2", "Kohinoor Devanagari", "Nirmala UI", "Noto Sans Devanagari",
    ui-rounded, system-ui, sans-serif;
  --ui: ui-sans-serif, -apple-system, "Segoe UI", system-ui, sans-serif;

  --swift: 140ms cubic-bezier(0.4, 0, 0.2, 1);
  --glide: 320ms cubic-bezier(0.4, 0, 0.2, 1);
  --settle: 620ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-settle: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

html,
body {
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}

body {
  margin: 0;
  font-family: var(--body);
  color: #fff;
  background: #081214;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow: hidden;
}

/* ── Entrance Animations ─────────────────────────────────────── */

@keyframes rise {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise-left {
  from {
    opacity: 0;
    transform: translate3d(-18px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.topbar,
.logo,
.dock {
  animation: rise var(--settle) both;
}

.topbar {
  animation-delay: 0.28s;
}

.logo {
  animation-delay: 0.06s;
}

.dock {
  animation-delay: 0.16s;
}

.horns {
  animation: rise-left var(--settle) 0.34s both;
}

/* ── Background Crossfade ────────────────────────────────────── */

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #081214;
}

.bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(0.98) contrast(1.02);
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 2s ease-in-out, transform 2s ease-in-out, filter 2s ease-in-out;
  will-change: opacity, transform;
}

.bg__video.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.bg__video.is-inactive {
  opacity: 0;
  transform: scale(1.03);
  z-index: 1;
  pointer-events: none;
}

/* Vintage Film Overlay — Spotlight center with deep corner darkening */
.bg__scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(circle at center,
      rgba(20, 10, 5, 0.25) 0%,
      rgba(15, 8, 3, 0.5) 60%,
      rgba(5, 2, 0, 0.82) 100%);
  pointer-events: none;
}

/* Film grain noise — animated SVG noise filter */
.bg__scrim::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.35;
  mix-blend-mode: overlay;
  animation: grainShift 0.8s steps(4) infinite;
  pointer-events: none;
}

/* Heavy Vignette — deep dark corners fading into clear spotlight center */
.bg__scrim::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 85% 85% at center,
      rgba(0, 0, 0, 0) 15%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0.72) 70%,
      rgba(0, 0, 0, 0.94) 88%,
      rgba(0, 0, 0, 0.98) 100%);
  pointer-events: none;
}

/* Scan lines — old TV / projector horizontal lines */
.bg__scanlines {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.06) 2px,
      rgba(0, 0, 0, 0.06) 4px);
  pointer-events: none;
}

/* Grain animation — subtle jitter for film feel */
@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-2px, 1px);
  }

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

  75% {
    transform: translate(-1px, -2px);
  }

  100% {
    transform: translate(2px, 1px);
  }
}

/* Apply vintage color grading to the videos themselves */
.bg__video {
  filter: brightness(0.92) contrast(1.08) saturate(0.7) sepia(0.25);
}

.bg__video.is-active {
  filter: brightness(0.92) contrast(1.08) saturate(0.7) sepia(0.25);
}

.yt-host {
  position: fixed;
  bottom: -200px;
  right: -200px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  z-index: -9999;
  pointer-events: none;
}

/* ── Layout & Topbar Grid ────────────────────────────────────── */

main.main-content {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: max(var(--edge), env(safe-area-inset-top)) var(--edge) max(var(--edge), env(safe-area-inset-bottom));
  z-index: 5;
}

.topbar {
  position: fixed;
  top: max(1.2rem, env(safe-area-inset-top));
  left: var(--edge);
  right: var(--edge);
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.brand-header,
.bottom-left-widget {
  pointer-events: auto;
}

/* ── Top-Left Now Playing Mini Card Widget ─────────────────────── */

.mini-widget {
  display: none !important;
}

.mini-widget__icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(217, 119, 6, 0.1) 100%);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.mini-widget__info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.mini-widget__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-widget__artist {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Equalizer Bars in Mini Card */
.mini-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  margin-left: 0.2rem;
}

.mini-eq span {
  width: 2px;
  height: 100%;
  background: linear-gradient(to top, #f59e0b, #fef08a);
  border-radius: 1px;
  animation: miniEqAnim 1.2s ease-in-out infinite alternate;
  animation-play-state: paused;
}

.player-card.is-playing~.mini-widget .mini-eq span,
body.is-playing .mini-eq span {
  animation-play-state: running;
}

.mini-eq span:nth-child(1) {
  animation-delay: 0.1s;
  height: 40%;
}

.mini-eq span:nth-child(2) {
  animation-delay: 0.3s;
  height: 80%;
}

.mini-eq span:nth-child(3) {
  animation-delay: 0.5s;
  height: 60%;
}

.mini-eq span:nth-child(4) {
  animation-delay: 0.2s;
  height: 100%;
}

.mini-eq span:nth-child(5) {
  animation-delay: 0.4s;
  height: 50%;
}

@keyframes miniEqAnim {
  0% {
    transform: scaleY(0.25);
  }

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

/* ── Center Travel Tunes Brand Header ───────────────────────────── */

.brand-header {
  justify-self: center;
  text-align: center;
  user-select: none;
}

.brand-title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: "Yatra One", "Baloo 2", sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 30px rgba(245, 158, 11, 0.4);
}

.brand-title__text {
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-title__icon {
  font-size: 0.7em;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.8));
}

.brand-subtitle {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ── Left Bottom Corner Active Passengers Pill Widget ─────────── */

.bottom-left-widget {
  position: fixed;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  left: max(1.5rem, env(safe-area-inset-left));
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(10, 15, 20, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  color: #fff;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  user-select: none;
  transition: all var(--swift);
}

.bottom-left-widget:hover {
  background: rgba(20, 25, 35, 0.65);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 158, 11, 0.25);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseGreen 1.8s ease-in-out infinite;
}

@keyframes pulseGreen {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 6px #22c55e;
  }

  50% {
    transform: scale(1.35);
    opacity: 0.7;
    box-shadow: 0 0 14px #22c55e;
  }
}

.active-users-label {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  letter-spacing: 0.02em;
}

.active-users-label strong {
  color: #fef08a;
  font-weight: 700;
  font-size: 0.75rem;
}

/* ── Right Bottom Corner Morning Bhajans Pill Widget ──────────── */

.bottom-right-widget {
  position: fixed;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  right: max(1.5rem, env(safe-area-inset-right));
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(10, 15, 20, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  color: #fff;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: all var(--swift);
}

.bottom-right-widget:hover {
  background: rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 158, 11, 0.35);
  border-color: rgba(245, 158, 11, 0.6);
}

.bottom-right-widget.is-active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.8), rgba(217, 119, 6, 0.9));
  border-color: rgba(254, 240, 138, 0.9);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.7);
  color: #fff;
}

.bhajan-icon {
  font-size: 0.85rem;
  line-height: 1;
}

.bhajan-label {
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

/* ── Left Vertical Glass Sidebar Dock ─────────────────────────── */

.sidebar-dock {
  display: none !important;
  left: max(1.2rem, var(--edge));
  bottom: max(2rem, env(safe-area-inset-bottom));
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.65rem 0.55rem;
  border-radius: 1.5rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.side-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--swift);
}

.side-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.06);
}

.side-btn:active {
  transform: scale(0.94);
}

.side-btn.is-active {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.18);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.35);
}

/* ── Center Player Container & Dynamic Floating Particles ───────── */

.player-center {
  position: relative;
  width: 100%;
  max-width: 32rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 10;
}

.particles {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  bottom: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.particle-note {
  position: absolute;
  bottom: 0;
  font-size: 1.2rem;
  opacity: 0;
  animation: floatNote 2.4s cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.6));
}

@keyframes floatNote {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.6) rotate(0deg);
  }

  20% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateY(-90px) scale(1.2) rotate(25deg);
  }
}

/* ── Main Music Player Card ─────────────────────────────────────── */

.player-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.6rem 1rem;
  border-radius: 1.8rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  text-align: center;
}

.list {
  max-height: 0;
  overflow-y: auto;
  width: 100%;
  transition: max-height 0.35s ease-in-out, padding 0.35s ease;
  border-radius: 1.2rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.list.is-open {
  max-height: 220px;
  padding: 0.5rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.list ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.list li button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border: none;
  border-radius: 0.8rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--swift);
}

.list li button:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.list li.is-current button {
  background: transparent;
  color: #fef08a;
  border: 1px solid rgba(245, 158, 11, 0.6);
  font-weight: 700;
}

.meta {
  width: 100%;
}

.meta__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meta__artist {
  margin: 0.2rem 0 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Seek Bar Row */
.seek-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.time-label {
  font-size: 0.75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.65);
  min-width: 2.4rem;
}

.seek {
  position: relative;
  flex: 1;
  height: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
}

.seek__rail {
  position: absolute;
  inset-inline: 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.seek__fill {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #f59e0b 0%, #fef08a 100%);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.seek__knob {
  position: absolute;
  top: 50%;
  left: 0;
  width: 11px;
  height: 11px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
  will-change: transform;
}

/* Player Controls */
.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.2rem;
}

.btn {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: all var(--swift);
}

.btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.btn:active {
  transform: scale(0.92);
}

/* Main Play Button - Transparent Circle */
.btn--play {
  width: 3.4rem;
  height: 3.4rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn--play:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.btn--play:active {
  transform: scale(0.95);
}

.btn--play:disabled {
  opacity: 0.5;
  cursor: default;
  transform: none;
}

.i-pause,
.player-card.is-playing .i-play,
.btn--play.is-playing .i-play {
  display: none !important;
}

.player-card.is-playing .i-pause,
.btn--play.is-playing .i-pause {
  display: block !important;
}

.btn--toggle.is-on {
  color: #f59e0b;
}

/* ── Buffering / Loading State ────────────────────────────────── */

@keyframes bufferPulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.8);
  }
}

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

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

.player-card.is-buffering .btn--play {
  animation: bufferPulse 1s ease-in-out infinite;
  border-color: #f59e0b;
}

.player-card.is-buffering .meta__title {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(245, 158, 11, 1) 50%,
      rgba(255, 255, 255, 0.7) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 1.5s ease-in-out infinite;
}

/* ── Mobile Responsive Adjustments ───────────────────────────── */

@media (max-width: 768px) {
  .topbar {
    display: flex;
    justify-content: center;
    align-items: center;
    top: max(0.8rem, env(safe-area-inset-top));
  }

  .brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brand-title {
    font-size: clamp(1.4rem, 6.5vw, 2.2rem);
  }

  .brand-subtitle {
    font-size: 0.72rem;
    margin-top: 0.1rem;
  }

  .sidebar-dock {
    left: max(0.8rem, var(--edge));
    bottom: max(1rem, env(safe-area-inset-bottom));
    padding: 0.4rem;
  }

  .side-btn {
    width: 2.2rem;
    height: 2.2rem;
  }

  .retro-widget {
    display: none;
  }

  .player-center {
    max-width: 100%;
    margin-bottom: max(0.5rem, env(safe-area-inset-bottom));
  }

  .player-card {
    padding: 0.8rem 1rem 0.6rem;
  }

  .meta__title {
    font-size: 1.1rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .meta__artist {
    font-size: 0.78rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    margin-bottom: 0.4rem;
  }

  .bottom-left-widget {
    position: fixed;
    top: max(4.4rem, calc(env(safe-area-inset-top) + 3.8rem));
    bottom: auto;
    left: max(0.8rem, env(safe-area-inset-left));
    transform: none;
    padding: 0.2rem 0.6rem;
    font-size: 0.62rem;
  }

  .bottom-left-widget:hover {
    transform: none;
  }

  .bottom-right-widget {
    position: fixed;
    top: max(4.4rem, calc(env(safe-area-inset-top) + 3.8rem));
    bottom: auto;
    right: max(0.8rem, env(safe-area-inset-right));
    left: auto;
    transform: none;
    padding: 0.2rem 0.6rem;
    font-size: 0.62rem;
  }

  .bottom-right-widget:hover {
    transform: none;
  }
}