*{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Outfit',sans-serif;
      background:#030712;
      overflow-x:hidden;
      overflow-y:auto;
      color:#fff;
      min-height:100vh;
      position:relative;
    }

    .gradient-bg{
      position:absolute;
      inset:0;
      overflow:hidden;
      z-index:0;
    }

    .gradient-bg::before,
    .gradient-bg::after{
      content:'';
      position:absolute;
      width:700px;
      height:700px;
      border-radius:50%;
      filter:blur(120px);
      opacity:.45;
      animation:move 12s infinite alternate ease-in-out;
    }

    .gradient-bg::before{
      background:#8bc53f;
      top:-250px;
      left:-150px;
    }

    .gradient-bg::after{
      background:#36c2d9;
      bottom:-300px;
      right:-150px;
      animation-delay:3s;
    }

    @keyframes move{
      0%{
        transform:translate(0,0) scale(1);
      }
      100%{
        transform:translate(80px,-40px) scale(1.15);
      }
    }

    .hero-bg-image{
      position:absolute;
      inset:0;
      background:
      linear-gradient(rgba(3,7,18,0.58), rgba(3,7,18,0.68)),
      url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1974&auto=format&fit=crop') center center/cover no-repeat;
      opacity:.78;
      z-index:0;
    }

    .grid-overlay{
      position:absolute;
      inset:0;
      background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size:50px 50px;
      mask-image:radial-gradient(circle at center, black 40%, transparent 90%);
      z-index:0;
    }

    .main-wrapper{
      position:relative;
      z-index:2;
      width:100%;
      min-height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:20px;
    }

    .coming-container{
      width:100%;
      max-width:1350px;
      border-radius:40px;
      padding:55px 60px;
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.08);
      backdrop-filter:blur(18px);
      box-shadow:
      0 0 80px rgba(0,0,0,0.35),
      inset 0 0 0 1px rgba(255,255,255,0.03);
      position:relative;
      overflow:hidden;
    }

    .coming-container::before{
      content:'';
      position:absolute;
      inset:0;
      background:linear-gradient(120deg, rgba(255,255,255,0.05), transparent 50%);
      pointer-events:none;
    }

    .top-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:12px 24px;
      border-radius:80px;
      background:rgba(255,255,255,0.07);
      border:1px solid rgba(255,255,255,0.1);
      font-size:14px;
      letter-spacing:2px;
      text-transform:uppercase;
      color:#9fe7ff;
      margin-bottom:35px;
    }

    .top-badge span{
      width:10px;
      height:10px;
      background:#8bc53f;
      border-radius:50%;
      box-shadow:0 0 15px #8bc53f;
    }

    .logo img{
      animation:fadeUp 1s ease forwards;
    }

    .top-badge{
      animation:fadeUp 1.2s ease forwards;
    }

    .hero-title{
      animation:fadeUp 1.4s ease forwards;
    }

    .description{
      animation:fadeUp 1.6s ease forwards;
    }

    .counter-wrapper{
      animation:fadeUp 1.8s ease forwards;
    }

    .counter-box{
      animation:pulseGlow 4s infinite ease-in-out;
    }

    .bottom-row{
      animation:fadeUp 2s ease forwards;
    }

    .logo img{
      width:320px;
      margin-bottom:45px;
    }

    .hero-title{
      font-size:88px;
      line-height:1.15;
      font-weight:800;
      letter-spacing:-3px;
      margin-bottom:35px;
      padding-bottom:10px;
      background:linear-gradient(to right,#ffffff,#b7df5f);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .hero-title span{
      display:block;
      background:linear-gradient(90deg,#8bc53f,#36c2d9);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .description{
      max-width:780px;
      color:rgba(255,255,255,0.7);
      font-size:20px;
      line-height:1.8;
      margin-bottom:40px;
    }

    .counter-wrapper{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:28px;
      margin-bottom:35px;
    }

    .counter-box{
      position:relative;
      border-radius:28px;
      padding:30px 18px;
      background:linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
      border:1px solid rgba(255,255,255,0.08);
      overflow:hidden;
      transition:.4s ease;
    }

    .counter-box:hover{
      transform:translateY(-10px);
      border-color:rgba(139,197,63,.55);
      box-shadow:0 15px 40px rgba(139,197,63,.18);
    }

    .counter-box::before{
      content:'';
      position:absolute;
      width:180px;
      height:180px;
      background:rgba(139,197,63,.12);
      border-radius:50%;
      top:-80px;
      right:-80px;
    }

    .counter-box h2{
      font-size:72px;
      line-height:1;
      font-weight:800;
      margin-bottom:12px;
    }

    .counter-box p{
      text-transform:uppercase;
      letter-spacing:3px;
      font-size:14px;
      color:rgba(255,255,255,0.65);
    }

    .newsletter{
      display:flex;
      align-items:center;
      gap:18px;
      max-width:760px;
      margin-bottom:20px;
    }

    .newsletter input{
      width:100%;
      height:62px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,0.08);
      background:rgba(255,255,255,0.06);
      padding:0 25px;
      font-size:17px;
      color:#fff;
      outline:none;
      transition:.3s;
    }

    .newsletter input:focus{
      border-color:#8bc53f;
      box-shadow:0 0 20px rgba(0,255,163,.18);
    }

    .newsletter input::placeholder{
      color:rgba(255,255,255,.45);
    }

    .newsletter button{
      min-width:220px;
      height:62px;
      border:none;
      border-radius:18px;
      background:linear-gradient(135deg,#8bc53f,#36c2d9);
      color:#031018;
      font-size:17px;
      font-weight:700;
      cursor:pointer;
      transition:.35s ease;
      box-shadow:0 10px 35px rgba(54,194,217,.30);
    }

    .newsletter button:hover{
      transform:translateY(-4px) scale(1.03);
    }

    .bottom-row{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:30px;
      flex-wrap:wrap;
    }

    .launch-text{
      color:rgba(255,255,255,.55);
      font-size:16px;
      letter-spacing:1px;
    }

    .social-icons{
      display:flex;
      gap:16px;
    }

    .social-icons a{
      width:58px;
      height:58px;
      border-radius:18px;
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,.08);
      display:flex;
      align-items:center;
      justify-content:center;
      text-decoration:none;
      color:#fff;
      font-size:16px;
      font-weight:600;
      transition:.35s;
    }

    .social-icons a:hover{
      transform:translateY(-6px);
      background:linear-gradient(135deg,#8bc53f,#36c2d9);
      color:#041018;
    }

    .floating-line{
      position:absolute;
      width:500px;
      height:500px;
      border:1px solid rgba(255,255,255,0.06);
      border-radius:50%;
      right:-200px;
      top:-180px;
      animation:rotate 18s linear infinite;
    }

    .floating-line::before{
      content:'';
      position:absolute;
      inset:35px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,0.05);
    }

    @keyframes rotate{
      from{transform:rotate(0deg)}
      to{transform:rotate(360deg)}
    }

    @keyframes fadeUp{
      0%{
        opacity:0;
        transform:translateY(40px);
      }
      100%{
        opacity:1;
        transform:translateY(0);
      }
    }

    @keyframes pulseGlow{
      0%,100%{
        box-shadow:0 0 0 rgba(139,197,63,0);
      }
      50%{
        box-shadow:0 0 35px rgba(139,197,63,.28);
      }
    }

    @media(max-width:1200px){
      .hero-title{
        font-size:72px;
      }
    }

    @media(max-width:991px){
      body{
        overflow-y:auto;
        overflow-x:hidden;
      }

      .coming-container{
        padding:50px 30px;
      }

      .hero-title{
        font-size:58px;
      }

      .counter-wrapper{
        grid-template-columns:repeat(2,1fr);
      }

      .counter-box h2{
        font-size:58px;
      }
    }

    @media(max-width:767px){
      .hero-title{
        font-size:42px;
        line-height:1.2;
        letter-spacing:-1px;
      }

      .description{
        font-size:16px;
      }

      .newsletter{
        flex-direction:column;
      }

      .newsletter button{
        width:100%;
      }

      .counter-wrapper{
        gap:18px;
      }

      .counter-box{
        padding:30px 15px;
      }

      .counter-box h2{
        font-size:46px;
      }
    }

    @media(max-width:520px){
      .coming-container{
        padding:30px 18px;
      }

      .counter-wrapper{
        grid-template-columns:1fr;
      }

      .logo img{
        width:240px;
      }
    }
    .social-icons{
    display:flex;
    align-items:center;
    gap:14px;
}

.social-icons a{
    width:56px;
    height:56px;
    border-radius:16px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s ease;
    backdrop-filter:blur(10px);
}

.social-icons a img{
    width:24px;
    height:24px;
    object-fit:contain;
    filter:brightness(0) invert(1);
    transition:.35s ease;
}

.social-icons a:hover{
    transform:translateY(-6px);
    background:linear-gradient(135deg,#8bc53f,#36c2d9);
    border-color:transparent;
    box-shadow:0 10px 30px rgba(54,194,217,.25);
}

.social-icons a:hover img{
    filter:none;
}
.social-icons a img{
    width:24px;
    height:24px;
    object-fit:contain;
    display:block;
}