*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}


.header{
    background-color: #0D1117;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;

    box-sizing: border-box;
    padding: 10px;
}
.logo{
    display: flex;
    align-items: center;
    height: 40px;
}
.logo img{
    width: inherit;
    height: inherit;
}
.logo h1{
    font-size: 18px;
    margin-left: 5px;
}

.header button {
    background: linear-gradient(to bottom, #f3ba2f, #d99a11);
    color: white;
    border: none;
    border-radius: 7px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 6px 0 #b07b0f;
    transition: all 0.2s ease;
    cursor: pointer;
}
  
.header button:active {
  box-shadow: 0 2px 0 #b07b0f;
  transform: translateY(4px);
}

.hero-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    background-color: #0D1117;
    color: white;
}
.hero-section .intro{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 0;
}
.hero-section .intro h1{
    font-size: 18px;
    
}
.hero-section .intro span{
    font-size: 15px;
    margin: 20px 0;
}
.hero-section .intro h2{
    text-align: center;
    background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%);
    border: 0;
    border-radius: 6px;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #fff;
    font-size: 15px;
    padding: 8px;
}



.hero-section .logo-mob{
    height: min-content;
    
}
.hero-section .logo-mob img{
    
    width: 100%;
    height: 100%;
}



.stats-section{
    background: linear-gradient(to bottom, #0D1117, #0B0E14);
    text-align: center;
    padding-top: 50px;

}
.xbnb{
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 3px rgba(230, 217, 217, 0.5);
}
.stats-container{
    display: flex;
    flex-wrap: wrap;
}
.stat-cardx{
    width: 50%;
}
.stat-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top left, #11161e, #0b0e14);
    box-sizing: border-box;
    margin: 10px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 255, 170, 0.1);
}

.stat-card img{
    width: 60px;
}

.label{
    margin: 10px 0;
    color: white;
}

.value{
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ffa6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.vv{
    display: flex;
}
.vv img{
    width: 20px;
    margin-left: 5px;
}







.metamask{
    background-color: #0B0E14;
    padding: 15px 25px;
    box-sizing: border-box;
    color: white;
    padding-top: 90px;
}
.icon-text{
    display: flex;
    align-items: flex-start;
    font-size: 20px;
}

.icon-meta{
    width: 50px;
    margin-right: 20px;
}


.xss{
    margin: 10px 0;
}



.message-box {
    background-color: #1e1e2f;
    padding: 15px 20px;
    border-radius: 12px;
    width: fit-content;
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
}

.box-tail {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 10px;
    background-color: #1e1e2f;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}


.about{
    padding: 10px 15px;
    background-color: #0B0E14;
    color: white;
    padding-top: 100px;
}
.about p{
    display: flex;
    align-items: center;
}
.about span{
    font-size: 30px;
    margin-right: 5px;
}
.a3{
    margin-top: 20px;
    margin-bottom: 40px;
}




.faq { 
    padding-top: 80px;
    padding-bottom: 50px;
    background-color: #0B0E14;
  }
  .faq h1{ 
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  }
  .faq-item {
    border-bottom: 1px solid #444;
    overflow: hidden;
  }
  
  .faq-question {
    padding: 15px;
    background: #0d1117;
    color: white;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
  }
  
  .faq-question:hover {
    background: #161b22;
  }
  
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: #fafafa;
    line-height: 1.8;
    padding: 0 20px;
  }

  .faq-answer.open {
    padding-top: 10px;
    padding-bottom: 15px;
  }
  
  .icon {
    margin-left: 10px;
    font-size: 20px;
    transition: transform 0.3s;
  }








  .modal {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .modal-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 90%;
  }
  
  .modal button {
    margin-top: 15px;
    padding: 8px 16px;
    background: #f3ba2f;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }











  .testimonials-section {
    background: #0d1117;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  .testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .testimonial {
    background: linear-gradient(145deg, #161b22, #1a1f27);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
  }
  
  
  .testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .testimonial-author {
    font-size: 1rem;
    font-weight: bold;
    color: #f0b90b;
  }
  
  .testimonial-stars {
    font-size: 1.1rem;
    color: #f0b90b;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #e0e0e0;
    line-height: 1.6;
  }
  
  .view-all-btn a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #f0b90b;
    color: #0d1117;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .submit-review {
    margin-top: 40px;
  }
  
  .submit-review h3 {
    margin-bottom: 20px;
  }
  
  #reviewForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  #reviewForm input,
  #reviewForm textarea {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #161b22;
    color: white;
  }
  
  #reviewForm button {
    background: #f0b90b;
    color: #0d1117;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
  }
  
  
  .rating {
    margin: 10px 0;
    color: #f0b90b;
    font-size: 1rem;
  }
  
  .rating select {
    background: #161b22;
    color: #fff;
    border: 1px solid #333;
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
  }


  .custom-alert {
    background-color: #ffecb3;
    color: #9c6b00;
    border: 1px solid #f0c36d;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    max-width: 320px;
    margin: 16px auto;
    position: relative;
    transition: all 0.3s ease-in-out;
  }
  
  .custom-alert .icon {
    background-color: #ffcc80;
    color: #9c6b00;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 16px;
  }


  .site-footer {
    background-color: #0B0E14;
    color: #cccccc;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    box-shadow: inset 0 0 2px  rgb(57, 48, 48);
  }
  

  
  .site-name {
    font-weight: bold;
    color: #00ff99; /* رنگ مخصوص برای اسم سایت */
    font-size: 16px;
  }
  
  .copyright {
    color: #aaa;
    font-size: 14px;
    margin-top: 10px;
  }

@media (max-width:600px) {
    button {
        font-size: 0.95rem;
        padding: 10px 15px;
    }
    .modal-content {
        width: 98vw;
        padding: 18px 5px;
    }
}

