body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #fff;
}

/* container */
.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  color: #aaa;
  font-size: 16px;
}

.hero .btn {
  margin-top: 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* CARD */
.card {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0,255,180,0.15);
  position: relative;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 0 30px rgba(0,255,180,0.2);
}

/* BADGE */
.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #00ff9f;
  color: #000;
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: bold;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(90deg, #00ff9f, #00d4ff);
  color: #000;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* CTA BLOCK */
.cta {
  background: linear-gradient(90deg, #00ff9f, #00d4ff);
  color: #000;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
}

/* headings */
h2 {
  margin-top: 50px;
  border-left: 5px solid #00ff9f;
  padding-left: 12px;
}

/* text */
p {
  color: #ccc;
}

/* footer */
footer {
  margin-top: 60px;
  text-align: center;
  color: #777;
}
/* ULTRA MENU */

.menu {
  position: sticky;
  top: 15px;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.menu-inner {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,255,180,0.2);
  border-radius: 14px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 0 20px rgba(0,255,180,0.08);
}

/* LOGO */
.logo {
  font-weight: bold;
  color: #00ff9f;
  font-size: 16px;
}

/* LINKS */
.menu-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

.menu-links a:hover {
  color: #00ff9f;
}

/* hover glow */
.menu-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ff9f;
  transition: 0.3s;
}

.menu-links a:hover::after {
  width: 100%;
}

/* MOBILE */
@media(max-width: 768px) {
  .menu-inner {
    flex-direction: column;
    gap: 10px;
  }
}
.logo {
  font-weight: bold;
  color: #00ff9f;
  font-size: 16px;
  text-decoration: none;
}