.gradient-text2 {
    background: linear-gradient(to right, #44e2f5, #ba43eb, #46e99f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .bg-gradient2 {
    background: linear-gradient(90deg, #667eea, #764ba2);
}
@keyframes custom-scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(-100% / 7 * 7)); 
  }
}

.custom-slider {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 90%; 
  max-width: 960px; 
}

.custom-slider::before,
.custom-slider::after {
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100px;
  position: absolute;
  width: 15%; 
  z-index: 2;
}

.custom-slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.custom-slider::before {
  left: 0;
  top: 0;
}

.custom-slider .custom-slide-track {
  animation: custom-scroll 40s linear infinite;
  display: flex;
  width: calc(100% * 2); 
}

.custom-slider .custom-slide {
  flex: 1 0 calc(100% / 7);
  height: 100px;
  padding: 0 5px;
  box-sizing: border-box;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .custom-slider {
      height: 80px;
  }
  .custom-slider .custom-slide {
      height: 80px;
  }
}

@media (max-width: 480px) {
  .custom-slider {
      height: 60px;
  }
  .custom-slider::before,
  .custom-slider::after {
      width: 25%;
  }
  .custom-slider .custom-slide {
      height: 60px;
  }
}

::-webkit-scrollbar {
  width: 5px;
}


::-webkit-scrollbar-track {
  background: #000000; 
}
 

::-webkit-scrollbar-thumb {
  background: rgb(37, 44, 58); 
}


::-webkit-scrollbar-thumb:hover {
  background: rgb(43, 58, 87); 
}
@keyframes pulse {
0%, 100% {
  transform: scale(1);
  opacity: 1;
}
50% {
  transform: scale(1.3);
  opacity: 0.7;
}
}
.userbalance {
  color: #FFD700;
  font-size: 24px;
  font-weight: 800;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, #a948f8, #22e2b6) 1;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.userbalance:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(169, 72, 248, 0.9), 0 0 60px rgba(34, 226, 182, 0.8);
  color: #FFF8DC;
}
.bg-exchanger{
	background-color:#17151b;
}
.excbtc {
  /* Bitcoin için altın sarısı ve derin mavi tonları */
  background: linear-gradient(90deg, #f7931a, #1e4c78);
  color: white;
  border: 1px solid #1e4c78;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.excbtc:hover {
  /* Bitcoin hover durumu - tonlar tersine çevrildi */
  background: linear-gradient(90deg, #1e4c78, #f7931a);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.excjtn {
  /* Jeton için parlak turuncu ve sıcak sarı tonları */
  background: linear-gradient(90deg, #ff9500, #ffc107);
  color: white;
  border: 1px solid #ffc107;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.excjtn:hover {
  /* Jeton hover durumu - tonlar tersine çevrildi */
  background: linear-gradient(90deg, #ffc107, #ff9500);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.exctkn {
  background: linear-gradient(90deg, #a948f8, #22e2b6);
  color: white;
  border: 1px solid #22e2b6;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.exctkn:hover {
  background: linear-gradient(90deg, #22e2b6, #a948f8);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}