:root {
  --bg: #f2f8f0;
  --bg-soft: #e2efdc;
  --card: #fbfff7;
  --card-2: #f6fbef;
  --text: #203024;
  --muted: #667463;
  --accent: #5f9f64;
  --accent-dark: #2f6f3d;
  --accent-soft: #d4ead0;
  --border: #cfe2c8;
  --shadow: 0 18px 45px rgba(31, 80, 39, 0.09);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(95, 159, 100, 0.12), transparent 35%),
    linear-gradient(180deg, #f7fcf4 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Noto Naskh Arabic", "Amiri", serif;
}

button,
input,
audio {
  font-family: inherit;
}

button {
  cursor: pointer;
}

/* =========================
   Main Page
========================= */

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 30px;
}

.site-header {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, #fbfff7 0%, #e3f1dc 100%);
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.header-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(95,159,100,0.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(95,159,100,0.06) 25%, transparent 25%);
  background-size: 28px 28px;
  opacity: 0.45;
}

.header-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 30px;
}

.brand-mark {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fbfff7;
  font-size: 36px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(47, 111, 61, 0.22);
  flex-shrink: 0;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
}

.site-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.main-layout {
  display: grid;
  gap: 22px;
}

/* =========================
   Hero Section
========================= */

.hero-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero-text {
  padding: 8px 12px;
  text-align: right;
}

.hero-text h2 {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 34px;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

/* Four recitation cards */
.version-cards {
  display: grid;
  gap: 16px;
  width: 100%;
}

.four-versions {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.version-card {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: 0.2s ease;
  min-height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.version-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.version-card.active {
  background: linear-gradient(135deg, #f3fbec, #cae4c2);
  border-color: var(--accent);
  box-shadow: 0 12px 26px rgba(47, 111, 61, 0.15);
}

.version-title {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1.5;
}

.version-desc {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================
   Main Content Grid
========================= */

.content-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 22px;
  align-items: start;
  direction: rtl;
}

.surah-panel,
.player-panel {
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* =========================
   Surah Panel
========================= */

.surah-panel {
  padding: 18px;
  position: sticky;
  top: 16px;
  max-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.panel-heading h3 {
  margin: 0;
  font-size: 24px;
}

.panel-heading span {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.surah-search {
  width: 100%;
  margin: 16px 0;
  border: 1px solid var(--border);
  background: #fdfff9;
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 16px;
  outline: none;
}

.surah-search:focus {
  border-color: var(--accent);
}

.surah-list {
  overflow-y: auto;
  padding-left: 4px;
  flex: 1;
  min-height: 300px;
}

.surah-item {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  text-align: right;
  transition: 0.18s ease;
}

.surah-item:hover {
  background: #e6f3df;
}

.surah-item.active {
  background: #cae4c2;
  border-color: var(--accent);
}

.surah-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #d9edcf;
  color: var(--accent-dark);
  font-weight: 700;
}

.surah-name {
  font-size: 18px;
  font-weight: 700;
}

.surah-ayahs {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

/* =========================
   Player Panel
========================= */

.player-panel {
  padding: 24px;
}

.player-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}

.small-label {
  color: var(--muted);
  font-size: 15px;
}

.player-top h2 {
  margin: 5px 0;
  font-size: clamp(32px, 5vw, 54px);
  color: var(--accent-dark);
}

.player-top p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

/* Small switch inside player */
.quick-switch {
  background: #e7f3df;
  padding: 6px;
  gap: 6px;
}

.four-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 18px;
  min-width: 310px;
}

.switch-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 9px 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.switch-btn.active {
  background: var(--accent);
  color: #fbfff7;
}

/* Audio area */

.custom-player {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  background: #fbfff7;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.play-main-btn {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fbfff7;
  font-size: 24px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(47, 111, 61, 0.22);
  transition: 0.2s ease;
}

.play-main-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.player-info {
  display: grid;
  gap: 10px;
}

.time-row {
  display: flex;
  justify-content: space-between;
  direction: ltr;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
}

.progress-bar::-webkit-slider-runnable-track {
  height: 10px;
  background: #cae4c2;
  border-radius: 999px;
}

.progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -5px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid #fbfff7;
  box-shadow: 0 4px 10px rgba(31, 80, 39, 0.25);
}

.progress-bar::-moz-range-track {
  height: 10px;
  background: #cae4c2;
  border-radius: 999px;
}

.progress-bar::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid #fbfff7;
  box-shadow: 0 4px 10px rgba(31, 80, 39, 0.25);
}

@media (max-width: 620px) {
  .custom-player {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .play-main-btn {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }
}

.audio-box {
  margin-top: 24px;
  background:
    linear-gradient(135deg, #fdfff9 0%, #eaf4e2 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
}

.reciter-name {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 700;
}

audio {
  width: 100%;
  display: block;
}

.audio-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  direction: ltr;
  text-align: left;
}


/* Controls */
.control-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.control-btn {
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, #fbfff7, #d9edcf);
  color: var(--accent-dark);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.18s ease;
  box-shadow: 0 6px 14px rgba(47, 111, 61, 0.08);
}

.control-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fbfff7;
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(47, 111, 61, 0.18);
}

.control-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(47, 111, 61, 0.12);
}

/* Continue Listening */
.continue-card {
  margin-top: 20px;
  background: #e6f3df;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.continue-card h3 {
  margin: 0 0 6px;
  color: var(--accent-dark);
}

.continue-card p {
  margin: 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  text-align: center;
  color: var(--muted);
  padding: 18px 0 0;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1100px) {
  .four-versions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .surah-panel {
    position: static;
    max-height: 430px;
  }

  .player-top {
    flex-direction: column;
  }

  .four-switch {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 10px;
  }

  .header-content {
    padding: 20px;
    align-items: flex-start;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }

  .site-header p {
    font-size: 16px;
  }

  .hero-card {
    padding: 16px;
  }

  .hero-text {
    padding: 4px;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .four-versions {
    grid-template-columns: 1fr;
  }

  .version-card {
    min-height: auto;
    padding: 18px;
  }

  .four-switch {
    grid-template-columns: 1fr 1fr;
  }

  .player-panel,
  .surah-panel {
    padding: 16px;
  }

  .control-row {
    flex-direction: column;
  }

  .control-btn {
    width: 100%;
  }

  .surah-item {
    grid-template-columns: 38px 1fr auto;
  }

  .surah-ayahs {
    font-size: 13px;
  }
}

/* =========================
   Elegant Listening Pulse
========================= */

.listening-orb {
  margin-top: 18px;
  min-height: 86px;
  background:
    radial-gradient(circle at center, rgba(95, 159, 100, 0.10), transparent 58%),
    #fbfff7;
  border: 1px solid var(--border);
  border-radius: 22px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.orb-ring {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(95, 159, 100, 0.28);
  border-radius: 50%;
  opacity: 0.45;
  transform: scale(1);
}

.orb-core {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, #f3fbec 0%, #cae4c2 100%);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow:
    0 8px 20px rgba(47, 111, 61, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.orb-text {
  position: absolute;
  bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  opacity: 0.8;
}

.listening-orb.playing .orb-ring {
  animation: calmPulse 2.4s ease-out infinite;
}

.listening-orb.playing .orb-core {
  animation: softGlow 2.4s ease-in-out infinite;
}

.listening-orb.playing .orb-text {
  color: var(--accent-dark);
}

.listening-orb.playing .orb-text::before {
  content: "يستمع الآن";
}

.listening-orb.playing .orb-text {
  font-size: 0;
}

.listening-orb.playing .orb-text::before {
  font-size: 14px;
}

@keyframes calmPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.45;
  }

  70% {
    transform: scale(2.1);
    opacity: 0;
  }

  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

@keyframes softGlow {
  0%, 100% {
    box-shadow:
      0 8px 20px rgba(47, 111, 61, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: scale(1);
  }

  50% {
    box-shadow:
      0 12px 34px rgba(95, 159, 100, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: scale(1.04);
  }
}

@media (max-width: 620px) {
  .listening-orb {
    min-height: 76px;
    padding: 14px;
  }

  .orb-core {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .orb-ring {
    width: 50px;
    height: 50px;
  }
}


#currentSurahName.nawader-title {
  font-size: 1.35rem;
  line-height: 1.8;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}


.current-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.current-title-row .small-label,
.current-title-row #currentMeta {
  margin: 0;
  white-space: nowrap;
}

.current-title-row #currentSurahName {
  margin: 0;
}

.current-title-row .small-label {
  font-size: 0.85rem;
}

.current-title-row #currentSurahName {
  font-size: 1.45rem;
}

.current-title-row #currentMeta {
  font-size: 0.9rem;
  opacity: 0.8;
}


.floating-download-glass {
  position: fixed;
  bottom: 22px;
  left: 22px; /* use right:22px; left:auto; if preferred */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.glass-download-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;

  background:
    linear-gradient(135deg, rgba(79, 150, 87, 0.82), rgba(35, 75, 44, 0.82));
  border: 1px solid rgba(224, 245, 203, 0.42);

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.22),
    0 0 16px rgba(255, 205, 120, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.glass-download-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 45%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.glass-download-pill::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -80%;
  width: 70%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: rotate(20deg);
  transition: right 0.7s ease;
  pointer-events: none;
}

.glass-download-pill:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(224, 245, 203, 0.7);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(196, 232, 165, 0.45),
    0 0 40px rgba(79, 150, 87, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.glass-download-pill:hover::after {
  right: 120%;
}

.glass-icon {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 235, 190, 0.35);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;
  font-weight: 800;
  color: #f7fff0;

  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.22),
    0 0 12px rgba(255, 220, 150, 0.26);
}

.glass-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: right;
}

.glass-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.glass-text small {
  font-size: 0.72rem;
  color: rgba(241, 251, 230, 0.88);
  margin-top: 2px;
}

/* soft breathing glow */
.glass-download-pill {
  animation: glassGlow 2.8s ease-in-out infinite alternate;
}

@keyframes glassGlow {
  from {
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.22),
      0 0 12px rgba(255, 205, 120, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }

  to {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.25),
      0 0 20px rgba(255, 220, 150, 0.38),
      0 0 34px rgba(79, 150, 87, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }
}

/* Mobile */
@media (max-width: 700px) {
  .floating-download-glass {
    bottom: 14px;
    left: 10px;
    gap: 9px;
  }

  .glass-download-pill {
    min-width: 205px;
    padding: 9px 13px;
    gap: 10px;
  }

  .glass-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 15px;
  }

  .glass-text strong {
    font-size: 0.86rem;
  }

  .glass-text small {
    font-size: 0.66rem;
  }
}

/* =========================
   Special New Recitation Tab
========================= */

.new-recitation-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(102, 168, 104, 0.75);
  background:
    radial-gradient(circle at top right, rgba(210, 239, 190, 0.40), transparent 38%),
    linear-gradient(135deg, #f7fff0 0%, #f0c66d 45%, #2f6f3d 100%);
  color: #f7fff0;
  box-shadow:
    0 14px 34px rgba(47, 111, 61, 0.24),
    0 0 18px rgba(176, 224, 139, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  animation: newRecitationGlow 2.6s ease-in-out infinite alternate;
}

.new-recitation-card .version-title {
  color: #fbfff7;
  text-shadow: 0 2px 8px rgba(20, 53, 31, 0.35);
  font-size: 24px;
}

.new-recitation-card .version-desc {
  color: rgba(247, 255, 240, 0.92);
  font-weight: 700;
}

.new-recitation-card:hover {
  transform: translateY(-4px) scale(1.025);
  border-color: rgba(224, 245, 203, 0.95);
  box-shadow:
    0 18px 42px rgba(47, 111, 61, 0.32),
    0 0 24px rgba(185, 229, 150, 0.75),
    0 0 46px rgba(102, 168, 104, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.new-recitation-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.18) 35%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0.18) 65%,
      transparent 100%
    );
  transform: translateX(120%);
  animation: newRecitationShine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.new-recitation-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  border: 1px solid rgba(241, 251, 230, 0.35);
  pointer-events: none;
}

.new-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(247, 255, 240, 0.96);
  color: #2f6f3d;
  border: 1px solid rgba(210, 239, 190, 0.9);
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  box-shadow:
    0 6px 14px rgba(23, 60, 36, 0.18),
    0 0 12px rgba(210, 239, 190, 0.45);
}

.new-recitation-card.active {
  background:
    radial-gradient(circle at top right, rgba(226, 246, 205, 0.55), transparent 40%),
    linear-gradient(135deg, #dff3cf 0%, #66a868 45%, #1f5630 100%);
  border-color: rgba(235, 250, 220, 1);
  box-shadow:
    0 18px 44px rgba(110, 67, 16, 0.34),
    0 0 28px rgba(185, 229, 150, 0.85),
    0 0 56px rgba(102, 168, 104, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

@keyframes newRecitationGlow {
  from {
    box-shadow:
      0 14px 34px rgba(47, 111, 61, 0.22),
      0 0 14px rgba(176, 224, 139, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
  }

  to {
    box-shadow:
      0 16px 38px rgba(47, 111, 61, 0.28),
      0 0 24px rgba(255, 215, 120, 0.72),
      0 0 42px rgba(102, 168, 104, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }
}

@keyframes newRecitationShine {
  0% {
    transform: translateX(120%);
    opacity: 0;
  }

  35% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  75% {
    transform: translateX(-120%);
    opacity: 0;
  }

  100% {
    transform: translateX(-120%);
    opacity: 0;
  }
}
