body {
  margin: 0;
  background: linear-gradient(
    to bottom,
    #000000,
    #001f3f
  ); /* Darker background */
  color: white;
  text-align: center;
  background-attachment: fixed;
  font-family: "Nunito", sans-serif; /* Apply the Google Font */
}
header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
img.logo {
  width: 300px;
}
.tagline {
  font-size: 2.2em;
  font-weight: 700;
  margin: 16px 0;
}

.subtitle {
  font-size: 1.1em;
  opacity: 0.65;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tagline {
    font-size: 1.8em;
  }
  .subtitle {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .tagline {
    font-size: 1.5em;
  }
}
.screenshot {
  max-width: 80%;
  height: auto;
  opacity: 0.8; /* Fading effect */
  border-radius: 10px; /* Rounded corners */
  margin: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow */
  transition: opacity 0.3s, transform 0.3s; /* Smooth transition */
}
.button {
  background-color: #ffcc00;
  color: black;
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 50px; /* Fully rounded */
  transition: background-color 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow */
  font-weight: bold;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
.button.secondary {
  background-color: transparent;
  border: 1px solid #ffcc00; /* Darker color for secondary button */
  color: white;
}
.button:hover {
  background-color: #e6b800;
}
.button.secondary:hover {
  background-color: #ffcc00;
  color: black; /* Darker on hover for secondary */
}
footer {
  margin: 40px;
  font-size: 0.8em;
  height: 30px;
  margin-bottom: 0;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
a {
  text-decoration: none;
  color: #ffcc00;
}

.actions {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 480px) {
  .actions {
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
  }
  .button {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }
}

.section {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.section h2 {
  font-size: 1.4em;
  font-weight: 600;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.15);
  border: 1px solid rgba(255, 204, 0, 0.4);
  color: #ffcc00;
  font-weight: 700;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step p {
  margin: 0;
  font-size: 1.05em;
  opacity: 0.85;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1em;
  font-weight: 700;
  color: #ffcc00;
}

.badge {
  display: inline-block;
  font-size: 0.65em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #001f3f;
  background: #ffcc00;
  border-radius: 50px;
  padding: 2px 8px;
  margin-left: 6px;
  vertical-align: middle;
}

.features-note {
  font-size: 0.85em;
  opacity: 0.5;
  margin: 24px 0 0;
}

.feature-card p {
  margin: 0;
  font-size: 0.9em;
  opacity: 0.7;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section h2 {
    font-size: 1.1em;
  }
}

/* Star container */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Each star */
.star {
  position: absolute;
  width: 1px;
  height: 1px;
  background: white;
  /* opacity: 0.5; */
}
