:root {
  --background-color: #141414;
  --text-color: #ffffff;
  --orange: #fe7e07;
  --card-width: 200px;
  --card-height: 300px;
}

body {
  background-color: var(--background-color);
  font-family: 'Poppins', sans-serif;
  padding: 10px 50px;
  overflow-x: hidden;
  margin: 0;
}

.orange {
  color: var(--orange);
}

.bold {
  font-weight: bold;
}

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

.title {
  color: var(--text-color);
  font-size: 3.5rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 20px;
}

.description {
  color: #aaaaaa;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  margin-bottom: 30px;
}

/* App Store Button Styles */
.app-store-button-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  background-color: #ffffff;
  border: 1px solid #a6a6a6;
  border-radius: 8px;
  text-decoration: none;
  color: var(--background-color);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  min-width: 160px;
  max-width: 190px;
}

.app-store-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-store-button.coming-soon {
  opacity: 0.6;
  cursor: default;
  background-color: #f5f5f5;
}

.app-store-button.coming-soon:hover {
  transform: none;
  box-shadow: none;
  background-color: #f5f5f5;
}

.app-store-content {
  display: flex;
  align-items: center;
  width: 100%;
}

.app-store-icon {
  margin-right: 12px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.app-store-icon svg {
  width: 100%;
  height: 100%;
  color: #000000;
}

.app-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.download-text {
  font-size: 11px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 2px;
}

.store-name {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}

.try-me {
  color: var(--text-color);
  color: #bbbbbb;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
}

.swipe-indicator {
  position: relative;
  top: calc(var(--card-height) + 90px);
  color: #bbbbbb;
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}

.privacy-link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  body {
    padding: 10px 16px;
  }

  .title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

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

  .app-store-button-container {
    display: flex;
    flex-direction: column;
  }

  .app-store-button {
    align-self: center;
  }
}
