:root {
  --primary-color: #007FFE;
  /* --secondary-color: #7166ff;
  --gradient-start: #8665f7; */
  --gradient-end: #f192d7;
  --text-color: #333;
  --white: #fff;
  --background-color: #f5f7ff;
  --border-radius: 50px;
  --btn-shadow: 0 4px 15px rgba(134, 101, 247, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  /* background: var(--background-color);
    background: linear-gradient(135deg, #f5f7ff 0%, #e9edff 100%); */
  background: url(../img/bg.png) no-repeat center center fixed;
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  /* padding: 20px; */
}

.container {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.app-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.primary-text {
  color: #333;
}

.secondary-text {
  color: var(--primary-color);
}

.security-section {
  margin: 36px 0;
  padding: 0 18px;
}

.security-section h2 {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  position: relative;
}

.security-section h2::before,
.security-section h2::after {
  content: "";
  height: 2px;
  /*background-color: rgba(124, 66, 255, 0.19);*/
  background-color: rgba(0, 127, 254, 1);
  width: 25%;
  position: absolute;
  top: 50%;
}

.security-section h2::before {
  left: 0;
}

.security-section h2::after {
  right: 0;
}

.app-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  padding: 0 18px;
}

.app-logo {
  margin-bottom: 12px;
}

.app-logo img {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  box-shadow: 0 6px 20px rgba(134, 101, 247, 0.1);
}

.app-name h2 {
  font-size: 3rem;
  margin-bottom: 5px;
  color: #333;
  font-weight: 600;
}

.app-name p {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.download-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 0 18px;
}

.download-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 12px;
}

.download-btn {
  /*background-color: var(--white);*/
  border: 1px solid rgba(0, 127, 254, 1);
  color: var(--primary-color);
  padding: 15px 0;
  /*border-radius: var(--border-radius);*/
  text-decoration: none;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  box-shadow: var(--btn-shadow);
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(134, 101, 247, 0.3);
}

.download-btn .icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

.download-btn .icon svg {
  width: 22px;
  height: 22px;
}

.download-btn .text {
  font-size: 1rem;
  text-transform: capitalize;
}

/* Responsive design */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .app-name h2 {
    font-size: 2.5rem;
  }

  .download-btn .icon svg {
    width: 20px;
    height: 20px;
  }

  .download-btn .text {
    font-size: 0.9rem;
  }

  .security-section h2::before,
  .security-section h2::after {
    width: 14%;
  }
}

/* Adjustments for larger screens */
@media (min-width: 768px) {
  .container {
    max-width: 600px;
  }

  h1 {
    font-size: 3rem;
  }

  .download-btn {
    padding: 18px 0;
  }

  .download-btn .text {
    font-size: 1.1rem;
  }
}
