body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  color: white;
  background:
    radial-gradient(circle at 20% 10%, #0f1f17 0%, transparent 40%),
    radial-gradient(circle at 80% 90%, #071a14 0%, transparent 45%),
    #000;
  overflow-x: hidden;
}

/* NOISE OVERLAY */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/noise.png");
  opacity: 0.03;
  pointer-events: none;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-inner h1 {
  font-size: 70px;
  letter-spacing: 6px;
}

.sub {
  color: #10b981;
  letter-spacing: 3px;
}

/* LOGO */
.logo img {
  width: 150px;
  border-radius: 50%;
  animation: float 4s ease-in-out infinite, glow 3s infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes glow {
  0% { filter: drop-shadow(0 0 10px #10b98130); }
  50% { filter: drop-shadow(0 0 25px #10b98160); }
  100% { filter: drop-shadow(0 0 10px #10b98130); }
}

/* SECONDARY LOGO */
.hero-logo-secondary {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.hero-logo-secondary img {
  width: 90px;
  opacity: 0.6;
  filter: brightness(0.8) contrast(1.2);
  animation: floatSecondary 6s ease-in-out infinite;
  transition: all 0.4s ease;
}

@keyframes floatSecondary {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-logo-secondary img:hover {
  transform: scale(1.1) rotate(6deg);
  opacity: 1;
}

/* TOP BAR */
.topbar {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BUY BUTTON */
.buy-btn {
  background: transparent;
  border: 1px solid #10b981;
  color: #10b981;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: #10b981;
  color: black;
  box-shadow: 0 0 25px rgba(16,185,129,0.4);
  transform: translateY(-2px);
}

/* STATUS */
.status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.offline {
  background: #ff3b3b;
  box-shadow: 0 0 8px #ff3b3b;
  animation: blink 1.2s infinite;
}

.online {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 1.5s infinite;
}

.status-text {
  color: #ff3b3b;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* SOCIALS */
.socials {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.socials a {
  color: #10b981;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.socials a:hover {
  border: 1px solid #10b981;
  box-shadow: 0 0 15px rgba(16,185,129,0.3);
  transform: translateY(-2px);
}

/* CTA */
.cta button {
  margin: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid #10b981;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta button:hover {
  background: #10b981;
  color: black;
  transform: scale(1.05);
}

/* SECTIONS */
.section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  text-align: center;
  letter-spacing: 5px;
  color: #10b981;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* CARD SYSTEM */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #10b981;
  box-shadow: 0 0 25px rgba(16,185,129,0.25);
}


/* ENERGY SWEEP */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(16,185,129,0.15),
    transparent
  );
  transition: 0.6s ease;
}

.card:hover::before {
  left: 120%;
}

/* HEADINGS */
h3 {
  color: #10b981;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* VAULTS */
.vault {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 16px;
  position: relative;
  transition: all 0.35s ease;
}

.vault:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(16,185,129,0.2);
}

/* JOIN BUTTONS */
.join-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.join-btn {
  padding: 14px 26px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid #10b981;
  color: white;
  transition: all 0.3s ease;
}

.join-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(16,185,129,0.3);
}

.join-btn.telegram:hover,
.join-btn.twitter:hover {
  background: #10b981;
  color: black;
}

/* BUY CARDS */
.buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.buy-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 18px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.buy-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #10b981;
  box-shadow: 0 0 30px rgba(16,185,129,0.2);
}

/* CONTRACT */
.contract {
  text-align: center;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  transition: all 0.35s ease;
}

.contract:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(16,185,129,0.2);
}

/* COPY ICON */
.copy-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.copy-wrapper:hover {
  background: #10b981;
  color: black;
  transform: scale(1.1);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 60px;
  color: #555;
}