* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #020611, #521139);
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  padding: 40px 20px;
  color: white;
}

.logo {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  background-color: #c47b29;
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: #ff5adc;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.features {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature {
  margin-bottom: 40px;
}

.feature h2 {
  color: #d8690f;
  margin-bottom: 15px;
  font-size: 2rem;
}

.feature p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.screenshots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.screenshot {
  width: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.screenshot:hover {
  transform: scale(1.05);
}

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.placeholder-img {
  height: 500px;
  background: linear-gradient(45deg, #a777e3, #6e8efb);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  padding: 0px;
}

footer {
  text-align: center;
  padding: 30px;
  color: white;
  margin-top: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.contact {
  margin-bottom: 15px;
}

.contact a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact a:hover {
  color: #ff7ae5;
  text-decoration: underline;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .screenshot {
    width: 100%;
    max-width: 300px;
  }
}
