/* ---- BODY ---- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #080e1a;
  color: #e8f0fe;
  min-height: 100vh;
  overflow-x: hidden;
}


/* ---- NAVBAR ---- */

.top-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(8, 14, 26, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  transition: all 0.3s ease;
}

.top-navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(8, 14, 26, 0.95);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #e8f0fe !important;
  text-decoration: none;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #38d9c0, #1a9e8f);
  border-radius: 10px;
  font-size: 1.1rem;
  color: #080e1a;
}

.brand-name {
  background: linear-gradient(90deg, #e8f0fe, #38d9c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: #8ca0bc !important;
  padding: 0.4rem 0.75rem !important;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #38d9c0 !important;
  background: rgba(56, 217, 192, 0.15);
}

.menu-btn {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: #e8f0fe;
  font-size: 1.4rem;
  padding: 0.3rem 0.6rem;
  border-radius: 10px;
}

.unit-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #38d9c0;
  border: 1.5px solid #38d9c0;
  background: transparent;
  border-radius: 50px;
  padding: 0.35rem 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.unit-btn:hover {
  background: #38d9c0;
  color: #080e1a;
}

/* ---- ONLINE / OFFLINE MODE BUTTON ---- */

.mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.35rem 1rem;
  border: 1.5px solid;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* The small dot indicator */
.mode-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* OFFLINE state — red */
.mode-btn.offline {
  color: #f87171;
  border-color: #f87171;
}

.mode-btn.offline .mode-dot {
  background: #f87171;
  box-shadow: 0 0 6px #f87171;
}

.mode-btn.offline:hover {
  background: rgba(248, 113, 113, 0.12);
}

/* ONLINE state — green */
.mode-btn.online {
  color: #34d399;
  border-color: #34d399;
}

.mode-btn.online .mode-dot {
  background: #34d399;
  box-shadow: 0 0 6px #34d399;
  animation: pulse-dot 2s ease-in-out infinite;
}

.mode-btn.online:hover {
  background: rgba(52, 211, 153, 0.12);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.5; transform: scale(0.75); }
}


/* ---- HERO SECTION ---- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #080e1a 0%, #0d1829 100%);
}

/* Animated blobs in the background */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 217, 192, 0.3), transparent);
  top: -100px;
  left: -100px;
}

.blob2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2), transparent);
  bottom: -50px;
  right: -50px;
  animation-delay: -3s;
}

.blob3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(56, 217, 192, 0.15), transparent);
  top: 40%;
  right: 10%;
  animation-delay: -5s;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #38d9c0;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #e8f0fe;
}

.accent {
  color: #38d9c0;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #8ca0bc;
  margin-top: 1.2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Search bar */
.search-wrap {
  margin-top: 1.5rem;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  border-radius: 50px;
  padding: 0.5rem 0.5rem 0.5rem 1.4rem;
  max-width: 560px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: #38d9c0;
  background: rgba(255, 255, 255, 0.10);
}

.search-icon {
  color: #4e6280;
  font-size: 1rem;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #e8f0fe;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
}

.search-input::placeholder {
  color: #4e6280;
}

.search-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, #38d9c0, #1a9e8f);
  color: #080e1a;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  transform: translateX(2px);
}

.location-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #8ca0bc;
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.location-btn:hover {
  border-color: #38d9c0;
  color: #38d9c0;
}

.location-btn i {
  color: #38d9c0;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #4e6280;
  font-size: 1.3rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0);  }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ---- SECTION WRAPPER ---- */

.section {
  padding: 80px 0;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem;
}


/* ---- CURRENT WEATHER CARD ---- */

.current-section {
  padding: 60px 0 40px;
}

.current-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.card-left {
  flex: 1;
}

.location-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.location-row i {
  color: #38d9c0;
}

.location-row span:first-of-type {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.date {
  font-size: 0.82rem;
  color: #4e6280;
  margin-left: 0.5rem;
}

.temp-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.temp-big {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, #e8f0fe, #38d9c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.temp-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.8rem;
}

.condition {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.feels-like,
.hi-lo {
  font-size: 0.82rem;
  color: #8ca0bc;
}

.card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.weather-icon {
  font-size: clamp(3.5rem, 6vw, 5rem);
  color: #fbbf24;
  line-height: 1;
}

.quick-stats {
  display: flex;
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat i {
  font-size: 1rem;
  color: #38d9c0;
}

.stat span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.stat small {
  font-size: 0.7rem;
  color: #4e6280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ---- HIGHLIGHTS ---- */

.highlight-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(56, 217, 192, 0.25);
  transform: translateY(-4px);
}

.hl-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.hl-icon.uv   { background: rgba(251, 191, 36, 0.15);  color: #fbbf24; }
.hl-icon.vis  { background: rgba(56, 217, 192, 0.15);  color: #38d9c0; }
.hl-icon.pres { background: rgba(248, 113, 113, 0.15); color: #f87171; }
.hl-icon.sun  { background: rgba(251, 191, 36, 0.15);  color: #fbbf24; }

.hl-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #4e6280;
  margin-bottom: 0.4rem;
}

.hl-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.hl-sub {
  font-size: 0.82rem;
  color: #8ca0bc;
  margin-bottom: 0.8rem;
}

.bar-wrap {
  margin-top: 0.8rem;
}

.bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, #38d9c0, #fbbf24);
  transition: width 1s ease;
}


/* ---- 5-DAY FORECAST ---- */

.forecast-scroll {
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 217, 192, 0.18) transparent;
}

.forecast-track {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0.25rem;
  min-width: max-content;
}

.forecast-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 1.5rem 1.2rem;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  cursor: default;
}

.forecast-card:hover,
.forecast-card.today {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(56, 217, 192, 0.3);
  transform: translateY(-5px);
}

.fc-day {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8ca0bc;
  margin: 0;
}

.forecast-card.today .fc-day {
  color: #38d9c0;
}

.fc-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.fc-condition {
  font-size: 0.78rem;
  color: #4e6280;
  text-align: center;
  margin: 0;
}

.fc-temps {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}

.fc-high {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.fc-low {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: #4e6280;
}

.fc-rain {
  font-size: 0.75rem;
  color: #38d9c0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}


/* ---- HOURLY FORECAST ---- */

.hourly-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 217, 192, 0.18) transparent;
}

.hourly-track {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0.25rem 0.75rem;
  min-width: max-content;
}

.hour-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 1rem;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hour-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(56, 217, 192, 0.2);
  transform: translateY(-3px);
}

.hour-time {
  font-size: 0.72rem;
  color: #4e6280;
  font-weight: 500;
}

.hour-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.hour-temp {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.hour-rain {
  font-size: 0.7rem;
  color: #38d9c0;
}

.chart-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}


/* ---- TIPS ---- */

.tip-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.tip-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(251, 191, 36, 0.2);
  transform: translateY(-4px);
}

.tip-icon {
  width: 48px;
  height: 48px;
  background: rgba(251, 191, 36, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fbbf24;
}

.tip-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.tip-text {
  font-size: 0.88rem;
  color: #8ca0bc;
  line-height: 1.65;
  margin: 0;
}


/* ---- LOADER ---- */

.loader {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 26, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #8ca0bc;
  font-size: 0.9rem;
}

.loader-icon {
  font-size: 3rem;
  color: #38d9c0;
  animation: float 1.5s ease-in-out infinite;
}

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


/* ---- TOAST ---- */

.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(13, 24, 41, 0.95);
  border: 1px solid #38d9c0;
  border-radius: 18px;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #e8f0fe;
  font-size: 0.88rem;
  z-index: 9998;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
  max-width: 340px;
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-msg i {
  color: #38d9c0;
}


/* ---- FOOTER ---- */

.footer {
  padding: 2.5rem 0;
  background: rgba(8, 14, 26, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: #4e6280;
  margin: 0;
}

.footer-copy {
  font-size: 0.78rem;
  color: #4e6280;
  margin: 0;
}


/* ---- MOBILE ---- */

@media (max-width: 768px) {

  .hero {
    padding: 100px 0 60px;
  }

  .search-box {
    flex-wrap: wrap;
    border-radius: 18px;
    padding: 0.8rem 1rem;
    gap: 0.6rem;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
    padding: 0.7rem 1rem;
  }

  .current-card {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem 1.2rem;
  }

  .card-right {
    width: 100%;
  }

  .temp-row {
    justify-content: center;
  }

  .quick-stats {
    justify-content: center;
  }

  .location-row {
    justify-content: center;
  }

  .toast-msg {
    bottom: unset;
    top: 1rem;
    left: 50%;
    right: unset;
    transform: translateX(-50%) translateY(-140px);
    width: calc(100% - 2rem);
    max-width: 420px;
    border-radius: 50px;
    opacity: 0;
  }

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

}


/* ================================================
   NEW FEATURES - Search History, Favourites, Timestamp
================================================ */


/* ---- SEARCH HISTORY CHIPS ---- */

/* The row that appears under the search bar */
.history-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* Each city chip */
.history-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #8ca0bc;
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.history-chip:hover {
  background: rgba(56, 217, 192, 0.12);
  border-color: #38d9c0;
  color: #38d9c0;
}

/* Clock icon inside the chip */
.history-chip i {
  font-size: 0.75rem;
  color: #4e6280;
}


/* ---- FAVOURITE CITIES ---- */

/* The row that appears under the history chips */
.favourites-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* Each favourite city chip */
.fav-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fav-chip:hover {
  background: rgba(251, 191, 36, 0.18);
  border-color: #fbbf24;
}

/* The X button inside each favourite chip */
.fav-chip .remove-fav {
  font-size: 0.7rem;
  color: rgba(251, 191, 36, 0.5);
  margin-left: 0.2rem;
  transition: color 0.2s ease;
}

.fav-chip .remove-fav:hover {
  color: #f87171;
}


/* ---- STAR BUTTON (on the weather card) ---- */

.fav-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #4e6280;
  border-radius: 50px;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.fav-btn:hover {
  border-color: #fbbf24;
  color: #fbbf24;
}

/* When the city is already saved as a favourite */
.fav-btn.saved {
  background: rgba(251, 191, 36, 0.12);
  border-color: #fbbf24;
  color: #fbbf24;
}


/* ---- LAST UPDATED TIMESTAMP ---- */

.last-updated {
  font-size: 0.72rem;
  color: #4e6280;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.last-updated i {
  font-size: 0.7rem;
}


/* ---- HISTORY CHIP - X BUTTON ---- */

/* The small X inside each history chip */
.history-chip .remove-history {
  font-size: 0.7rem;
  color: rgba(140, 160, 188, 0.5);
  margin-left: 0.2rem;
  transition: color 0.2s ease;
}

.history-chip .remove-history:hover {
  color: #f87171;
}


/* ---- CLEAR ALL HISTORY BUTTON ---- */

.history-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: 1px solid rgba(248, 113, 113, 0.25);
  color: #f87171;
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.history-clear-btn:hover {
  background: rgba(248, 113, 113, 0.1);
  border-color: #f87171;
  opacity: 1;
}