 body {
      background-color: #0b0c10;
      margin: 0;
      
    }

    .roadmap-bg {
      background: radial-gradient(circle at 1px 1px, #ffffff0f 1px, transparent 1px);
      background-size: 20px 20px;
      position: relative;
      padding: 80px 0;
      overflow: hidden;
      color:#fff;
    }

    .roadmap-title {
      text-align: center;
      color: #fff;
      margin-bottom: 60px;
      z-index: 2;
      position: relative;
    }

    .roadmap-steps {
      display: flex;
      justify-content: space-between;
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      padding: 40px 20px;
      z-index: 2;
      flex-wrap: wrap;
    }

    .line-bg {
      position: absolute;
      top: 50%;
      left: 10%;
      width: 80%;
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-50%);
      z-index: 0;
      border-radius: 4px;
    }

    .line-fill {
      position: absolute;
      top: 50%;
      left: 10%;
      width: 0%;
      height: 8px;
      background: linear-gradient(90deg, #00bcd4 0%, #00e5ff 50%, #00bcd4 100%);
      background-size: 200% 100%;
      transform: translateY(-50%);
      z-index: 1;
      border-radius: 4px;
      transition: width 0.2s ease;
      animation: waterFlow 2s ease-in-out infinite;
    }

    @keyframes waterFlow {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }

    .step {
      text-align: center;
      width: 25%;
      position: relative;
      z-index: 2;
    }

    .step .circle {
      width: 50px;
      height: 50px;
      margin: 0 auto 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      position: relative;
      cursor: pointer;
    }

    .step .circle::after,
    .step .circle::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .step .circle::after {
      width: 16px;
      height: 16px;
      background-color: white;
      border-radius: 50%;
      opacity: 0.7;
    }

    .step .circle::before {
      width: 0;
      height: 0;
      background: transparent;
      border-radius: 50%;
    }

    .step .label {
      color: white;
      font-weight: 500;
      font-size: 14px;
      cursor: pointer;
      opacity: 0.8;
    }

    .step.active .circle {
      background-color: #00bcd4;
    }

    .step.active .label {
      color: #00e5ff;
      font-weight: 600;
      opacity: 1;
    }

    .confetti-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 9999;
    }

    .confetti {
      position: absolute;
      width: 10px;
      height: 10px;
      background: #00e5ff;
      animation: confettiFall 3s ease-out forwards;
    }

    @keyframes confettiFall {
      0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
      }
      100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
      }
    }

    @media (max-width: 992px) {
      .roadmap-steps {
        flex-direction: column;
        align-items: center;
      }

      .step {
        width: auto;
        margin-bottom: 40px;
      }

      .line-bg {
        width: 8px;
        height: 85%;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
      }

      .line-fill {
        width: 8px;
        height: 0%;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        transition: height 0.2s ease;
        background: linear-gradient(180deg, #00bcd4 0%, #00e5ff 50%, #00bcd4 100%);
        animation: waterFlowMobile 2s ease-in-out infinite;
      }

      @keyframes waterFlowMobile {
        0% { background-position: 50% 0%; }
        100% { background-position: 50% 200%; }
      }
    }

    .p1
    {
      background-color:#f9f9f9;
    }