* {
  box-sizing: border-box;
}

.app {
  width: 100%;
  height: 100%;

  background: linear-gradient(180deg, #dfd1fb 0%, #fafafa 10%);
}

.main {
  display: flex;
  padding: 64px 20px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.icon-box {
  display: flex;
  padding: 16px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.icon-wrapper {
  display: flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 10px -2.5px rgba(116, 44, 255, 0.25);
}

.app-title {
  align-self: stretch;

  color: #000;
  text-align: center;
  font-family: Figtree;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.text-plain {
  align-self: stretch;

  color: #000;
  text-align: center;
  font-family: Figtree;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.text-bold {
  align-self: stretch;

  color: #000;
  text-align: center;
  font-family: Figtree;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.button-primary {
  display: flex;
  height: 48px;
  padding: 11.5px 36px 12.5px 36px;
  justify-content: center;
  align-items: center;

  color: #fff;
  text-align: center;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;

  background: #000;
  border: none;
  cursor: pointer;
}

.button-cta {
  border: none;
  background-color: transparent;
}

.button-secondary {
  display: flex;
  height: 48px;
  padding: 11.5px 36px 12.5px 36px;
  justify-content: center;
  align-items: center;

  color: #000;
  text-align: center;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */

  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

#button-access-wrapper > .text-bold {
  margin-top: 0.8rem;
}

.image-wrapper {
  display: flex;
  flex-direction: column;
  justify-items: flex-end;
  width: 100%;
}

.image-wrapper img {
  width: 100%;
}

footer {
  display: flex;
  padding: 40px 20px;
  flex-direction: column;
  align-items: flex;
  gap: 40px;

  background: #000;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-main img {
  display: flex;
  padding: 0 0 12px 16px;
  flex-direction: column;
  align-items: flex-start;
}

.footer-text-primary {
  margin-left: 73px;

  color: #fff;
  font-family: Figtree;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.copyright-notice {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.footer-text-secondary {
  color: #fff;
  font-family: Figtree;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

/* In-app browser instructions styles */
#inapp-instructions {
  max-width: 90%;
  text-align: center;
  border: 2px solid #724cff;
  background: linear-gradient(135deg, #fff8f6 0%, #fff 100%);
  box-shadow: 0 4px 12px rgba(114, 76, 255, 0.15);
  animation: slideInUp 0.3s ease-out;
}

#inapp-instructions .text-bold {
  margin-bottom: 8px;
  font-size: 16px;
}

#inapp-instructions .text-plain {
  margin: 8px 0;
  font-size: 14px;
  color: #333;
}

#platform-instructions {
  text-align: left;
  background: #f8f9fa;
  padding: 12px;
  border-radius: 6px;
  border-left: 4px solid #ff6b35;
}

#platform-instructions strong {
  color: #ff6b35;
  font-weight: 600;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile-specific styles for instructions */
@media (max-width: 768px) {
  #inapp-instructions {
    margin: 16px 10px;
    padding: 12px;
  }

  #platform-instructions {
    font-size: 12px;
    padding: 10px;
  }
}
