:root {
  --bg1: #0f1724;
  --bg2: #1b2440;
  --bg3: #0e1a34;
  --accent1: #ff4d6d;
  --accent2: #6dd3ff;
  --accent3: #8a7bff;
  --muted: #9aa7c7;
  --glass-border: rgba(255,255,255,0.06);
  --radius: 14px;
  --container: 1200px;
}

/* === Background Animation === */
@keyframes site-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === Neon Pulse === */
@keyframes neon-pulse {
  0%, 100% {
    box-shadow: 0 0 6px rgba(109,211,255,0.4),
                0 0 18px rgba(255,77,109,0.2),
                0 0 24px rgba(138,123,255,0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 14px rgba(109,211,255,0.7),
                0 0 28px rgba(255,77,109,0.5),
                0 0 40px rgba(138,123,255,0.4);
    transform: scale(1.04);
  }
}

/* === Base === */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: #e7eefc;
  line-height: 1.45;
  background: linear-gradient(-45deg, var(--bg1), var(--bg2), var(--bg3), #111a28);
  background-size: 300% 300%;
  animation: site-flow 25s ease infinite;
  overflow-x: hidden;
  min-height: 100vh;
}

/* === Header === */
.wrap { max-width: var(--container); margin: 0 auto; padding: 40px 22px; }
header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px;
}

/* Brand Section */
.brand { 
  display: flex; align-items: center; gap: 12px; 
  text-decoration: none; color: inherit; 
  transition: all 0.3s ease;
}
.brand:hover { 
  text-shadow: 0 0 6px var(--accent2), 0 0 14px var(--accent2);
  transform: translateY(-2px);
}

/* Glowing Logo */
.logo {
  width: 56px; height: 56px; border-radius: 12px;
  background: conic-gradient(from 120deg,var(--accent2),var(--accent1),var(--accent3));
  display: grid; place-items: center;
  font-weight: 800; color: #071126; font-family: Poppins;
  animation: neon-pulse 3s ease-in-out infinite;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.logo:hover {
  transform: rotate(6deg) scale(1.1);
  box-shadow: 0 0 16px var(--accent2), 0 0 30px var(--accent1);
}

/* === Navigation === */
nav a {
  color: var(--muted); text-decoration: none; margin-left: 16px; font-weight: 600;
  transition: all .3s ease;
}
nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--accent2), 0 0 14px var(--accent1);
}
nav a.cta {
  padding: 10px 14px;
  background: linear-gradient(90deg,var(--accent1),var(--accent2));
  border-radius: 12px; color: #071126;
  font-weight: 700; 
  box-shadow: 0 0 10px rgba(109,211,255,0.3), 0 0 25px rgba(255,77,109,0.2);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: neon-pulse 4s ease-in-out infinite;
}
nav a.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(109,211,255,0.8), 0 0 38px rgba(255,77,109,0.5);
}

/* === Hero Section === */
@keyframes hero-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero {
  position: relative;
  display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: center;
  padding: 44px; border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(120deg, var(--accent1), var(--accent2), var(--accent3));
  background-size: 200% 200%;
  animation: hero-gradient 10s ease-in-out infinite;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(255,255,255,0.12), transparent 60%),
              radial-gradient(circle at 80% 60%, rgba(255,255,255,0.1), transparent 60%);
  mix-blend-mode: overlay;
  animation: float-light 8s ease-in-out infinite;
}
@keyframes float-light {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(10px,-10px); }
}

/* === Buttons === */
.btn {
  display: inline-block; border-radius: 12px; padding: 12px 16px;
  text-decoration: none; font-weight: 700; transition: all .3s ease;
}
.btn-primary {
  background: linear-gradient(90deg,var(--accent1),#ff824b);
  color: #071126;
  animation: neon-pulse 3.5s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(255,77,109,0.7);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent2);
  box-shadow: 0 0 18px rgba(109,211,255,0.3);
  transform: translateY(-4px);
}

/* === Cards === */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 28px; }
.card {
  background: rgba(255,255,255,0.03);
  padding: 18px; border-radius: 14px; border: 1px solid var(--glass-border);
  transition: all .3s ease;
}
.card:hover {
  border-color: var(--accent2);
  box-shadow: 0 0 20px rgba(109,211,255,0.15);
  transform: translateY(-6px);
}
.card h4 { font-family: Poppins; margin: 0 0 8px; }

/* === Timeline Panels === */
.timeline { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.panel {
  padding: 18px; border-radius: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.04);
  transition: all .3s ease;
}
.panel:hover {
  border-color: var(--accent3);
  box-shadow: 0 0 16px rgba(138,123,255,0.25);
  transform: translateY(-4px);
}
/* === REWARDS SECTION === */

.rewards {
  margin-top: 60px;
  text-align: center;
}

.rewards h2 {
  font-size: 2rem;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkitbackground-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0  0px #6dd3ff;
}

/* Grid layout for reward cards */
.reward-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* Reward card design */
.reward-card {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: #fff;
  font-weight: 600;
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Neon animated border (like hero) */
.reward-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 12px;
  background: conic-gradient(
    from 0deg,
    var(--accent1),
    var(--accent2),
    var(--accent3),
    var(--accent1)
  );
  mask: 
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-flow 8s linear infinite;
  opacity: 0.8;
  pointer-events: none;
}

/* Glow effect */
.reward-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 25px rgba(109,211,255,0.3);
}

.reward-card.special {
  background: rgba(255,255,255,0.05);
  border-color: var(--accent2);
  font-weight: 700;
  text-shadow: 0 0 8px var(--accent2);
}

/* Text styling */
.reward-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--accent2);
}

.reward-card p {
  color: var(--muted);
}


/* === Floating Shapes === */
.float-shape {
  position: absolute; border-radius: 50%; opacity: 0.2; filter: blur(40px);
  animation: parallax 12s ease-in-out infinite alternate;
}
.shape-1 {
  width: 300px; height: 300px; top: -100px; right: -100px;
  background: radial-gradient(circle at 30% 30%, var(--accent2), transparent 70%);
}
.shape-2 {
  width: 260px; height: 260px; bottom: -120px; left: -100px;
  background: radial-gradient(circle at 70% 70%, var(--accent1), transparent 70%);
  animation-delay: 3s;
}
@keyframes parallax {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-20px) scale(1.05); }
  100% { transform: translate(0,0) scale(1); }
}

/* === FAQ === */
.faq-item { border-radius: 12px; overflow: hidden; margin-bottom: 10px; border: 1px solid rgba(255,255,255,0.04); }
.faq-item input { display: none; }
.faq-item label {
  display: flex; justify-content: space-between; padding: 14px;
  font-weight: 700; color: #eaf4ff; cursor: pointer;
  transition: background .3s ease;
}
.faq-item label:hover { background: rgba(255,255,255,0.04); }
.answer {
  max-height: 0; overflow: hidden;
  transition: max-height .36s ease, padding .36s;
  background: rgba(255,255,255,0.02);
  color: var(--muted); padding: 0 14px;
}
.faq-item input:checked + label + .answer {
  max-height: 200px; padding: 12px 14px;
}

/* === Footer === */
footer {
  margin-top: 36px; padding: 22px; border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  display: flex; flex-wrap: wrap; justify-content: space-between;
}
footer p { margin: 0; color: var(--muted); }

/* === Responsive === */
@media (max-width:980px) {
  .hero { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  nav a { display: none; }
}
@media (max-width:480px) {
  .hero .intro h2 { font-size: 22px; }
}
