body {
  background: var(--bg-color);
  height: 100vh;
}

a {
  width: 600px;
  max-width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.text {
  font-size: 1.2rem;
  font-family: snapp;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--container-bg);
  padding: 0.5rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border-color);
}

h1 {
  color: var(--heading-color);
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
}

h1::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--heading-color),
    transparent
  );
}

.border1 {
  background: var(--gradient-color);
  padding: 0.5rem;
  border-radius: 1.5rem;
}

.border1:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


.install-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 8px 20px;
  color: var(--text-color);
  font-size: 0.9rem;
  z-index: 1000;
  transition: all 0.3s ease;
  font-family: snapp;
  display: none;
  background: var(--bg-color);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: fit-content;
  width: fit-content;
}

.install-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(109, 74, 255, 0.4);
}


#ios-banner {
  display: none;
  position: fixed;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  border-radius: 3rem 3rem 0 0;
  align-items: center;
  justify-content: center;
  inset: 0;
  background-color: var(--bg-color);
}

.ios-banner-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-color);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 500px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#ios-banner h2 {
  font-family: snapp;
  font-size: 1.2rem;
  color: var(--text-color);
  width: 100%;
  margin: auto;
}

#ios-banner ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: vazir;
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 600;
}

#ios-banner ul strong {
  font-weight: 800;
  color: var(--heading-color);
}

.exist {
  display: flex;
  justify-content: left;
  width: 100%;
}

#ios-close {
  color: var(--heading-color);
  cursor: pointer;
  font-family: snapp;
  font-size: 0.8rem;
  background: transparent;
}

@media screen and (max-width: 500px) {
  #ios-banner h2 {
    font-size: 1rem;
  }

  #ios-banner ul {
    font-size: 0.9rem;
  }

  #ios-close {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 320px) {
  .text {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 1rem;
  }

  .install-button {
    font-size: 0.8rem;
  }
}
