@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: -2px 0 28px rgba(255, 255, 255, 0.8),
                0 18px 36px rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow: -2px 0 40px rgba(255, 255, 255, 1),
                0 24px 48px rgba(255, 255, 255, 1);
  }
  100% {
    box-shadow: -2px 0 28px rgba(255, 255, 255, 0.8),
                0 18px 36px rgba(255, 255, 255, 0.8);
  }
}



@keyframes glassFadeIn {
  0% {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background-color: rgba(30, 30, 30, 0);
  }
  100% {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(30, 30, 30, 0.4);
  }
}

.android-banner {
  display: flex;
  flex-direction: column;
  width: 95%;
  max-width: 600px;
  margin: 30px auto 0 auto;   /* moves banner down from the top */
  border-radius: 14px;
  overflow: hidden;
  color: white;
  font-family: sans-serif;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(30, 30, 30, 0);  /* Start fully transparent */
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: -2px 0 18px rgba(255, 255, 255, 0.5),
              0 10px 28px rgba(0, 0, 0, 0.6); /* 👈 Keep your glow */
  animation:
    glassFadeIn 0.5s ease forwards,
    slideDown 0.5s ease,
    pulseGlow 3s ease-in-out infinite;
}

/* Add this keyframe for smooth glassy fade-in */
@keyframes glassFadeIn {
  0% {
    background-color: rgba(30, 30, 30, 0);
  }
  100% {
    background-color: rgba(30, 30, 30, 0.4);
  }
}


.banner-headline {
  font-size: 22px !important;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  color: #ffcc00;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: transparent;
  line-height: 1.2;
}


.banner-body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 12px 16px;
  gap: 16px;
}


.center-area {
  display: flex;
  justify-content: center;
}


.app-icon {
  width: 90px !important;
  height: 90px !important;
  flex-shrink: 0;
}


.center-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}


.install-btn {
  background-color: #0056d2 !important;
  color: white !important;
  border: none !important;
  width: 140px !important;              /* Fixed width */
  height: 60px !important; 
  font-family: 'Roboto', sans-serif !important;  /* Fixed height */
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 0 !important;
  border-radius: 14px !important;
  cursor: pointer !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35) !important;
  transition: background-color 0.3s ease !important;
  transform: translateX(-8px) !important;  /* 👈 Add this */
  text-indent: -6px !important; /* Nudges text left without changing layout */
}


.install-btn:hover {
  background-color: #0056b3;
}

.close-btn {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  width: 90px;    /* match the app icon width */
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-x {
  display: inline-block;
  font-weight: 700;         /* Makes the ‘X’ thicker */
  font-size: 20px;          /* Keep it visible but not oversized */
  line-height: 1;
  transform: translateY(-5px)!important;;
  font-family: Arial, sans-serif; /* Clean and bold look */
}

.android-banner.slide-up {
  animation: slideUp 0.5s ease forwards;
}

* {
  box-sizing: border-box;
}




