html {
    scroll-behavior: smooth;
  }
  

:root {
    --bg: #020202;
    --dark: #1e1e1e;
    --accent: #ffb000;
  }
  
  * {
    box-sizing: border-box;
    font-family: 'Luckiest Guy', cursive;

  }

  h2{
    color: white;
  }
  
  body {
    margin: 0;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
  }
  
  /* SNOW */
  #snow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  body > * {
    position: relative;
    z-index: 1;
  }
  
  /* NAV */
  .nav {
    position: sticky;
    top: 12px;
    z-index: 10;
    font-family: 'Luckiest Guy', cursive;

  }
  .nav-inner {
    max-width: 1100px;
    margin: auto;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.952);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    font-family: 'Luckiest Guy', cursive;

  }
  .nav a {
    color: black;
    text-decoration: none;
    margin-left: 16px;
    font-family: 'Luckiest Guy', cursive;

  }
  .logo{
    font-family: 'Luckiest Guy', cursive;
    font-weight: 700;
    font-size: 2rem;

  }
  .section {
    scroll-margin-top: 100px; /* match nav height */
  }
  
  
  /* HERO */
  .hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }
  
  .hero-card {
    background: rgba(255, 255, 255, 0.027);
    backdrop-filter: blur(14px);
    padding: 70px 40px;
    border-radius: 36px;
    box-shadow: 0 30px 80px rgba(0,0,0,.12);
    text-align: center;
    max-width: 700px;
    width: 100%;
  }
  
  .hero-title {
    font-size: clamp(3.5rem, 9vw, 6rem);
    letter-spacing: -0.04em;
    text-shadow: 0 8px 30px rgba(0,0,0,.25);
    
  }
  
  .hero-sub {
    color: white;
    margin-top: 8px;
    font-family: 'Londrina Solid', cursive;

  }
  
  .hero-actions {
    margin-top: 28px;
  }
  .hero-pepe {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    animation: float 4s ease-in-out infinite;
  }
  
  .hero-pepe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  
    transition: opacity 0.5s ease;
  }
  
  /* Levitation animation */
  @keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0); }
  }

  @media (max-width: 600px) {
    .hero-pepe {
      width: 140px;
      height: 140px;
    }
  }
  
  
  /* BUTTONS */
  .btn {
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 8px;
    display: inline-block;
    font-family: 'Londrina Solid', cursive;


  }
  .primary {
    background: var(--accent);
    color: black;
  }
  .secondary {
    border: 2px solid white;
    color: white;
  }
  
  /* LIVE BADGE */
  .live-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #0f0;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 14px;
    animation: pulse 2.5s infinite;
    font-family: 'Luckiest Guy', cursive;

  }

  #mc {
    font-family: 'Londrina Solid', cursive;
  

  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,255,0,.4); }
    70% { box-shadow: 0 0 0 12px rgba(0,255,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,255,0,0); }
  }
  
  /* SECTIONS */
  .section {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
  }
  .muted {
    color: white;
  }
  
  /* CARDS */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 24px;
  }
  .card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    transition: .3s;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
  }
  .step {
    font-weight: 800;
    color: var(--accent);
  }
  
  /* MEMES */
  .carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
  }
  .carousel img {
    width: 280px;
    border-radius: 20px;
  }
  
  /* CHART */
  .chart-wrapper {
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(0,0,0,.08);
  }
  
  /* FOOTER */
  footer {
    text-align: center;
    padding: 40px;
    color: white;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .nav-links {
      display: inline-block;
    }
    .nav a{
        font-size: 1rem;
    }
    .hero-card {
      padding: 50px 24px;
      border-radius: 28px;
    }
    .btn {
      display: block;
      margin: 12px auto;
      width: 100%;
      max-width: 260px;
    }
    .carousel img {
      width: 220px;
    }
  }
  /* contract copy  */
  .ca-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
  
    display: flex;
    align-items: center;
    gap: 10px;
  
    padding: 14px 18px;
    border-radius: 999px;
  
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
  
    color: white;
    font-family: 'Londrina Solid', cursive;
    font-size: 18px;
    letter-spacing: 0.08em;
  
    cursor: pointer;
    user-select: none;
  
    box-shadow:
      0 0 12px rgba(255,255,255,0.4),
      0 0 28px rgba(255,255,255,0.25);
  
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .ca-float:hover {
    transform: translateY(-2px);
    box-shadow:
      0 0 18px rgba(255,255,255,0.7),
      0 0 40px rgba(255,255,255,0.4);
  }
  
  .copy-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
  }

  .ca-float.copied {
    box-shadow:
      0 0 20px rgba(255,255,255,1),
      0 0 60px rgba(255,255,255,0.8);
  }
  
  .site-footer {
    padding: 80px 20px 60px;
    text-align: center;
    background: transparent;
  }
  
  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
  }
  
  .social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
  
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.06),
      0 6px 20px rgba(0,0,0,0.25);
  
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .social-btn:hover {
    transform: translateY(-2px);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.12),
      0 10px 30px rgba(0,0,0,0.35);
  }
  
  .social-btn img {
    width: 20px;
    height: 20px;
  }
  
  .footer-copy {
    font-size: 13px;
    color: rgba(15, 23, 42, 0.7);
    margin-bottom: 22px;
  }
  
  .back-to-top {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 999px;
  
    background: #ffa51f;
    color: #000;
  
    font-family: 'Londrina Solid', cursive;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-decoration: none;
  
    box-shadow:
      0 8px 24px rgba(255,165,31,0.35);
  
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .back-to-top:hover {
    transform: translateY(-2px);
    box-shadow:
      0 12px 32px rgba(255,165,31,0.5);
  }
  /*footer  */

  .site-footer {
    padding: 80px 20px 60px;
    text-align: center;
    background: transparent;
  }
  
  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
  }
  
  .social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #020202;
    display: flex;
    align-items: center;
    justify-content: center;
  
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.945),
      0 6px 20px rgba(255, 255, 255, 0.25);
  
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .social-btn:hover {
    transform: translateY(-2px);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.12),
      0 10px 30px rgba(0,0,0,0.35);
  }
  
  .social-btn img {
    width: 20px;
    height: 20px;
  }
  
  .footer-copy {
    font-size: 13px;
    color: rgba(15, 23, 42, 0.7);
    margin-bottom: 22px;
  }
  
  .back-to-top {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 999px;
  
    background: #ffa51f;
    color:white;
  
    font-family: 'Londrina Solid', cursive;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-decoration: none;
  
    box-shadow:
      0 8px 24px rgba(255,165,31,0.35);
  
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .back-to-top:hover {
    transform: translateY(-2px);
    box-shadow:
      0 12px 32px rgba(255,165,31,0.5);
  }
  