:root {
  --bg: #050816;
  --accent: #ff2e9f;
  --accent2: #32e5ff;
  --text: #f5f5f5;
  --muted: #9ca3af;
  --card: #111827cc;
  --border: #1f2937;
  --buzz: #ffb703;
  --six: #7c3aed;
  --david: #10b981;
}

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

/* BODY */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1f2937 0, #050816 55%, #000 100%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

/* NOISE OVERLAY */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  z-index: 0;
}
#neon-bar-sign {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  font-size: 28px;
  font-weight: 900;
  color: #ff00ff;
  text-shadow: 0 0 8px #ff00ff, 0 0 20px #ff00ff;
  background: rgba(0,0,0,0.4);
  border: 2px solid #ff00ff;
  border-radius: 10px;
  animation: neonBlink 1s infinite alternate;
  z-index: 9999;
}

@keyframes neonBlink {
  from {
    opacity: 0.4;
    text-shadow: 0 0 4px #ff00ff, 0 0 10px #ff00ff;
  }
  to {
    opacity: 1;
    text-shadow: 0 0 12px #ff00ff, 0 0 30px #ff00ff;
  }
}
#neon-bar-sign.closed {
  color: #ff3333;
  border-color: #ff3333;
  text-shadow: 0 0 8px #ff3333, 0 0 20px #ff3333;
}

/* WRAPPER */
.wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  padding: 1.5rem;
}
#buzz-popup {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  transition: bottom 0.6s ease-out;
}

#buzz-popup.show {
  bottom: 20px;
}

#buzz-popup.hide {
  bottom: -250px;
  transition: bottom 0.6s ease-in;
}

/* Comic burst */
#buzz-popup .burst {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: #ffea00;
  padding: 12px 20px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 24px;
  color: #000;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  border: 3px solid #000;
  animation: burstPop 0.4s ease-out forwards;
  opacity: 0;
}

/* Burst animation */
@keyframes burstPop {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }
  60% {
    transform: translateX(-50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

/* HERO GRID */
.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
  }
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #020617aa;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent2);
  box-shadow: 0 0 12px var(--accent2);
}

/* HERO TEXT */
h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

h1 span {
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 32rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--accent2);
  font-weight: 600;
}

/* PILLS */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.pill {
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #020617dd;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
#buzz-popup img {
  width: 180px;   /* or 150px or whatever size you want */
  height: auto;
  border-radius: 12px;
}

/* CTA BUTTONS */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn-primary {
  border: none;
  cursor: pointer;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #020617;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

@media (min-width: 500px) {
  .btn-primary {
    width: auto;
  }
}

/* SCHEDULE */
.schedule {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* RIGHT PANEL */
.right-panel {
  width: 100%;
}

.neon-orbit {
  border-radius: 1.5rem;
  padding: 1.2rem;
  background: radial-gradient(circle at top, #1f2937, #020617 55%, #000 100%);
  border: 1px solid #1f2937;
  box-shadow: 0 0 40px #000000dd;
  overflow: hidden;
}

.orbit-inner {
  border-radius: 1.1rem;
  border: 1px dashed #374151;
  padding: 1rem;
}

.orbit-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.orbit-main {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.orbit-main span {
  color: var(--accent2);
}

.orbit-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
#buzz-popup {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  transition: bottom 0.6s ease-out;
}

#buzz-popup.show {
  bottom: 20px;
}

/* AVATARS */
.avatars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #020617;
  box-shadow: 0 0 0 2px #111827;
}

.avatar-buzz { background: linear-gradient(135deg, #ffb703, #ff7b00); }
.avatar-six { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.avatar-david { background: linear-gradient(135deg, #10b981, #22c55e); }
.avatar-more { background: #020617; color: var(--muted); border-style: dashed; }

.orbit-footer {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  margin-right: 0.3rem;
}

/* ROOM CARDS */
.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  gap: 1rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.card-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.host {
  font-weight: 600;
  color: var(--text);
}

.buzz-bar { border-left: 3px solid var(--buzz); }
.six-room { border-left: 3px solid var(--six); }
.david-room { border-left: 3px solid var(--david); }

.room-chip {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #020617dd;
  border: 1px solid var(--border);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

/* ANNOUNCEMENTS / EVENTS */
.dynamic-wrap {
  margin-top: 2rem;
}

.dynamic-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.dynamic-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  white-space: pre-line;
}

.event-date {
  font-size: 0.85rem;
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.empty-state {
  font-size: 0.9rem;
  color: var(--muted);
}

/* FOOTER */
.footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer a {
  color: var(--accent2);
  text-decoration: none;
  font-weight: 500;
}

/* HOSTS SECTION */
.hosts-section {
  padding: 80px 0;
  background: #0a0a0f;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #00eaff;
  text-shadow: 0 0 12px #00eaff;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.8;
}

.host-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.host-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 234, 255, 0.2);
  border-radius: 14px;
  padding: 30px;
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

.host-card:hover {
  transform: translateY(-6px);
  border-color: #00eaff;
  box-shadow: 0 0 20px #00eaff55;
}

.host-avatar {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #00eaff;
  box-shadow: 0 0 15px #00eaffaa;
  display: block;
  margin: 0 auto 20px auto;
}

.host-name {
  font-size: 1.6rem;
  margin-bottom: 5px;
  color: #fff;
}

.host-role {
  font-size: 1rem;
  color: #00eaff;
  margin-bottom: 15px;
}

.host-bio {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* PAT DADDY — FINAL FIXED VERSION */
.pat-wrapper {
  position: fixed;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  animation: patFly 20s ease-in-out infinite;
  z-index: 9999;
  pointer-events: none;
  text-align: center;
}

.pat-fly {
  width: 80px;
  height: auto;
  opacity: 0.9;
  display: block;
  margin: 0 auto;
}

.pat-label {
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 0 6px #000;
  opacity: 0.95;
}
.announcement-avatar {
  width: 68px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 10px 0;
}


/* WRAPPER ANIMATION — IMAGE + LABEL MOVE TOGETHER */
@keyframes patFly {
  0% {
    transform: translate(-50%, 0) rotate(0deg);
  }
  25% {
    transform: translate(-40vw, -15vh) rotate(10deg);
  }
  50% {
    transform: translate(35vw, -10vh) rotate(-10deg);
  }
  75% {
    transform: translate(25vw, 20vh) rotate(5deg);
  }
  100% {
    transform: translate(-50%, 0) rotate(0deg);
  }
}
/* MINI PAT DADDY — CHASING VERSION */
.pat-mini {
  animation: patFlyMini 20s ease-in-out infinite;
  animation-delay: 1.2s; /* delay so he chases */
  transform-origin: center;
}

.pat-fly-mini {
  width: 45px;
  height: auto;
  opacity: 0.85;
  display: block;
  margin: 0 auto;
}

.pat-label-mini {
  font-size: 0.55rem;
  opacity: 0.85;
}

/* Same path, slightly offset timing */
@keyframes patFlyMini {
  0% {
    transform: translate(-50%, 0) rotate(0deg);
  }
  25% {
    transform: translate(-40vw, -15vh) rotate(10deg);
  }
  50% {
    transform: translate(35vw, -10vh) rotate(-10deg);
  }
  75% {
    transform: translate(25vw, 20vh) rotate(5deg);
  }
  100% {
    transform: translate(-50%, 0) rotate(0deg);
  }
}

/* QHUEENIIEE FLYING */
.qhueen-wrapper {
  position: fixed;
  bottom: 25%;
  left: 60%;
  transform: translateX(-50%);
  animation: qhueenFly 22s ease-in-out infinite;
  z-index: 9998;
  pointer-events: none;
  text-align: center;
}

.qhueen-fly {
  width: 80px;
  height: auto;
  opacity: 0.9;
  display: block;
  margin: 0 auto;
}

.qhueen-label {
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff2e9f;
  letter-spacing: 1px;
  text-shadow: 0 0 6px #000;
  opacity: 0.95;
}

/* Animation path */
@keyframes qhueenFly {
  0%   { transform: translate(-50%, 0) rotate(0deg); }
  25%  { transform: translate(-30vw, -10vh) rotate(8deg); }
  50%  { transform: translate(40vw, -20vh) rotate(-8deg); }
  75%  { transform: translate(20vw, 25vh) rotate(5deg); }
  100% { transform: translate(-50%, 0) rotate(0deg); }
}
/* ========================= */
/* EXTRA FLYING AVATARS (5x) */
/* ========================= */

/* BASE STYLE (shared) */
.flyer {
  position: fixed;
  pointer-events: none;
  text-align: center;
  z-index: 9997;
}

.flyer img {
  width: 68px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.flyer-label {
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 6px #000;
  opacity: 0.9;
}

/* ========================= */
/* AVATAR 1 – TOENUT_GA */
/* ========================= */
.fly1 {
  bottom: 12%;
  left: 18%;
  animation: flyPath1 26s ease-in-out infinite;
}

@keyframes flyPath1 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(25vw, -12vh); }
  50%  { transform: translate(40vw, 8vh); }
  75%  { transform: translate(-15vw, 16vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 2 – HOOTIE */
/* ========================= */
.fly2 {
  bottom: 32%;
  left: 72%;
  animation: flyPath2 28s ease-in-out infinite;
}

@keyframes flyPath2 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-28vw, -10vh); }
  50%  { transform: translate(-18vw, 18vh); }
  75%  { transform: translate(22vw, 6vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 3 – TEMPO */
/* ========================= */
.fly3 {
  bottom: 48%;
  left: 12%;
  animation: flyPath3 24s ease-in-out infinite;
}

@keyframes flyPath3 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(32vw, -14vh); }
  50%  { transform: translate(18vw, 14vh); }
  75%  { transform: translate(-12vw, -6vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 4 – SIX_OF_ONE */
/* ========================= */
.fly4 {
  bottom: 18%;
  left: 78%;
  animation: flyPath4 30s ease-in-out infinite;
}

@keyframes flyPath4 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-32vw, -8vh); }
  50%  { transform: translate(-20vw, 18vh); }
  75%  { transform: translate(24vw, 10vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 5 – FASTJOE */
/* ========================= */
.fly5 {
  bottom: 58%;
  left: 50%;
  animation: flyPath5 32s ease-in-out infinite;
}

@keyframes flyPath5 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(20vw, -12vh); }
  50%  { transform: translate(-22vw, 12vh); }
  75%  { transform: translate(8vw, 18vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 6 – BUZZ */
/* ========================= */
.fly6 {
  bottom: 64%;
  left: 56%;
  animation: flyPath6 33s ease-in-out infinite;
}

@keyframes flyPath6 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-26vw, -16vh); }
  50%  { transform: translate(-10vw, 14vh); }
  75%  { transform: translate(24vw, 20vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 7 – DAVID */
/* ========================= */
.fly7 {
  bottom: 60%;
  left: 52%;
  animation: flyPath7 34s ease-in-out infinite;
}

@keyframes flyPath7 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-20vw, -14vh); }
  50%  { transform: translate(-26vw, 16vh); }
  75%  { transform: translate(18vw, 18vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 8 – ANNIE */
/* ========================= */
.fly8 {
  bottom: 54%;
  left: 58%;
  animation: flyPath8 36s ease-in-out infinite;
}

@keyframes flyPath8 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(22vw, -14vh); }
  50%  { transform: translate(18vw, 10vh); }
  75%  { transform: translate(12vw, 16vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 9 – BIGMAC */
/* ========================= */
.fly9 {
  bottom: 50%;
  left: 62%;
  animation: flyPath9 33s ease-in-out infinite;
}

@keyframes flyPath9 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(18vw, -12vh); }
  50%  { transform: translate(-16vw, 12vh); }
  75%  { transform: translate(20vw, 10vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 10 – mouse */
/* ========================= */
.fly10 {
  bottom: 46%;
  left: 28%;
  animation: flyPath10 35s ease-in-out infinite;
  z-index: 9997;
}

@keyframes flyPath10 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(26vw, -16vh); }
  50%  { transform: translate(-18vw, 14vh); }
  75%  { transform: translate(14vw, 20vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 11 – bigjim */
/* ========================= */
.fly11 {
  bottom: 40%;
  left: 30%;
  animation: flyPath11 37s ease-in-out infinite;
  z-index: 9997;
}

@keyframes flyPath11 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(22vw, -18vh); }
  50%  { transform: translate(-20vw, 16vh); }
  75%  { transform: translate(18vw, 12vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 12 – Gasper */
/* ========================= */
.fly12 {
  bottom: 44%;
  left: 68%;
  animation: flyPath12 38s ease-in-out infinite;
  z-index: 9997;
}

@keyframes flyPath12 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-24vw, -18vh); }
  50%  { transform: translate(20vw, 14vh); }
  75%  { transform: translate(-16vw, 10vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 13 – sing */
/* ========================= */
.fly13 {
  bottom: 38%;
  left: 42%;
  animation: flyPath13 39s ease-in-out infinite;
  z-index: 9997;
}

@keyframes flyPath13 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(28vw, -10vh); }
  50%  { transform: translate(-22vw, 18vh); }
  75%  { transform: translate(16vw, -6vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 14 – LetsRock */
/* ========================= */
/* Avatar 14 — name-only floating */
.fly14 {
  bottom: 36%;
  left: 70%;
  animation: flyPath14 40s ease-in-out infinite;
  z-index: 9997;
}

@keyframes flyPath14 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-30vw, -12vh); }
  50%  { transform: translate(22vw, 20vh); }
  75%  { transform: translate(-18vw, 8vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 15 – Smidge */
/* ========================= */
.fly15 {
  bottom: 30%;
  left: 24%;
  animation: flyPath15 41s ease-in-out infinite;
  z-index: 9997;
}

@keyframes flyPath15 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(30vw, -14vh); }
  50%  { transform: translate(-24vw, 16vh); }
  75%  { transform: translate(18vw, -8vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 16 – Microsoft_Mike */
/* ========================= */
.fly16 {
  bottom: 28%;
  left: 60%;
  animation: flyPath16 42s ease-in-out infinite;
  z-index: 9997;
}

@keyframes flyPath16 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-28vw, -16vh); }
  50%  { transform: translate(22vw, 18vh); }
  75%  { transform: translate(-20vw, 10vh); }
  100% { transform: translate(0, 0); }
}

/* ========================= */
/* AVATAR 17 */
/* ========================= */
.fly17 {
  bottom: 32%;
  left: 18%;
  animation: flyPath17 37s ease-in-out infinite;
  z-index: 9997;
}

@keyframes flyPath17 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(42vw, -22vh); }
  50%  { transform: translate(-28vw, 28vh); }
  75%  { transform: translate(18vw, 12vh); }
  100% { transform: translate(0, 0); }
}
/* ========================= */
/* AVATAR 18 */
/* ========================= */
.fly18 {
  bottom: 58%;
  left: 72%;
  animation: flyPath18 41s ease-in-out infinite;
  z-index: 9997;
}

@keyframes flyPath18 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-38vw, -30vh); }
  50%  { transform: translate(22vw, 24vh); }
  75%  { transform: translate(-12vw, 36vh); }
  100% { transform: translate(0, 0); }
}
/* ========================= */
/* AVATAR 19 */
/* ========================= */
.fly19 {
  bottom: 46%;
  left: 10%;
  animation: flyPath19 39s ease-in-out infinite;
  z-index: 9997;
}

@keyframes flyPath19 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(48vw, -18vh); }
  50%  { transform: translate(-32vw, 34vh); }
  75%  { transform: translate(26vw, -8vh); }
  100% { transform: translate(0, 0); }
}
/* ========================= */
/* AVATAR 20 */
/* ========================= */
.fly20 {
  bottom: 63%;
  left: 55%;
  animation: flyPath20 43s ease-in-out infinite;
  z-index: 9997;
}

@keyframes flyPath20 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-30vw, -26vh); }
  50%  { transform: translate(34vw, 20vh); }
  75%  { transform: translate(-18vw, 32vh); }
  100% { transform: translate(0, 0); }
}
