:root {
  --color-primary-bg: #0a0e27;
  --color-secondary-bg: #1a1f3a;
  --color-accent-cyan: #00d9ff;
  --color-accent-magenta: #ff006e;
  --color-accent-green: #06ffa5;
  --color-text-primary: #e0e0e0;
  --color-text-secondary: #a0a0a0;
  --glow-cyan: 0 0 20px rgba(0, 217, 255, 0.6);
  --glow-magenta: 0 0 20px rgba(255, 0, 111, 0.943);
  --glow-green: 0 0 20px rgba(6, 255, 165, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Exo 2', sans-serif;
  background: #020617;
  color: var(--color-text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.app-shell {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.canvas-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.video-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
  overflow: hidden;
}

.video-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 58, 138, 0.4));
  pointer-events: none;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
  border: 0;
  pointer-events: none;
}

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

.scan-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent-cyan), transparent);
  animation: scan 4s linear infinite;
  z-index: 5;
  opacity: 0.3;
}

@keyframes scan {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh);
  }
}

.container {
  position: relative;
  z-index: 20;
  width: 90%;
  max-width: 600px;
  padding: 2rem;
}

.stream-status {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 30;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 58, 138, 0.7));
  border: 1px solid rgba(96, 165, 250, 0.45);
  padding: 1rem 1.3rem;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 460px;
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.stream-status::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(0, 217, 255, 0.8), rgba(255, 0, 110, 0.8));
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  pointer-events: none;
}

.stream-status::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 0, 110, 0.25), transparent 50%);
  pointer-events: none;
}

.live-chat-panel {
  position: fixed;
  top: 140px;
  right: 30px;
  width: 360px;
  max-width: 32vw;
  height: calc(100vh - 200px);
  z-index: 35;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 138, 0.75));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(96, 165, 250, 0.35);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.65);
  transition: box-shadow 0.35s ease;
  will-change: transform;
}

.live-chat-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(0, 217, 255, 0.45), rgba(255, 0, 110, 0.45));
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  pointer-events: none;
}

.live-chat-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(255, 0, 110, 0.18), transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.live-chat-panel * {
  position: relative;
  z-index: 2;
}

.live-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.live-chat-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-primary);
  text-transform: uppercase;
}

.live-pill {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent-magenta);
  box-shadow: var(--glow-magenta);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
}

.chat-popout-link {
  color: var(--color-accent-cyan);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-popout-link:hover {
  text-decoration: underline;
}

.chat-toggle-btn {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(2, 6, 23, 0.6);
  color: var(--color-text-primary);
  padding: 0.35rem;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chat-toggle-icon {
  width: 20px;
  height: 20px;
  display: none;
}

.chat-toggle-icon path {
  stroke: currentColor;
}

.chat-toggle-btn .icon-collapse {
  display: block;
}

.chat-toggle-btn.is-collapsed .icon-collapse {
  display: none;
}

.chat-toggle-btn.is-collapsed .icon-expand {
  display: block;
}

.chat-toggle-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 217, 255, 0.25);
}

.chat-toggle-btn:active {
  transform: translateY(0);
}

.live-chat-body {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.3);
  box-shadow: 0 15px 45px rgba(2, 6, 23, 0.65);
}

.live-chat-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(2, 6, 23, 0.85);
}

.live-chat-panel.collapsed {
  position: fixed;
  top: auto;
  bottom: 30px;
  right: 30px;
  left: auto;
  width: 240px;
  height: auto;
  padding: 0.85rem 1rem;
  gap: 0.5rem;
  cursor: default;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.75);
}

.live-chat-panel.collapsed .live-chat-body {
  display: none;
}

.live-chat-panel.collapsed .chat-popout-link {
  display: none;
}

.live-chat-panel.collapsed .live-chat-header {
  width: 100%;
  justify-content: space-between;
}

.channel-avatar-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.channel-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 217, 255, 0.5);
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.45);
  position: relative;
  z-index: 1;
  animation: avatar-bounce 6s ease-in-out infinite;
}

@keyframes avatar-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(3px);
  }
  75% {
    transform: translateY(-4px);
  }
}

.music-note {
  position: absolute;
  color: rgba(160, 196, 255, 0.9);
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.9);
  animation: note-float 5s ease-in-out infinite;
  opacity: 0;
  --end-x: 0px;
  --end-y: -60px;
}

.music-note.note-1 {
  left: 85%;
  bottom: 15%;
  animation-delay: 0s;
  --end-x: 45px;
  --end-y: -90px;
}

.music-note.note-2 {
  left: 60%;
  bottom: 0%;
  animation-delay: 1.3s;
  --end-x: -35px;
  --end-y: -110px;
}

.music-note.note-3 {
  left: 95%;
  bottom: -5%;
  animation-delay: 2.4s;
  --end-x: 30px;
  --end-y: -130px;
}

@keyframes note-float {
  0% {
    transform: translate3d(0, 0, 0) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  60% {
    opacity: 0.85;
  }
  100% {
    transform: translate3d(var(--end-x), var(--end-y), 0) scale(1.25);
    opacity: 0;
  }
}

.channel-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 1;
}

.channel-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.85);
}

.channel-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
}

.channel-extra {
  font-size: 0.78rem;
  color: #a5b4fc;
  letter-spacing: 0.5px;
}

.subscribe-btn {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  background: linear-gradient(130deg, #ff1b1c, #ff4d4f);
  box-shadow: 0 15px 35px rgba(255, 24, 28, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1;
}

.subscribe-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(255, 24, 28, 0.6);
}

.header {
  text-align: center;
  margin-bottom: 2rem;
}

.header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: #a7f3ff;
  text-shadow:
    0 0 8px rgba(0, 217, 255, 0.9),
    0 0 16px rgba(0, 217, 255, 0.6),
    0 0 32px rgba(255, 0, 110, 0.55),
    0 0 48px rgba(255, 0, 110, 0.35);
  animation: neon-flicker 2.5s infinite;
}

@keyframes neon-flicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
    filter: brightness(1);
    text-shadow:
      0 0 8px rgba(0, 217, 255, 1),
      0 0 16px rgba(0, 217, 255, 0.7),
      0 0 32px rgba(255, 0, 110, 0.6),
      0 0 50px rgba(255, 0, 110, 0.4);
  }
  20%,
  24%,
  55% {
    opacity: 0.4;
    filter: brightness(0.6);
    text-shadow:
      0 0 4px rgba(0, 217, 255, 0.4),
      0 0 8px rgba(0, 217, 255, 0.3),
      0 0 16px rgba(255, 0, 110, 0.2);
  }
  70%,
  72% {
    opacity: 0.8;
    filter: brightness(1.3);
  }
}

.session-info {
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
}

.session-type {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.session-counter {
  font-size: 0.9rem;
  color: var(--color-text-primary);
  letter-spacing: 1px;
}

.timer-container {
  position: relative;
  width: 80%;
  max-width: 320px;
  margin: 0 auto 2rem;
  aspect-ratio: 1;
}

.timer-ring-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.timer-core {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at top right, rgba(255, 0, 110, 0.5), transparent 80%);
  box-shadow:
    inset 0 0 45px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(0, 0, 0, 0.65);
  z-index: 2;
  pointer-events: none;
}

.timer-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}

.time {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-shadow: 0 0 20px currentColor;
  transition: color 0.3s ease;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Orbitron', sans-serif;
  background: rgba(26, 31, 58, 0.8);
  border: 2px solid var(--color-accent-cyan);
  color: var(--color-accent-cyan);
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--color-accent-cyan);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
  opacity: 0.2;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  border-color: var(--color-accent-cyan);
  color: var(--color-accent-cyan);
}

.btn-secondary {
  border-color: var(--color-accent-magenta);
  color: var(--color-accent-magenta);
}

.btn-secondary::before {
  background: var(--color-accent-magenta);
}

.btn-secondary:hover {
  box-shadow: var(--color-accent-magenta);
}

.audio-controls {
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.audio-controls.locked .volume-control {
  display: none;
}

.audio-mute-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.7);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.audio-controls.unlocked .audio-mute-alert {
  display: none;
}

.audio-unmute-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 0, 110, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(130deg, #ff006e, #ff4d4f);
  box-shadow: 0 10px 20px rgba(255, 0, 110, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audio-unmute-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(255, 0, 110, 0.5);
}

.audio-unmute-btn:focus-visible {
  outline: 2px solid var(--color-accent-cyan);
  outline-offset: 2px;
}

.audio-controls h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-accent-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.volume-control label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  min-width: 60px;
}

.volume-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  background: rgba(0, 217, 255, 0.2);
  border-radius: 3px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--color-accent-cyan);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--glow-cyan);
  transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--color-accent-cyan);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--glow-cyan);
  border: none;
  transition: all 0.3s ease;
}

.volume-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.volume-value {
  font-family: 'Orbitron', sans-serif;
  color: var(--color-accent-cyan);
  min-width: 40px;
  text-align: right;
}

.audio-mute-btn {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.72rem;
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 10px 20px rgba(0, 217, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.audio-mute-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: none;
}

.audio-mute-btn .icon-sound-on {
  display: inline-block;
}

.audio-mute-btn.is-muted .icon-sound-on {
  display: none;
}

.audio-mute-btn.is-muted .icon-sound-off {
  display: inline-block;
}

.audio-mute-btn:hover:enabled {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 217, 255, 0.35);
}

.audio-controls.locked .audio-mute-btn {
  cursor: not-allowed;
  opacity: 0.5;
}

.settings-btn {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(26, 31, 58, 0.8);
  border: 2px solid var(--color-accent-magenta);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100;
}

.settings-btn:hover {
  box-shadow: var(--glow-magenta);
  transform: rotate(90deg);
}

.settings-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent-magenta);
}

.settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(10px);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.settings-modal.active {
  display: flex;
}

.settings-content {
  background: var(--color-secondary-bg);
  border: 2px solid var(--color-accent-magenta);
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 40px rgba(255, 0, 110, 0.4);
}

.settings-content h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--color-accent-magenta);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.setting-group {
  margin-bottom: 1.5rem;
}

.setting-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.setting-group input {
  width: 100%;
  padding: 0.8rem;
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 4px;
  color: var(--color-text-primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
}

.setting-group input:focus {
  outline: none;
  border-color: var(--color-accent-cyan);
  box-shadow: var(--glow-cyan);
}

.settings-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.settings-buttons .btn {
  flex: 1;
}

.notification {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: rgba(26, 31, 58, 0.95);
  border: 2px solid var(--color-accent-green);
  border-radius: 8px;
  padding: 1rem 2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--color-accent-green);
  box-shadow: var(--glow-green);
  z-index: 1000;
  opacity: 0;
  transition: all 0.5s ease;
}

.notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 1200px) {
  .live-chat-panel {
    position: static;
    width: min(540px, 92%);
    max-width: 540px;
    height: 420px;
    margin: 2rem auto 4rem;
  }

  .app-shell {
    padding-top: 2rem;
  }
}

@media (max-width: 640px) {
  .live-chat-panel,
  .live-chat-panel.collapsed {
    display: none !important;
  }

  .live-chat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .stream-status {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .channel-meta {
    align-items: center;
  }

  .subscribe-btn {
    margin-top: auto;
  }

  .stream-status {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 300px;
    max-width: 100%;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    margin-left: max(calc((100% - 370px) / 2), 0px);
    margin-right: max(calc((100% - 300px) / 2), 0px);
    z-index: 10;
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .time {
    font-size: 3rem;
  }

  .controls {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .stream-status {
    top: 1rem;
    left: 1rem;
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
  
  .settings-btn {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
