:root{
  --bg:#05060f;
  --bg-dark:#03040b;
  --card:#0d1024;
  --pink:#ff3d9a;
  --pink-glow:rgba(255,61,154,.6);
  --text:#ffffff;
  --muted:#a3a7c7;
  --border:rgba(255,255,255,.08);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter,system-ui,sans-serif;
  -webkit-tap-highlight-color:transparent;
}

html{
  scroll-behavior:smooth;
}

body{
  background:
    radial-gradient(circle at 20% 10%, #160a2d 0%, transparent 40%),
    radial-gradient(circle at 80% 90%, #2a0f1f 0%, transparent 45%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

/* ================= LAYOUT ================= */

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.section{
  padding:110px 0;
}

.section.dark{
  background:linear-gradient(180deg,var(--bg-dark),#02030a);
}

.section-title{
  font-size:42px;
  font-weight:800;
  text-align:center;
  margin-bottom:60px;
  letter-spacing:.3px;
}

/* ================= HEADER ================= */

.header{
  position:sticky;
  top:0;
  z-index:999;
  padding: 0 15px;
  background:rgba(5,6,15,.65);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:22px;
  font-weight:800;
}

.brand img{
  width:38px;
  filter:drop-shadow(0 0 18px var(--pink-glow));
}

/* ================= NAV ================= */

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-links a{
  color:#d6d8ff;
  text-decoration:none;
  font-weight:500;
  position:relative;
  transition:.3s;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--pink);
  transition:.3s;
}

.nav-links a:hover{
  color:#fff;
}

.nav-links a:hover::after{
  width:100%;
}

/* ================= BUTTONS ================= */

.btn-primary{
  background:linear-gradient(135deg,#ff3d9a,#c84cff);
  padding:14px 34px;
  border-radius:30px;
  color:white;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 0 35px var(--pink-glow);
  transition:.3s;
  white-space:nowrap;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 0 55px var(--pink-glow);
}

.btn-outline{
  border:1px solid var(--pink);
  padding:14px 34px;
  border-radius:30px;
  color:var(--pink);
  text-decoration:none;
  font-weight:600;
  transition:.3s;
  white-space:nowrap;
}

.btn-outline:hover{
  background:rgba(255,61,154,.12);
}

/* ================= HERO ================= */

.hero{
  padding:140px 0 120px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.tag{
  display:inline-block;
  padding:8px 18px;
  border-radius:30px;
  background:rgba(255,61,154,.12);
  color:var(--pink);
  margin-bottom:18px;
  font-size:14px;
}

.hero h1{
  font-size:60px;
  line-height:1.1;
  margin-bottom:20px;
}

.hero h1 span{
  color:var(--pink);
}

.hero p{
  color:var(--muted);
  font-size:18px;
  max-width:560px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin:32px 0;
}

.security-bar{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  color:var(--muted);
  font-size:14px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    animation: float 4.5s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(255, 0, 150, 0.5));
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover Effect */
.hero-visual img:hover {
    transform: scale(1.05) rotateY(8deg);
    filter: drop-shadow(0 30px 80px rgba(255, 0, 200, 0.7));
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Animated Glow Background */
.hero-visual::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,0,200,0.4) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}
/* ================= GRID ================= */

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

/* ================= CARDS ================= */

.card{
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.01));
  border:1px solid var(--border);
  border-radius:22px;
  padding:34px;
  transition:.4s;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 0 60px rgba(255,61,154,.15);
}

.glass{
  backdrop-filter:blur(16px);
}

.center{
  text-align:center;
}

/* ===== Tokenomics Section ===== */

.tokenomics-section{
  padding:50px 20px;
  position:relative;
}

.section-title{
  text-align:center;
  font-size:38px;
  margin-bottom:60px;
  background:linear-gradient(90deg,#ff4ecd,#00c3ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ===== Grid ===== */

.tokenomics-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
  max-width:1100px;
  margin:auto;
}

/* ===== Card ===== */

.token-card{
  position:relative;
  padding:35px 25px;
  border-radius:22px;

  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.08);

  transition:.4s;
  overflow:hidden;
}

/* Gradient Border Glow */

.token-card::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:22px;

  background:linear-gradient(120deg,#ff4ecd,#00c3ff);
  -webkit-mask:
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  transition:.4s;
}

/* Hover Effect */

.token-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 30px rgba(0,195,255,0.3);
}

.token-card:hover::before{
  opacity:1;
}

/* ===== Text ===== */

.token-card h4{
  font-size:15px;
  color:#aaa;
  letter-spacing:1px;
  margin-bottom:12px;
  text-transform:uppercase;
}

.token-card p{
  font-size:22px;
  font-weight:700;
  color:white;
}

/* ===== Highlight Card ===== */

.token-card.highlight{
  background:linear-gradient(145deg,#ff4ecd20,#00c3ff20);
  box-shadow:0 0 25px rgba(255,78,205,0.2);
}

/* ===== Protocol Section ===== */

.protocol-section{
  padding:50px 20px;
  background:#050712;
  position:relative;
}

/* ===== Grid ===== */

.protocol-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  max-width:1100px;
  margin:auto;
}

/* ===== Card ===== */

.protocol-card{
  position:relative;
  padding:40px 30px;
  border-radius:24px;

  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.07);

  text-align:center;
  transition:0.4s;
  overflow:hidden;
}

/* Glow Border */

.protocol-card::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:24px;

  background:linear-gradient(130deg,#ff4ecd,#00c3ff);
  -webkit-mask:
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  transition:0.4s;
}

/* Hover Effect */

.protocol-card:hover{
  transform:translateY(-12px);
  box-shadow:0 0 35px rgba(0,195,255,0.25);
}

.protocol-card:hover::before{
  opacity:1;
}

/* ===== Icon ===== */

.protocol-card .icon{
  font-size:42px;
  margin-bottom:18px;
  filter:drop-shadow(0 0 12px rgba(0,195,255,0.6));
}

/* ===== Text ===== */

.protocol-card h3{
  font-size:20px;
  margin-bottom:14px;
}

.protocol-card p{
  color:#aaa;
  font-size:15px;
  line-height:1.6;
}

/* ===== Highlight Card ===== */

.protocol-card.highlight{
  background:linear-gradient(145deg,#ff4ecd20,#00c3ff20);
  box-shadow:0 0 25px rgba(255,78,205,0.2);
}

/* ===== Why Section ===== */

.why-section{
  padding:50px 20px;
  position:relative;
}

/* ===== Grid ===== */

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  max-width:1100px;
  margin:auto;
}

/* ===== Card ===== */

.why-card{
  position:relative;
  padding:45px 30px;
  border-radius:24px;

  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.07);

  text-align:center;
  transition:.4s;
  overflow:hidden;
}

/* Gradient Glow Border */

.why-card::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:24px;

  background:linear-gradient(120deg,#ff4ecd,#00c3ff);
  -webkit-mask:
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  transition:.4s;
}

/* Hover Effect */

.why-card:hover{
  transform:translateY(-12px);
  box-shadow:0 0 35px rgba(0,195,255,0.25);
}

.why-card:hover::before{
  opacity:1;
}

/* ===== Icon ===== */

.why-icon{
  font-size:42px;
  margin-bottom:20px;
  filter:drop-shadow(0 0 15px rgba(255,78,205,0.6));
}

/* ===== Text ===== */

.why-card h3{
  font-size:20px;
  margin-bottom:15px;
  position:relative;
}

/* Animated Underline */

.why-card h3::after{
  content:"";
  width:0%;
  height:2px;
  background:linear-gradient(90deg,#ff4ecd,#00c3ff);
  display:block;
  margin:10px auto 0;
  transition:.4s;
}

.why-card:hover h3::after{
  width:60%;
}

.why-card p{
  color:#aaa;
  line-height:1.6;
  font-size:15px;
}

/* ===== Highlight Center Card ===== */

.why-card.highlight{
  background:linear-gradient(145deg,#ff4ecd20,#00c3ff20);
  box-shadow:0 0 25px rgba(255,78,205,0.2);
}

/* ===== Analytics Section ===== */

.analytics-section{
  padding:50px 20px;
  background:#050712;
  text-align:center;
}

/* ===== Main Card ===== */

.analytics-card{
  max-width:900px;
  margin:auto;
  padding:60px 40px;
  border-radius:28px;

  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.08);

  position:relative;
  overflow:hidden;
  transition:.4s;
}

/* Glow Border */

.analytics-card::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:28px;

  background:linear-gradient(130deg,#ff4ecd,#00c3ff);
  -webkit-mask:
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  transition:.4s;
}

.analytics-card:hover::before{
  opacity:1;
}

/* ===== Icon ===== */

.analytics-icon{
  font-size:48px;
  margin-bottom:25px;
  filter:drop-shadow(0 0 15px rgba(0,195,255,0.5));
}

/* ===== Text ===== */

.analytics-text{
  color:#bbb;
  font-size:17px;
  line-height:1.7;
  margin-bottom:40px;
}

/* ===== Stats ===== */

.analytics-stats{
  display:flex;
  justify-content:center;
  gap:50px;
  margin-bottom:45px;
  flex-wrap:wrap;
}

.stat h4{
  font-size:14px;
  color:#999;
  margin-bottom:6px;
}

.stat span{
  font-size:24px;
  font-weight:700;
  background:linear-gradient(90deg,#ff4ecd,#00c3ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ===== Button ===== */

.analytics-btn{
  display:inline-block;
  padding:14px 34px;
  border-radius:30px;

  border:1px solid #00c3ff;
  color:#00c3ff;
  text-decoration:none;
  font-weight:600;

  transition:.3s;
}

.analytics-btn:hover{
  background:linear-gradient(90deg,#ff4ecd,#00c3ff);
  color:white;
  box-shadow:0 0 25px rgba(0,195,255,0.4);
}

/* ===== Security Section ===== */

.security-section{
  padding:50px 20px;
  background:#050712;
  text-align:center;
}

/* ===== Main Card ===== */

.security-card{
  max-width:850px;
  margin:auto;
  padding:60px 40px;
  border-radius:28px;

  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.08);

  position:relative;
  overflow:hidden;
  transition:.4s;
}
/* ===== Audit Logos ===== */

.audit-partners{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:35px;
  flex-wrap:wrap;
}

.audit-badge{
  padding:10px 18px;
  border-radius:12px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  font-size:14px;
}
/* Glow Border */

.security-card::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:28px;

  background:linear-gradient(120deg,#00ffb3,#00c3ff);
  -webkit-mask:
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  transition:.4s;
}

.security-card:hover::before{
  opacity:1;
}

/* ===== Icon ===== */

.security-icon{
  font-size:48px;
  margin-bottom:25px;
  filter:drop-shadow(0 0 15px rgba(0,255,179,0.5));
}

/* ===== Text ===== */

.security-text{
  color:#bbb;
  font-size:17px;
  line-height:1.7;
  margin-bottom:35px;
}

/* ===== Feature List ===== */

.security-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-bottom:40px;
}

.feature{
  background:rgba(255,255,255,0.03);
  padding:14px;
  border-radius:12px;
  font-size:14px;
  border:1px solid rgba(255,255,255,0.06);
}

/* ===== Button ===== */

.security-btn{
  display:inline-block;
  padding:14px 36px;
  border-radius:30px;

  border:1px solid #00ffb3;
  color:#00ffb3;
  text-decoration:none;
  font-weight:600;

  transition:.3s;
}

.security-btn:hover{
  background:linear-gradient(90deg,#00ffb3,#00c3ff);
  color:white;
  box-shadow:0 0 25px rgba(0,255,179,0.4);
}


/* ===== Whitepaper Section ===== */

.whitepaper-section{
  padding:50px 20px;
  text-align:center;
  position:relative;
}

/* ===== Glow Background Aura ===== */

.whitepaper-section::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,#ff4ecd40,#00c3ff20,transparent);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  filter:blur(90px);
  z-index:0;
}

/* ===== Card ===== */

.whitepaper-card{
  position:relative;
  z-index:1;

  max-width:750px;
  margin:auto;
  padding:70px 40px;
  border-radius:30px;

  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.08);

  transition:.4s;
}

/* Gradient Glow Border */

.whitepaper-card::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:30px;

  background:linear-gradient(120deg,#ff4ecd,#00c3ff);
  -webkit-mask:
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  transition:.4s;
}

.whitepaper-card:hover::before{
  opacity:1;
}

/* ===== Icon ===== */

.whitepaper-icon{
  font-size:50px;
  margin-bottom:20px;
  filter:drop-shadow(0 0 15px rgba(255,78,205,0.5));
}

/* ===== Heading ===== */

.whitepaper-card h2{
  font-size:32px;
  margin-bottom:18px;
}

/* ===== Text ===== */

.whitepaper-card p{
  color:#bbb;
  font-size:17px;
  line-height:1.7;
  margin-bottom:40px;
}

/* ===== CTA Button ===== */

.whitepaper-btn{
  display:inline-block;
  padding:16px 40px;
  border-radius:35px;

  background:linear-gradient(90deg,#ff4ecd,#00c3ff);
  color:white;
  text-decoration:none;
  font-weight:600;

  transition:.3s;
}

.whitepaper-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 0 30px rgba(255,78,205,0.4);
}

/* ===== Risk Section ===== */

.risk-section{
  padding:50px 20px;
  background:#050712;
  text-align:center;
}

/* ===== Risk Card ===== */

.risk-card{
  max-width:850px;
  margin:auto;
  padding:60px 40px;
  border-radius:28px;

  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.08);

  position:relative;
  transition:.4s;
  overflow:hidden;
}

/* Warning Glow Border */

.risk-card::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:28px;

  background:linear-gradient(120deg,#ff5c5c,#ffb347);
  -webkit-mask:
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  transition:.4s;
}

.risk-card:hover::before{
  opacity:1;
}

/* ===== Icon ===== */

.risk-icon{
  font-size:50px;
  margin-bottom:25px;
  filter:drop-shadow(0 0 15px rgba(255,92,92,0.5));
}

/* ===== Text ===== */

.risk-text{
  color:#bbb;
  font-size:17px;
  line-height:1.7;
  margin-bottom:35px;
}

/* ===== Risk Points ===== */

.risk-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  text-align:left;
}

.risk-point{
  background:rgba(255,255,255,0.03);
  padding:14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.06);
  font-size:14px;
}

/* ===== Community Section ===== */

.community-section{
  padding:50px 20px;
  text-align:center;
  position:relative;
}

/* Subtitle */

.community-subtitle{
  color:#aaa;
  margin-bottom:50px;
  font-size:16px;
}

/* Grid */

.community-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
  max-width:900px;
  margin:auto;
}

/* Card */

.community-card{
  padding:45px 25px;
  border-radius:24px;

  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.07);

  text-decoration:none;
  color:white;

  transition:.4s;
  position:relative;
  overflow:hidden;
}

/* Glow Border */

.community-card::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:24px;

  background:linear-gradient(120deg,#ff4ecd,#00c3ff);
  -webkit-mask:
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  transition:.4s;
}

.community-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 30px rgba(0,195,255,0.25);
}

.community-card:hover::before{
  opacity:1;
}

/* Icon */

.community-icon{
  font-size:42px;
  margin-bottom:18px;
}

/* Text */

.community-card h3{
  margin-bottom:8px;
}

.community-card span{
  font-size:14px;
  color:#aaa;
}

/* Platform Colors */

.telegram:hover{
  box-shadow:0 0 30px rgba(0,136,204,0.4);
}

.twitter:hover{
  box-shadow:0 0 30px rgba(29,161,242,0.4);
}

.discord:hover{
  box-shadow:0 0 30px rgba(114,137,218,0.4);
}

/* ===== ROADMAP SECTION ===== */

.roadmap{
  padding:50px 20px;
  position:relative;
}

.roadmap-title{
  text-align:center;
  font-size:36px;
  margin-bottom:60px;
}

/* ===== Timeline Line ===== */

.roadmap-container{
  position:relative;
  max-width:1000px;
  margin:auto;
}

.roadmap-container::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:3px;
  height:100%;
  background:linear-gradient(to bottom,#ff4ecd,#00c3ff);
  transform:translateX(-50%);
}

/* ===== Items ===== */

.roadmap-item{
  width:50%;
  padding:20px 40px;
  position:relative;
}

/* Left Side */
.roadmap-item:nth-child(odd){
  left:0;
  text-align:right;
}

/* Right Side */
.roadmap-item:nth-child(even){
  left:50%;
}

/* ===== Dot ===== */

.roadmap-item::before{
  content:"";
  position:absolute;
  top:35px;
  width:18px;
  height:18px;
  background:#ff4ecd;
  border-radius:50%;
  box-shadow:0 0 15px #ff4ecd;
}

.roadmap-item:nth-child(odd)::before{
  right:-9px;
}

.roadmap-item:nth-child(even)::before{
  left:-9px;
}

/* ===== Card ===== */

.roadmap-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  padding:28px;
  transition:0.3s;
}

.roadmap-card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 25px rgba(255,78,205,0.4);
}

.roadmap-card span{
  color:var(--pink);
  font-weight:700;
  font-size:14px;
  letter-spacing:1px;
}

.roadmap-card h3{
  margin:10px 0;
}
.calculator-card{
  max-width:650px;
  margin:auto;
  padding:40px;
  border-radius:25px;
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(14px);
}

.calculator-card input,
.calculator-card select{
  width:100%;
  padding:12px;
  margin-bottom:20px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.03);
  color:white;
}

.calc-result{
  margin:20px 0;
  font-size:18px;
}

.toggle{
  display:flex;
  gap:10px;
  margin-bottom:20px;
}
/* ================= AUTH (LOGIN / REGISTER) ================= */

.auth-section{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
}

.auth-card{
  width:100%;
  max-width:420px;
  padding:45px 35px;
  border-radius:26px;

  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(16px);

  border:1px solid rgba(255,255,255,0.08);
  position:relative;
  overflow:hidden;
}

/* Glow Border */
.auth-card::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:26px;
  background:linear-gradient(120deg,#ff4ecd,#00c3ff);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:.6;

  pointer-events:none; /* 🔥 THIS FIX */
}


.auth-title{
  font-size:28px;
  font-weight:800;
  text-align:center;
  margin-bottom:10px;
}

.auth-subtitle{
  text-align:center;
  font-size:14px;
  color:var(--muted);
  margin-bottom:30px;
}

.auth-card input{
  width:100%;
  padding:14px 16px;
  margin-bottom:18px;
  border-radius:14px;

  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.1);
  color:white;
  font-size:14px;
}

.auth-card input:focus{
  outline:none;
  border-color:var(--pink);
  box-shadow:0 0 15px var(--pink-glow);
}

.auth-btn{
  width:100%;
  padding:14px;
  border-radius:30px;

  background:linear-gradient(90deg,#ff3d9a,#c84cff);
  border:none;
  color:white;
  font-weight:700;
  cursor:pointer;

  box-shadow:0 0 30px var(--pink-glow);
  transition:.3s;
}

.auth-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 0 45px var(--pink-glow);
}

.auth-footer{
  margin-top:25px;
  text-align:center;
  font-size:14px;
  color:#aaa;
}

.auth-footer a{
  color:var(--pink);
  text-decoration:none;
}

/* ================= DASHBOARD ================= */

.dashboard{
  min-height:100vh;
}

/* ===== MAIN ===== */

.dashboard-main{
  padding:40px;
}

/* Stats Cards */

.dashboard-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.dashboard-card{
  padding:30px;
  border-radius:22px;

  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.08);
  transition:.3s;
}

.dashboard-card:hover{
  transform:translateY(-6px);
  box-shadow:0 0 30px rgba(0,195,255,0.25);
}

.dashboard-card h4{
  font-size:14px;
  color:#aaa;
  margin-bottom:10px;
}

.dashboard-card span{
  font-size:26px;
  font-weight:800;
  background:linear-gradient(90deg,#ff4ecd,#00c3ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ===== ACTIVITY TABLE ===== */

.dashboard-table{
  margin-top:50px;
  padding:30px;
  border-radius:22px;

  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
}

.dashboard-table table{
  width:100%;
  border-collapse:collapse;
}

.dashboard-table th,
.dashboard-table td{
  padding:14px;
  text-align:left;
  font-size:14px;
}

.dashboard-table th{
  color:#aaa;
  border-bottom:1px solid var(--border);
}

.dashboard-table td{
  border-bottom:1px solid rgba(255,255,255,0.05);
}

/* ================= FOOTER ================= */

.footer{
  background:#02030a;
  text-align:center;
  padding:20px 20px;
  color:var(--muted);
}

.footer img{
  width:40px;
  margin-bottom:14px;
}
/* ===== Hamburger ===== */

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.hamburger span{
  width:28px;
  height:3px;
  background:white;
}

/* ================= MOBILE ================= */

@media(max-width:900px){
body{
  overflow-x:hidden;
}

  .section{
    padding:80px 0;
  }

  .hero{
    padding:40px 30px;
  }

  .hero-grid,
  .grid-3,
  .roadmap-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:42px;
  }

  .section-title{
    font-size:32px;
  }

  /* MOBILE NAV */
.hamburger{
    display:flex;
  }

  .nav-links{
    position:absolute;
    top:55px;
    right:0;
    width:100%;
    background:#070916;

    flex-direction:column;
    align-items:center;
    gap:18px;
    padding:25px 0;

    transform:translateY(-120%);
    transition:0.3s;
  }

  .nav-links.active{
    transform:translateY(0);
  }
.roadmap-container::before{
    left:20px;
  }

  .roadmap-item{
    width:100%;
    padding-left:60px;
    text-align:left !important;
    left:0 !important;
  }

  .roadmap-item::before{
    left:11px !important;
  }
 .tokenomics-grid{
    grid-template-columns:1fr;
  }
 .protocol-grid{
    grid-template-columns:1fr;
  }
  .why-grid{
    grid-template-columns:1fr;
  }
  .analytics-stats{
    flex-direction:column;
    gap:25px;
  }
  .security-features{
    grid-template-columns:1fr;
  }
  .whitepaper-card{
    padding:50px 25px;
  }
  .risk-points{
    grid-template-columns:1fr;
  }
  .community-grid{
    grid-template-columns:1fr;
  }
  .dashboard{
    grid-template-columns:1fr;
  }

  .sidebar{
    display:flex;
    gap:10px;
    overflow-x:auto;
  }

  .dashboard-grid{
    grid-template-columns:1fr;
  }
}

