* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0b0b0b;
  color: #ffffff;
  line-height: 1.6;}

.hero {
  background: #0f172a;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #ffffff;
  color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  color: rgb(255, 255, 255);
text-shadow: rgb(122, 51, 178) 1px 1px 1px;

}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
}

.nav-btn {
  background: rgb(0, 0, 0);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 8px 10px  rgb(0, 0, 0);
  transform: translateY(-2px);

}

/* HERO */

a:hover {
  color: rgb(122, 51, 178);
  text-decoration: underline;
}

a:focus {
  outline: none;
  background: none;
}
a {
  color:  rgb(122, 51, 178);;
}

.hero {
  padding: 80px 0;
  background: radial-gradient(circle at top right, #1a1a1a, #000);
}

#rog
{color: #000000;
background-color: rgb(122, 51, 178);
border: #ffffff 1px solid;}

.hero a {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 42px;
color: rgb(122, 51, 178);
}

.hero-text p {
  margin: 15px 0;
  color: #ddd;
}

.features {
  list-style: none;
  margin: 20px 0;
}

.features li {
  margin-bottom: 8px;
}

.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #000;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: rgb(122, 51, 178);
  transform: translateY(7px);
  box-shadow: 0 1px 70px  rgb(255, 255, 255);
}

.trust {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #aaa;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 40px rgb(122, 51, 178);}

/* RESULTS */
.results {
  padding: 80px 0;
  background: #000;
  text-align: center;
}

.results h2 {
  font-size: 32px;
}

.subtitle {
  color: #bbb;
  margin-bottom: 40px;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.card {
  background: #111;
  padding: 20px;
  border-radius: 14px;
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin: 10px 0;
}

.label {
  color: #ff0000;
  font-weight: bold;
}

.after {
  color: #00ff00;
}

/* BUY */
.buy {
  padding: 80px 0;
  background: radial-gradient(circle, #1a1a1a, #000);
}

.price-card {
  max-width: 420px;
  margin: auto;
  background: #111;
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 0 40px rgb(122, 51, 178);
}

.buy-btn {
  background: rgb(122, 51, 178);
  color: #000;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px  rgb(122, 51, 178);
}


.price {
  font-size: 48px;
  color: rgb(122, 51, 178);
  margin: 15px 0;
}

.note {
  color: #aaa;
  margin-bottom: 20px;
}

.big {
  width: 100%;
  margin-bottom: 20px;
}

.center {
  text-align: left;
}

/* FOOTER */
.footer {
  padding: 20px;
  text-align: center;
  background: #000;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 32px;
  }
}
