:root{
      --bg: #0b0f1a;
      --panel: rgba(255,255,255,0.03);
      --glass: rgba(255,255,255,0.04);
      --muted: #9aa3af;
      --gold: #fff;
      --gold-dark: #0d96ed;
      --accent-glow: #0d96ed;
      --radius: 14px;
      --shadow-lg: 0 10px 30px rgba(2,6,23,0.6);
      --shadow-soft: 0 6px 18px rgba(2,6,23,0.45);
      --card-border: 1px solid rgba(255,255,255,0.04);
      --gradient: linear-gradient(90deg, #b8f0ff, #8de3ff, #a9b7ff);
    font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial;
  }

  *{box-sizing:border-box;margin:0;padding:0}
  body {
    background:linear-gradient(180deg,var(--bg),#020214 140%);
    color:#e6eefc;
    line-height:1.7;
    overflow-x:hidden;
  }

  .container {
    max-width:var(--max-width);
    margin:0 auto;
    padding:20px;
  }

  /* ===== Header & Nav ===== */
  header {position:sticky;top:16px;z-index:100}
  .nav {
    display:flex;align-items:center;justify-content:space-between;
    padding:12px 18px;
    background: var(--bg);
    backdrop-filter: blur(14px);
    border:1px solid rgba(255,255,255,0.07);
    border-radius:18px;
    box-shadow:var(--card-shadow);
  }

  .brand{display:flex;align-items:center;gap:0px}
  .logo{width:50px;height:50px;border-radius:14px;display:flex;align-items:center;justify-content:center;}
  .brand h1{font-size:20px;margin:0;letter-spacing:0.5px;font-weight:700}
  .brand p{margin:0;font-size:12px;color:var(--muted)}

  nav ul{display:flex;gap:22px;list-style:none}
  nav a {
    color:var(--muted);text-decoration:none;font-weight:600;font-size:15px;position:relative;
    transition:color .3s ease;
  }
  nav a:hover{color:var(--gold)}
  nav a::after{
    content:"";position:absolute;left:0;bottom:-5px;width:100%;height:2px;
    background:linear-gradient(90deg,var(--accent),var(--gold));
    transform:scaleX(0);transform-origin:right;transition:transform .3s ease
  }
  nav a:hover::after{transform:scaleX(1);transform-origin:left}

  .hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;}
  .hamburger span{width:26px;height:3px;background:white;border-radius:3px;}
  .mobile-nav{
    display:none;flex-direction:column;gap:14px;margin-top:10px;
    background:var(--glass);padding:16px;border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.5);
  }

  /* ===== Buttons ===== */
  .cta {
    padding:12px 22px;border-radius:14px;
    background:var(--gradient);
    font-weight:700;color:white;text-decoration:none;
    box-shadow:0 6px 20px rgba(10,79,255,0.35);
    transition:.35s;display:inline-block;position:relative;overflow:hidden
  }
  .cta.secondary{background:var(--gradient);border:1px solid rgba(255,255,255,0.08);color:#000}
  .cta:hover{box-shadow:0 0 25px rgba(10,79,255,.6);transform:translateY(-3px) scale(1.02)}
  .cta:active{transform:translateY(0) scale(0.98)}
  .cta::after{
    content:"";position:absolute;inset:0;
    background: var(--gradient);
    transform:translateX(-100%);transition:transform .6s ease;
  }
  .cta:hover::after{transform:translateX(100%)}

  /* ===== Hero ===== */
  .hero {
    margin-top:30px;
    display:grid;grid-template-columns:1fr 420px;
    gap:28px;align-items:center;
  }
  .hero__content{
    padding:44px;border-radius:22px;
    background:linear-gradient(120deg, black, #f7efef3b);;
    backdrop-filter: blur(10px);
    box-shadow:var(--card-shadow);
    border:1px solid rgba(255,255,255,0.08);
  }
  .hero h2  {
  font-size: 15px;
  font-weight: 700;
  margin: 10px;
  background: var(--gradient);          /* use the gradient as background */
  -webkit-background-clip: text;        /* clip the background to the text */
  -webkit-text-fill-color: transparent; /* make text transparent to show bg */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
  .hero p.lead{color:var(--muted);font-size:18px;margin-bottom:24px}
  .hero .actions{display:flex;gap:14px;flex-wrap:wrap}
  .hero__card{
    border-radius:18px;overflow:hidden;
    background:linear-gradient(120deg, black, #f7efef3b);;
    box-shadow:0 20px 60px rgba(2,6,23,0.65);
    animation: floaty 6s ease-in-out infinite;
  }
  .hero__media{height:100%;min-height:340px;background-size:cover;background-position:center}
  .hero__stats{
    display:flex;gap:14px;padding:16px;
    background:linear-gradient(180deg, rgba(0,0,0,0.3), rgba(255,255,255,0.02));
    border-top:1px solid rgba(255,255,255,0.06);
  }
  .stat{flex:1;text-align:center}
  .stat .num{font-weight:800;font-size:20px;color:var(--gold)}
  .stat .label{font-size:13px;color:var(--muted)}

  /* ===== Features ===== */
  section{margin-top:70px;position:relative}
  section h3{margin-bottom:20px;font-size:28px;color:white;letter-spacing:0.5px}
  section p{color:var(--muted)}

  .features{
    display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:22px
  }
  .feature{
    padding:20px;border-radius:14px;
    background:linear-gradient(120deg, black, #f7efef3b);;
    border:1px solid rgba(255,255,255,0.06);
    box-shadow:0 6px 28px rgba(2,6,23,0.6);
    transition:transform .35s,box-shadow .35s;
    text-align:center;
  }
  .feature:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 18px 50px rgba(10,79,255,0.25);
  }
  .feature i{font-size:30px;color:var(--gold);margin-bottom:12px}

#plans {
  padding: 40px 20px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border-radius: 18px;
  margin: 40px 20px;
  box-shadow: 0 0 25px rgba(0,255,200,0.05);
}
h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 10px;
  background: var(--gradient);          /* use the gradient as background */
  -webkit-background-clip: text;        /* clip the background to the text */
  -webkit-text-fill-color: transparent; /* make text transparent to show bg */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#plans h3 {
  font-size: 22px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
#about{
    background: linear-gradient(120deg, black, #f7efef3b);;
}
.plan-card {
  background: linear-gradient(120deg, black, #f7efef3b);;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,255,200,0.2);
}
.plan-card img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 12px;
}
.plan-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.plan-card .price {
  color: var(--accent);
  font-size: 20px;
  margin: 8px 0 15px;
  font-weight: 700;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.plan-card ul li {
  color: #a1a1aa;
  font-size: 13px;
  margin: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.buy-btn {
  display: inline-block;
  padding: 10px 18px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.buy-btn:hover {
  background: #ffd700;
  color: #000;
}

  .roadmap{display:grid;gap:14px}
  .phase{
    padding:16px;border-radius:14px;
    background:linear-gradient(90deg, rgba(255,255,255,0.03), rgba(212,175,55,0.05));
    display:flex;align-items:center;gap:14px;
    border:1px solid rgba(255,255,255,0.06);
    transition: background .35s, transform .35s;
  }
  .phase:hover{
    background: linear-gradient(90deg, rgba(10,79,255,0.18), rgba(212,175,55,0.1));
    transform: translateX(8px);
  }

  /* ===== Footer ===== */
  footer{
    margin-top:90px;padding:36px 0;
    color:var(--muted);text-align:center;font-size:14px;
    border-top:1px solid rgba(255,255,255,0.05)
  }
  .socials{margin-top:14px;display:flex;justify-content:center;gap:20px}
  .socials a{color:var(--muted);font-size:22px;transition:.35s}
  .socials a:hover{color:var(--accent);text-shadow:0 0 10px rgba(10,79,255,0.65)}

  /* ===== Responsive ===== */
  @media (max-width:1024px){
    .hero{grid-template-columns:1fr}
    .hero h2{font-size:36px}
    .hero p.lead{font-size:16px}
  }
  @media (max-width:768px){
    nav ul{display:none}
    .hamburger{display:flex}
    .hero__content{padding:26px}
    .hero h2{font-size:30px}
    section h3{font-size:24px}
  }
  @media (max-width:480px){
    .container{padding:16px}
    .logo{width:42px;height:42px}
    .brand h1{font-size:16px}
    .hero h2{font-size:24px}
    .hero__media{min-height:220px}
    .feature i{font-size:24px}
    .token-box .counter{font-size:18px}
  }

  @keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
/* Floating Social Bar */
.social-bar {
  position: fixed;
  bottom: 5%;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.social-bar a {
  color: #fff;
  font-size: 22px;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: 0.3s;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Brand Colors */
.social-bar a.whatsapp   { background: #25D366; }
.social-bar a.telegram   { background: #0088cc; }
.social-bar a.facebook   { background: #1877F2; }
.social-bar a.twitter    { background: #1DA1F2; }
.social-bar a.instagram  { 
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); 
}
.social-bar a.linkedin   { background: #0077B5; }

/* Hover Glow Effect */
.social-bar a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
  filter: brightness(1.15);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #0b001a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #fff;
  border-top: 6px solid #6f00ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
/* Hide Join button on mobile, show in sidebar */
.actions .cta { display: inline-block; }
@media (max-width: 768px) {
  .actions .cta { display: none; }
  .actions .secondary { display: inline-block;background:var(--gradient);color:#000; }
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0; right: -100%;
  width: 280px;
  height: 100vh;
  background: #0d0d1a;
  box-shadow: -4px 0 20px rgba(0,0,0,0.5);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.35s ease;
  z-index: 10001;
}

.sidebar.active { right: 0; }

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 14px;
}

.sidebar-header h2 {
  font-size: 18px;
  color: #fff;
  margin: 0;
  flex-grow: 1;
}

.sidebar-header .close-btn {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.sidebar-nav a {
  color: #e6eefc;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  /*padding: 8px 0;*/
  transition: 0.3s;
}

.sidebar-nav a:hover { color: var(--gold); }
a{
    text-decoration: none !important;
}

/* Mobile Header Layout */
@media (max-width: 768px) {
  nav.desktop-nav { display: none; }
  .brand { flex: 1; }
  .brand-text h1 { font-size: 18px; }
  .brand-text p { font-size: 11px; }
  .actions { gap: 12px; }
  .hamburger { display: flex; }
}