:root { 
  --primary: #00aaff;
  --accent: #1c35d4;
  --background: #000815;
  --muted: #bbbbbb;
  --glass: rgba(10,10,30,0.6);
  --glass-border: rgba(0,170,255,0.25);
  --card-bg: rgba(10,10,25,0.65);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  color: var(--muted);
  background: linear-gradient(180deg, #000815, #001228, #001a3c);
  background-size: 200% 200%;
  animation: gradientShift 20s ease infinite;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 30%, rgba(0,170,255,0.15) 1px, transparent 2px),
                    radial-gradient(circle at 70% 80%, rgba(0,170,255,0.15) 1.5px, transparent 3px),
                    radial-gradient(circle at 40% 60%, rgba(0,170,255,0.1) 2px, transparent 3.5px),
                    radial-gradient(circle at 80% 20%, rgba(0,170,255,0.12) 1.2px, transparent 2.5px);
  background-size: 300px 300px;
  backdrop-filter: blur(1px);
  animation: dropMove 25s linear infinite;
  z-index: -1;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes dropMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 300px; }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(0,170,255,0.2);
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand .logo {
  width: 60px;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent);
  bottom: -3px;
  left: 0;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  width: 95%;
  margin-bottom: 50px;
  max-width: 1200px;
  padding: 4rem 1rem 2rem 1rem; 
  box-sizing: border-box;
}


.hero-logo {
  width: 300px;
  animation: floatLogo 3s ease-in-out infinite alternate;
}

@keyframes floatLogo {
  0% { transform: translateY(0) rotate(-5deg);}
  100% { transform: translateY(-8px) rotate(5deg);}
}
.what{
  font-size: 3.4rem;
  color: var(--primary);
  text-shadow: 0 0 15px var(--primary), 0 0 30px var(--accent);

}
.hero h1 {
  font-size: 4rem;
  color: var(--primary);
  text-shadow: 0 0 15px var(--primary), 0 0 30px var(--accent);
}

.hero p {
  font-size: 1.2rem;
  color: var(--muted);
  text-shadow: 0 0 8px rgba(0,170,255,0.3);
}

.promo-btn {
  padding: 0.7rem 1.8rem;
  width: 250px;
  font-size: 1.4em;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #ffffffd4;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 20px var(--primary), 0 0 40px var(--accent);
  transition: transform 0.3s, box-shadow 0.3s;
}

.promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--accent), 0 0 45px var(--primary);
}

.works {
  width: 95%;
  max-width: 1000px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 2rem;
}

.works h1 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-shadow: 0 0 15px var(--primary), 0 0 25px var(--accent);
}


.steps {
  display: flex;
  align-items: center; 
  justify-content: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.5rem;
  gap: 1.5rem;
  box-shadow: 0 0 15px rgba(0,170,255,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 800px;
  width: 100%;
}

.steps:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px var(--accent), 0 0 40px var(--primary);
}

.stepnumber {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 10px var(--primary);
  box-shadow: 0 0 15px var(--primary), 0 0 25px var(--accent);
  flex-shrink: 0;
}

.step-content {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  gap: 0.4rem;
}

.steps h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 0 8px var(--primary);
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.steps .code {
  display: inline-block;  
  margin-top: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 90px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 0 12px var(--primary), 0 0 20px var(--accent);
  white-space: nowrap; 
  width: max-content;   
  opacity: 0.9;
}




@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stepnumber {
    margin-bottom: 1rem;
  }

  .step-content {
    align-items: center;
  }
}


.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  width: 95%;
  margin-top: 30px;
  max-width: 1000px;
  justify-items: center; 
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 18px rgba(0,170,255,0.25);
}

.feature-card h2 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px var(--primary), 0 0 20px var(--accent);
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px var(--accent), 0 0 40px var(--primary);
  color: var(--accent);
}

.feature-card img {
  display: block;
  max-width: 90%;
  height: auto;
  margin-bottom: 1rem;
}

.feature-card img.cash {
  width: auto;
  max-width: 140%;
  height: auto;
}


.socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  width: 95%;
  max-width: 1200px;
}

.socialbox {
  background: rgba(0,0,25,0.35); 
  border-radius: 25px;
  width: 200px;
  min-height: 180px;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 18px rgba(0,170,255,0.25);
}

.socialbox:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px var(--accent), 0 0 40px var(--primary);
}

.socialbox img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.8rem;
  transition: transform 0.3s, box-shadow 0.3s;
}



.socialbox p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

a {
  text-decoration: none;
}

footer {
  margin-top: auto;
  padding: 1rem 1rem;
  background: var(--card-bg);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  color: var(--muted);
  gap: 0.8rem;
  width: 95%;
  max-width: 1200px;
}

footer a {
  color: var(--primary);
}

footer a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .hero {
    padding-top: 6rem; 
    height: auto; 
  }
  .hero h1 {
    font-size: 2rem;
  }
.features {
  margin-top: 30px;
  max-width: 800px;
}
  .promo-btn {
    padding: 0.5rem 1.5rem;
    width: 80%;
    font-size: 1.2em;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-card h2 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .hero-logo {
    width: 80%;
    max-width: 300px;
  }

  .socialbox {
    width: 150px;
    min-height: 150px;
    padding: 0.8rem;
  }

  .socialbox img {
    width: 50px;
    height: 50px;
  }
  .what{
  font-size: 2rem;
  color: var(--primary);
  text-shadow: 0 0 15px var(--primary), 0 0 30px var(--accent);

}
}
