html body {
    font-family: 'Montserrat', sans-serif;
}
.header_div {
  --background-color: #1e202a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}
.card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 450px;
        }

        .card h2 {
            margin-bottom: 20px;
            font-size: 1.5em;
            text-align: center;
        }

        .form-row {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .form-row label {
            width: 200px;
        }

        .form-row input {
            flex: 1;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 6px;
        }

        .copy-button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 8px;
            border-radius: 6px;
            cursor: pointer;
            margin-left: 10px;
        }

        .copy-button:hover {
            background-color: #0056b3;
        }
        .video-container {
            position: relative;
            display: flex;
            justify-content: center;  
            align-items: center;     
            height: 100%;             
          }
        
          .video-container img.background {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
          }
        
          .video-container a img.play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            width: 80px; 
            transition: transform 0.3s;
          }
        
          .video-container a img.play-btn:hover {
            transform: translate(-50%, -50%) scale(1.1); 
          }

        .font_blue {
            color:#048cda; 
        }
        .font_bold {
            font-weight: bold;  
        }
        .font_blue2 {
            font-size: 30px;font-weight: bold;color:#048cda ;
        }
        .font_blue3 {
            font-size: 16px;font-weight: bold;color:#048cda;
        }
        .font_blue4 {
            font-size: 25px;font-weight: bold;color:#048cda ;
        }

        .font_black1 {
            font-size: 3rem; font-weight: bold;color:black
        }

        .font_black {
            color:black
        }

        .custom-card {
            border: 1px solid #ddd; 
            border-radius: 20px; 
            /* padding: 20px;  */
            background-color: white; 
        }

        .img_svg {
            width: 50px;
            height: 50px;
        }

        .img_inno {
            width: 70px;
            height: 70px;
        }

        .font_base_color{
            color: #1e202a;
        }

        .font_43{
            font-size: 43px;
        }

        .font_25{
            font-size: 25px;
        }

        .font_20{
            font-size: 20px;
        }

        .font_17{
            font-size: 17px;
        }

        .font_16{
            font-size: 16px;
        }

        .aquamarine {
            color: aquamarine;
        }

        .font_3rem{
            font-size: 3rem;
        }

        .font_2rem{
            font-size: 2rem;
        }

        .token_box{
            cursor: pointer;width: 330px;
        }

        .live_market{
            background-color: #1e202a;font-size: 2rem; font-weight: bold;color:white;
        }

        .font_white{
            color: white;
        }

        .token-image {
            width: 100%;
            max-width: 600px;
        }
 
        .hero {
            /* background: linear-gradient(to bottom, var(--primary-blue), #006699); */
            background-color: #048cda;
            padding: 3rem 5%;
            display: flex;
            justify-content: space-between;
             align-items: center; 
            min-height: 80vh;
            position: relative;
            overflow: hidden;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
        }
        
       .hero::after {
            content: '';
            position: absolute;
            bottom: -500px;
            left: 0;
            width: 100%;
            height: 100px;
            /* background-color: var(--dark-blue); */
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
        } 

        .presale-container {
            width: 50%;
            max-width: 600px;
            color:white;
        }
        
        .presale-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            font-weight: bold;
            color:white;
        }
        
        .presale-form {
            background-color: #2f313e;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .input-group {
            display: flex;
            gap: 0.5rem;
        }
        
        .input-group input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }
        
        .input-group select {
            padding: 0.75rem;
            border: none;
            border-radius: 4px;
            background-color: #6f6f71;
            color: var(--white);
        }
        
        .wallet-input {
            width: 100%;
            padding: 0.75rem;
            border: none;
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            margin-bottom: 1rem;
        }
        
        .info-text {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        
        .info-text a {
            color: var(--primary-blue);
            text-decoration: none;
        }
        
        .connect-button {
            width: 100%;
            padding: 1rem;
            background-color: var(--teal);
            color: var(--dark-gray);
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .connect-button:hover {
            background-color: #00c9a0;
        }

        /* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 5%;
    }
    
    .token-image {
        width: 60%;
        margin-bottom: 2rem;
    }
    
    .presale-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-links {
        margin: 1rem 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .token-image {
        width: 80%;
    }
}

.container_howtoby {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    background-color: #1e2130;
}
.step-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    width: 300px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.step-title {
    color: #048cda;
    font-size: 1.9rem;
    margin-bottom: 15px;
    text-align: center;
}

.step-content {
    text-align: center;
    flex-grow: 1;
}

.info-text {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.note {
    background-color: rgba(0, 168, 255, 0.1);
    border-left: 4px solid #048cda;
    padding: 15px;
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
}

.note-label {
    color: #048cda;
    font-weight: bold;
    margin-right: 5px;
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.white-background {
    --background-color: #f2f9f9;
    --surface-color: #ffffff;
  }

  .subtitle {
    color: #048cda;
    font-size: 1rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.container_howtoby {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    background-color: #1e2130;
}

.font_color_main{ 
    color: #048cda;
}

.note_st {
    margin-top: 20px; font-size: 0.9rem;
}

.bg_footer{
    background-color:rgba(255, 255, 255, 0.05);
}

.top_img{
    height: 40px;
}

.cmc_img{
    height: 95px;
}

.drop_background{
    background-color: #1e2130;
}

.live_price{
    background-color: #048cda;
    color:white;
    padding: 2px;
    margin-left: 5px;
    width: 150px;
    height:45px;
    text-align: center;
    font-weight: bold;
    align-content: center;
}

.div_foot1 {
    border-top: 1px solid rgba(255, 255, 255, 0.3); padding-top: 1.5rem; padding-bottom: 1.5rem;
}

.div_foot2{
    display: flex; align-items: center; justify-content: center; font-size: 0.875rem; border-left: none; border-right: none; border-color: rgba(255, 255, 255, 0.5);
}

  .live-price {
    position: relative;
    background-color: #048cda;
    color: white;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    width: 150px;
    height: 50px;
  }

  .live-price::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 70%
    );
    transform: rotate(0deg);
    animation: shine 3s infinite;
  }

  @keyframes shine {
    0% {
      top: 100%;
      left: -100%;
    }
    100% {
      top: -100%;
      left: 100%;
    }
  }