/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.1
*/

/*************** ADD CUSTOM CSS HERE.   ***************/



.scroll-box {
  max-height: 350px;
  /* 限制高度，可以根据需要调整 */
  overflow-y: auto;
  /* 垂直滚动 */
  padding: 10px;
  /* 内边距，避免文字贴边 */
}

/* 美化滚动条 (Chrome/Edge/Safari) */
.scroll-box::-webkit-scrollbar {
  width: 8px;
}

.scroll-box::-webkit-scrollbar-thumb {
  background: #1e90ff;
  /* 品牌色，比如 8Xbet 蓝色 */
  border-radius: 4px;
}

.scroll-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.header-button a {
  padding: 6px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff !important;
  background: #0b1220;
  box-shadow: 0 0 12px rgba(255, 60, 0, 0.6);
  animation: neonPulse 2.5s ease-in-out infinite;
  transition: transform .3s ease;
}

.header-button a:hover {
  transform: scale(1.07);
}

@keyframes neonPulse {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(255, 60, 0, 0.6);
  }

  50% {
    box-shadow: 0 0 25px rgba(255, 60, 0, 1);
  }
}

.entry-content .btn-related {
  padding: 0px;
  margin: 0;
  padding-top: 1em !important;
  padding-bottom: 1em !important;
  width: 100%;
  display: block;
  font-weight: bold;
  background-color: #eaeaea;
  border: 0 !important;
  border-left: 4px solid #34495E !important;
  text-decoration: none;
}
.entry-content .btn-related p {
  display: none;
}
.entry-content .btn-related:active,
.entry-content .btn-related:hover {
  opacity: 1;
  transition: opacity 250ms;
  webkit-transition: opacity 250ms;
  text-decoration: none;
}
.entry-content .btn-related {
  transition: background-color 250ms;
  webkit-transition: background-color 250ms;
  opacity: 1;
  transition: opacity 250ms;
  webkit-transition: opacity 250ms;
}
.entry-content .btn-related .btn-inner {
  padding-left: 1em;
  padding-right: 1em;
}
.entry-content .btn-related .ctaText {
  font-weight: bold;
  color: #464646;
  text-decoration: none;
  font-size: 16px;
}
.entry-content .btn-related .postTitle {
  color: #000000;
  text-decoration: underline !important;
  font-size: 16px;
}
.entry-content .btn-related:hover .postTitle {
  text-decoration: underline !important;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

}