* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0d0b12;
  color: #f4f0ff;
  line-height: 1.6;
}

a {
  color: #d59bff;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

h1,
h2,
h3 {
  color: #e7d5ff;
}

button {
  background-color: #b06ce6;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  color: #fff;
  margin-right: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #d09aff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 125px 20px;
  background: radial-gradient(circle at top left, #1c1326 0%, #0d0b12 100%);
  background-image: url("public/log0.png"); /* 👈 update path here */
  background-repeat: no-repeat;
  background-size: 325px;
  background-position: center top;
  background-blend-mode: overlay;
  opacity: 1;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #c7b1ea;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding-top: 40px;
}

.feature {
  background-color: #1a1322;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 8px rgba(208, 154, 255, 0.2);
}

/* Preview */
.preview .previews {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.preview .previews img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(184, 129, 255, 0.2);
}
/* Benefits */
.benefits {
  text-align: center;
  background-color: #16101f;
  padding: 60px 0;
}

.benefits ul {
  list-style: none;
  padding-left: 20px;
  font-size: 1.1rem;
}

.benefits ul li::before {
  content: "✨ ";
  margin-right: 8px;
  color: #e6bfff;
}

.success-guide {
  text-align: center;
  position: relative;
  min-height: 200px;
  padding: 60px 0px;
}

/* Pricing */
.pricing {
  text-align: center;
  padding: 60px 0;
  background-color: #1e172a;
}

.advertise-with-us {
  color: #fff;
  padding: 60px 20px;
  border-radius: 16px;
  text-align: center;
}

.advertise-with-us h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.advertise-with-us .ad-intro {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 600px;
  margin-inline: auto;
}

.advertise-with-us .ad-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.advertise-with-us .ad-benefits li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.link-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background-color: #ff4d6d;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.footerlink:hover {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.sexytextylink:hover {
  font-size: 3.25rem;
  font-weight: 700;
  color: #fff;
}
.sexytextylinkone:hover {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.linksuccess {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #b06ce6;
  color: #fff !important;
  border-radius: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.linksuccess:hover {
  background-color: #a04cd6;
  transform: scale(1.05);
}
.ad-section ul {
  list-style: none; /* Optional: remove bullets */
  padding-left: 0;
  font-size: 1.25rem;
}
.success-guide p {
  list-style: none; /* Optional: remove bullets */
  padding-left: 0;
  font-size: 1.25rem;
}
