/* ===== SLOT CLONE - STYLE.CSS ===== */

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  height: 100%;
  scroll-behavior: smooth
}

body {
  font-family: 'Kanit', sans-serif;
  color: #fff;
  background: #0a0a0a;
  background-image: url("/assets/images/template/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

._content {
  margin: 10px 0;
}

a {
  color: inherit;
  text-decoration: none
}

ul,
ol {
  list-style: none
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

/* ── Utility ── */
.gold-text {
  background: linear-gradient(180deg, #f1c137 20%, #ffff4c 50%, #ffb800 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10, 0, 30, .95), rgba(10, 0, 30, .85));
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(250, 180, 0, .3);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px
}

.header-logo img {
  height: 55px;
  width: auto
}

.header-seo {
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  max-width: 400px;
  display: none;
}

@media(min-width:1024px) {
  .header-seo {
    display: block
  }
}

.header-right {
  display: flex;
  align-items: center;
  position: relative;
}

/* Buttons */
.btn-register {
  padding: 8px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Kanit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  background: linear-gradient(225deg, #ffd700, #fff8c8);
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, .3);
  transition: all .3s;
}

.btn-register:hover {
  box-shadow: 0 0 25px rgba(255, 215, 0, .5);
  transform: translateY(-1px)
}

.btn-login {
  padding: 8px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Kanit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  background: linear-gradient(180deg, #1a0a3e, #0d0520);
  color: #fff;
  border: 1px solid rgba(255, 215, 0, .4);
  transition: all .3s;
}

.btn-login:hover {
  background: linear-gradient(180deg, #2a1a5e, #1d1540)
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all .3s;
  animation: ham-wave .4s ease-out infinite alternate;
}

.hamburger span:nth-child(2) {
  animation-delay: .15s
}

.hamburger span:nth-child(3) {
  animation-delay: .3s
}

@keyframes ham-wave {
  0% {
    width: 70%
  }

  to {
    width: 100%
  }
}

.hamburger.open span {
  animation: none
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px)
}

@media(max-width:767px) {
  .hamburger {
    display: flex
  }
}

/* ── Sidebar ── */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto
}

.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 280px;
  z-index: 999;
  background: linear-gradient(135deg, #090909, rgba(48, 11, 72, .75));
  overflow-y: auto;
  transition: left .3s;
  padding: 20px 0;
  border-right: 2px solid;
  border-image: linear-gradient(180deg, transparent, #fdd47b, transparent) 1;
}

.sidebar.active {
  left: 0
}

.sidebar .sidebar-logo {
  text-align: center;
  padding: 15px 20px;
  margin-bottom: 10px
}

.sidebar .sidebar-logo img {
  height: 60px;
  margin: 0 auto
}

.sidebar-menu {
  padding: 0
}

.sidebar-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #fff;
  font-size: 15px;
  transition: all .3s;
  text-shadow: 0 0 5px rgba(0, 0, 0, .8);
}

.sidebar-menu li a:hover {
  background: rgba(8, 8, 7, .77);
  text-shadow: 0 0 5px #fff, 0 0 15px #fff;
}

.sidebar-menu li a img {
  height: 28px;
  width: 28px;
  object-fit: contain
}

/* ── Hero Banner ── */
.hero-section {
  margin-top: 75px;
  position: relative
}

.hero-swiper .swiper-slide img {
  width: 100%;
  display: block
}

.hero-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: .5
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #ffd700;
  opacity: 1
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: #ffd700
}

/* ── Category Tabs ── */
.category-section {
  padding: 15px 0;
  background: linear-gradient(180deg, rgba(20, 0, 50, .6), rgba(10, 0, 30, .4));
}

.category-row {
  display: flex;
  gap: 8px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
  align-items: stretch;
}

/* GIF Banner Columns */
.cat-banner {
  flex: 1;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all .3s;
  border: 2px solid transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  background-size: 100% 100%;
}

.cat-banner-icon {
  width: auto;
  height: 70%;
  max-height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cat-banner-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 8px 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .6), transparent);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .8);
  z-index: 3;
}

/* Category Tabs Column */
.cat-tabs-col {
  flex: 4;
  display: flex;
  align-items: stretch;
}

.cat-tabs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 6px;
  width: 100%;
  align-content: stretch;
}

.cat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  cursor: pointer;
  padding: 8px 8px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e226d4, #8b11c5);
  border: 1px solid rgba(255, 215, 0, .15);
  transition: all .3s;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.cat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  opacity: 0;
  transition: opacity .3s;
}

.cat-item:hover::before,
.cat-item.active::before {
  opacity: 1
}

.cat-item:hover,
.cat-item.active {
  background: linear-gradient(180deg, #f540e8, #a020d0);
  border-color: rgba(255, 215, 0, .4);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(200, 0, 255, .3);
}

.cat-item img {
  height: auto;
  width: 70px;
  object-fit: contain;
  flex-shrink: 0
}

.cat-item .cat-text {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.cat-item .cat-en {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2
}

.cat-item .cat-th {
  font-size: 10px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.2
}

.cat-item-sub {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  cursor: pointer;
  padding: 8px 8px;
  border-radius: 10px;
  background: linear-gradient(180deg, #25102c, #8b11c5);
  border: 1px solid rgba(255, 215, 0, .15);
  transition: all .3s;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.cat-item-sub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  opacity: 0;
  transition: opacity .3s;
}

.cat-item-sub:hover::before,
.cat-item-sub.active::before {
  opacity: 1
}

.cat-item-sub:hover,
.cat-item-sub.active {
  background: linear-gradient(180deg, #22092b, #660096);
  border-color: rgba(255, 215, 0, .4);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(200, 0, 255, .3);
}

.cat-item-sub img {
  height: auto;
  width: 70px;
  object-fit: contain;
  flex-shrink: 0
}

.cat-item-sub .cat-text {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.cat-item-sub .cat-en {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2
}

.cat-item-sub .cat-th {
  font-size: 10px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.2
}

@media(max-width:767px) {
  .category-row {
    flex-wrap: wrap
  }

  .cat-banner {
    flex: 1 1 30%;
    min-width: 0
  }

  .cat-tabs-col {
    flex: 1 1 100%;
    margin-top: 8px
  }

  .cat-tabs-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .cat-item {
    flex-direction: column;
    padding: 8px 4px;
    gap: 4px;
    text-align: center;
    justify-content: center
  }

  .cat-item img {
    height: 28px;
    width: 28px
  }

  .cat-item .cat-en {
    font-size: 9px
  }

  .cat-item .cat-th {
    font-size: 8px
  }

  .cat-banner-label {
    font-size: 11px
  }

  .cat-item-sub {
    flex-direction: column;
    padding: 8px 4px;
    gap: 4px;
    text-align: center;
    justify-content: center
  }

  .cat-item-sub img {
    height: 28px;
    width: 28px
  }

  .cat-item-sub .cat-en {
    font-size: 9px
  }

  .cat-item-sub .cat-th {
    font-size: 8px
  }
}

/* ── Withdraw Ticker ── */
.withdraw-section {
  padding: 15px 0;
  background: linear-gradient(180deg, rgba(10, 0, 30, .5), rgba(10, 0, 30, .3));
  overflow: hidden;
}

.withdraw-title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.withdraw-title span {
  color: #ffd700
}

.withdraw-slider {
  display: flex;
  gap: 12px;
  animation: scroll-left 25s linear infinite;
  width: max-content;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.wd-card {
  min-width: 160px;
  background: linear-gradient(180deg, rgb(254, 53, 255), rgb(97, 9, 197));
  border-radius: 10px;
  padding: 8px;
  flex-shrink: 0;
}

.wd-card-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.wd-card-profile img {
  width: 30px;
  height: 30px;
  border-radius: 50%
}

.wd-card-profile span {
  font-size: 13px;
  font-weight: 300
}

.wd-card-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, .5);
  border-radius: 30px;
  padding: 6px 12px;
}

.wd-card-amount img {
  width: 24px
}

.wd-card-amount .amount {
  font-size: 14px;
  font-weight: 600;
  color: #ffdc42
}

/* ── Game Grid ── */
.games-section {
  padding: 25px 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 22px;
  font-weight: 600
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

@media(max-width:900px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

@media(max-width:650px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all .3s;
}

.game-card img {
  width: 100%;
  /* aspect-ratio: 1; */
  object-fit: cover;
  transition: all .5s
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}

.game-card-overlay span {
  background: linear-gradient(180deg, #ffdf46, #f69b09);
  color: #000;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(100, 0, 255, .4)
}

.game-card:hover img {
  filter: grayscale(.5) contrast(1.1);
  transform: rotateY(180deg)
}

.game-card:hover .game-card-overlay {
  opacity: 1
}

/* ── Promotions ── */
.promo-section {
  padding: 25px 0 40px;
  background: linear-gradient(180deg, rgba(10, 0, 30, .5), rgba(10, 0, 30, .3));
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

@media(max-width:767px) {
  .promo-grid {
    grid-template-columns: 1fr
  }
}

.promo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all .3s;
  display: block;
  border: 2px solid rgba(255, 215, 0, .15);
}

.promo-card img {
  width: 100%;
  display: block;
  transition: transform .5s
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, .5);
  box-shadow: 0 8px 30px rgba(200, 0, 255, .3), 0 0 15px rgba(255, 215, 0, .2);
}

.promo-card:hover img {
  transform: scale(1.03)
}

.promo-card-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(180deg, #ff4444, #cc0000);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(255, 0, 0, .4);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.08)
  }
}

/* ── SEO Content ── */
.seo-section {
  padding: 40px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .2));
}

.seo-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.seo-inner h2 {
  font-size: 20px;
  margin-bottom: 15px
}

.seo-inner p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 15px;
}

.seo-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.seo-buttons .btn-register,
.seo-buttons .btn-login {
  font-size: 16px;
  padding: 10px 30px
}

/* ── Footer ── */
.site-footer {
  margin-top: auto;
  background: linear-gradient(180deg, rgba(10, 0, 30, .95), #000);
  border-top: 2px solid rgba(250, 180, 0, .2);
  padding: 30px 0 15px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center
}

.footer-logo img {
  height: 50px;
  margin: 0 auto 15px
}

.footer-tags {
  margin-bottom: 15px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap
}

.footer-tags a {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  background: linear-gradient(180deg, #36007a, #1a003d);
  border: 1px solid rgba(255, 215, 0, .15);
  transition: all .3s;
}

.footer-tags a:hover {
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, .2)
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-copy span {
  display: block;
  margin-top: 4px
}

/* ── Mobile Bottom Bar ── */
.mobile-bottom {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #1c1c1c, #080808);
  z-index: 111;
  border-top: 2px solid rgba(250, 180, 0, .3);
}

@media(max-width:767px) {
  .mobile-bottom {
    display: block
  }
}

.bottom-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  height: 60px;
  position: relative;
}

.bottom-bar .bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  gap: 2px;
  flex: 1;
  transition: all .3s;
}

.bottom-bar .bar-item i {
  font-size: 18px
}

.bottom-bar .bar-item:hover {
  text-shadow: 0 0 10px #fff
}

.bottom-bar .bar-center {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-bar .bar-center-btn {
  position: absolute;
  bottom: 10px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #cf6702, #ffc03a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -3px 15px rgba(255, 192, 58, .4);
  font-size: 22px;
  color: #fff;
}

@media(max-width:767px) {
  body {
    padding-bottom: 65px
  }

  .site-footer {
    padding-bottom: 70px
  }
}

/* ── LINE Float ── */
.line-float {
  position: fixed;
  bottom: 100px;
  right: 15px;
  z-index: 110;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  animation: float-bounce 2s ease-in-out infinite;
}

.line-float img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.line-float:hover {
  transform: scale(1.1)
}

@keyframes float-bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@media(min-width:768px) {
  .line-float {
    bottom: 55px;
    right: 25px
  }
}

/* ── Scroll Top ── */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 70px;
  z-index: 110;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.scroll-top.visible {
  display: flex
}

.scroll-top:hover {
  background: rgba(255, 215, 0, .2);
  border-color: #ffd700
}

@media(min-width:768px) {
  .scroll-top {
    bottom: 25px;
    right: 80px
  }
}

/* ── Login Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .75);
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.modal-overlay.active {
  display: flex
}

.modal-content {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, #1a0a3e, #090909);
  border-radius: 20px;
  padding: 30px 25px;
  position: relative;
  border: 1px solid rgba(255, 215, 0, .2);
  animation: modalIn .4s ease;
}

@keyframes modalIn {
  from {
    transform: translateY(-30px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ff4c4c;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-logo {
  text-align: center;
  margin-bottom: 20px
}

.modal-logo img {
  height: 60px;
  margin: 0 auto
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.modal-form input {
  background: #141414;
  border: 2px solid #a00000;
  border-radius: 50px;
  padding: 12px 18px;
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .3s;
}

.modal-form input:focus {
  border-color: #ffd700
}

.modal-form input::placeholder {
  color: #999
}

.modal-form .btn-submit {
  background: linear-gradient(180deg, #ffdf46, #f69b09);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 12px;
  font-family: 'Kanit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 5px;
  transition: all .3s;
}

.modal-form .btn-submit:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, .4)
}

.modal-form .btn-register-alt {
  background: #f44336;
  color: #fff;
}

.modal-links {
  text-align: center;
  margin-top: 12px;
  font-size: 13px
}

.modal-links a {
  color: rgba(255, 255, 255, .6);
  transition: color .3s
}

.modal-links a:hover {
  color: #ffd700
}

/* ── Responsive ── */
@media(max-width:767px) {
  .header-seo {
    display: none
  }

  .header-right .btn-register,
  .header-right .btn-login {
    font-size: 13px;
    padding: 6px 14px
  }

  .hero-section {
    margin-top: 70px
  }

  .section-header h2 {
    font-size: 18px
  }
}


/* Footer Mobile */



#account-actions-mobile {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 101;
  width: 100%
}

@media (min-width:1025px) {
  #account-actions-mobile {
    display: none
  }
}

#account-actions-mobile .-register-btn {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 500;
  background: linear-gradient(180deg, #56ccf2, #2f80ed);
  border-radius: 15px 15px 0 0;
  text-align: center
}

#account-actions-mobile .-register-btn span {
  display: inline-block;
  color: #fff;
  background: #fff -webkit-gradient(linear, 100% 0, 0 0, from(#fff), color-stop(.5, #2f80ed), to(#fff));
  background-position: -200px top;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-name: x-shimmer;
  animation-name: x-shimmer;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

@media (max-width:991.98px) {
  #account-actions-mobile .-register-btn span {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
  }
}

@media (max-width:767.98px) {
  #account-actions-mobile .-register-btn span {
    width: 100%
  }
}

#account-actions-mobile .-outer-wrapper {
  display: flex;
  align-items: flex-end
}

#account-actions-mobile .-left-wrapper,
#account-actions-mobile .-right-wrapper {
  display: flex;
  align-items: flex-end;
  flex: 1;
  z-index: 2;
  height: 70px;
  padding-bottom: 6px;
  background: linear-gradient(rgb(55, 14, 149), rgb(160, 32, 240));
  border-top: 3px solid #f4eb9a;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
}

#account-actions-mobile .-center-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 4;
  width: 74px;
  height: 74px;
  margin: 0 8px 16px;
  padding-bottom: 8px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(180deg, #bc23e5, #bc23e5 23.96%, #bc23e5 49.48%, #8d17b1 71.87%, #9519b9);
  animation: x-jello-horizontal 3s infinite both;
}

@keyframes x-jello-horizontal {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  5% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1);
  }

  7.5% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1);
  }

  10% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1);
  }

  15% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  20% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }
}

#account-actions-mobile .-center-wrapper .-selected,
#account-actions-mobile .-center-wrapper .-selecting {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center
}

#account-actions-mobile .-center-wrapper .-selected {
  transition: all .4s;
  background-size: 450px;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: 0 0;
  border-radius: 50%;
}

.-selected img {
  width: 85px !important;
  max-width: inherit !important;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.-selected img {
  width: 77px !important;
  max-width: 77px !important;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -24px;
}

.-selected span {
  position: absolute;
  font-size: 13px;
  bottom: 4px;
  font-weight: 300;
  display: block;
}

.-selected span a {
  color: white;
}

#account-actions-mobile .-center-wrapper .-selected.-slot {
  background-position: -93px 0
}

#account-actions-mobile .-center-wrapper .-selected.-skill-game {
  background-position: -188px 0
}

#account-actions-mobile .-center-wrapper .-selected.-sport {
  background-position: -282px -2px
}

#account-actions-mobile .-center-wrapper .-selected.-fishing-game {
  background-position: -378px 0
}

#account-actions-mobile .-center-wrapper .-selected .-text {
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  text-shadow: 0 6px 5px rgba(0, 0, 0, .4);
  white-space: nowrap;
}

#account-actions-mobile .-center-wrapper .-selecting {
  display: none
}

#account-actions-mobile .-center-wrapper .-selecting .-text {
  font-size: .875rem;
  line-height: 16px;
  text-shadow: 0 6px 5px rgba(0, 0, 0, .4)
}

#account-actions-mobile .-center-wrapper .-selecting .-mark {
  position: relative;
  margin-top: 5px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 20px
}

#account-actions-mobile .-center-wrapper:hover {
  color: #fff;
  text-decoration: none
}

#account-actions-mobile .-fake-center-bg-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 50px;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
  overflow: hidden
}

#account-actions-mobile .-fake-center-bg-wrapper svg {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 108px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

#account-actions-mobile .-fake-center-bg-wrapper svg path {
  fill: url(#rectangleGradient)
}

#account-actions-mobile .-left-wrapper {
  border-top-left-radius: 10px;
  border-top-right-radius: 22px
}

#account-actions-mobile .-right-wrapper {
  border-top-right-radius: 10px;
  border-top-left-radius: 22px
}

#account-actions-mobile .-sub-menu-lobby-wrapper {
  position: absolute;
  flex-direction: row;
  justify-content: center;
  visibility: hidden;
  top: -75px;
  left: 50%;
  z-index: 3;
  opacity: 0;

  -webkit-transform: translateX(-50%) translateY(200px) scaleY(2.5) scaleX(.2);
  transform: translateX(-50%) translateY(200px) scaleY(2.5) scaleX(.2);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: all .2s
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-item .-text {
  display: inline-block;
  font-size: 10px;
  line-height: 12px;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px)
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-casino .-nav-icon-bg {
    background-position: 3px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-casino .-nav-icon-bg {
    background-position: 0
  }
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-slot .-nav-icon-bg {
    background-position: -73px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-slot .-nav-icon-bg {
    background-position: -75px
  }
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-skill-game .-nav-icon-bg {
    background-position: -147px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-skill-game .-nav-icon-bg {
    top: -12px;
    background-position: -150px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-skill-game .-text {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px)
  }
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-sport .-nav-icon-bg {
    background-position: -221px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-sport .-nav-icon-bg {
    background-position: -224px
  }
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-fishing-game .-nav-icon-bg {
    background-position: -300px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-fishing-game .-nav-icon-bg {
    background-position: -303px
  }
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 66px;
  height: 66px;
  margin: 0 3px;
  padding: 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, #393854, #131228);
  border: 1px solid hsla(0, 0%, 100%, .6);
  border-radius: 50%;
  box-shadow: 0 0 10px hsla(0, 0%, 100%, .6)
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-link .-nav-icon-bg {
  background-size: 360px;
  background-repeat: no-repeat;
  width: 100%;
  height: 40px;
  top: -15px;
  position: relative
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-link:focus {
  outline: none;
  text-decoration: none
}

@media screen and (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item .-img {
    margin-top: -15px;
    width: 54px
  }

  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-link {
    width: 60px;
    height: 60px;
    margin: 0 2px
  }
}

#account-actions-mobile .-item-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  position: relative;
}

.-ic-img img {
  width: 46px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-bottom: 15px;
  position: relative;
}

#account-actions-mobile .-item-wrapper .-textfooter {

  font-size: .875rem;

  color: #ffffff;

  transition: color .2s;

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  white-space: nowrap;

  margin: 0 auto;

  margin-top: .25rem;
}

#account-actions-mobile .-item-wrapper .-textfooter a {
  color: white;
  text-decoration: none;
}

#account-actions-mobile .-item-wrapper:hover a {
  text-shadow: 0 0 5px white, 0 0 15px white, 0 0 35px white, 0 0 45px white;
}

@media (max-width:575.98px) {
  #account-actions-mobile .-item-wrapper .-textfooter {
    font-size: .8rem
  }
}

#account-actions-mobile .-item-wrapper:active,
#account-actions-mobile .-item-wrapper:hover {
  text-decoration: none
}

#account-actions-mobile .-item-wrapper:active .-text,
#account-actions-mobile .-item-wrapper:hover .-text {
  color: #f7d18e
}

#account-actions-mobile .-item-wrapper.-shimmer .-text {
  display: inline-block;
  color: #fff;
  background: #97a7c1 -webkit-gradient(linear, 100% 0, 0 0, from(#97a7c1), color-stop(.5, #fff), to(#97a7c1));
  background-position: -200px top;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-name: x-shimmer;
  animation-name: x-shimmer;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: x-shimmer-shorter;
  animation-name: x-shimmer-shorter
}

@media (max-width:991.98px) {
  #account-actions-mobile .-item-wrapper.-shimmer .-text {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s
  }
}

#account-actions-mobile .-fully-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, .6)
}

#account-actions-mobile.-active .-fake-center-bg-wrapper,
#account-actions-mobile.-active .-left-wrapper,
#account-actions-mobile.-active .-right-wrapper {
  -webkit-filter: brightness(.5);
  filter: brightness(.5)
}

#account-actions-mobile.-active .-fake-center-bg-wrapper a,
#account-actions-mobile.-active .-left-wrapper a,
#account-actions-mobile.-active .-right-wrapper a {
  pointer-events: none
}

#account-actions-mobile.-active .-center-wrapper {
  background: linear-gradient(0deg, rgba(251, 200, 68, .85), rgba(248, 128, 18, .85))
}

#account-actions-mobile.-active .-center-wrapper .-selected {
  display: none
}

#account-actions-mobile.-active .-center-wrapper .-selecting {
  display: flex
}

#account-actions-mobile.-active .-sub-menu-lobby-wrapper {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0) scaleY(1) scaleX(1);
  transform: translateX(-50%) translateY(0) scaleY(1) scaleX(1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%
}

#account-actions-mobile.-active .-fully-overlay {
  display: block
}

/* Footer Mobile */


/* old */
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control, .form-select {
    border-radius: 10px;
    background-color: #505050;
    border-color: #303030;
}

.formInput {
    position: relative;
    margin-bottom: 8px;
}

.titleCenter {
    font-family: var(--font-bold);
    font-size: 32px;
}

.underLineTitle {
      display: block;
      height: 3px;
      background-color: #fad700;
      width: 50px;
      position: absolute;
      left: 50%;
      transform: translate(-50%, 8px);
  }

.cardTitleCenter {
    text-align: center;
    margin-top: 14px;
    margin-bottom: 16px;
    padding-bottom: 10px;
}

.backLink a {
    display: inline-flex;
    align-items: center;
    color: #f8be00;
}

.backLink a img {
    margin-right: 8px;
}

.titlePage {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.titlePage h1,
.titlePage h3 {
    color: #f8be00 !important;
    font-family: var(--font-extrabold);
}

.titlePage h1 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #EBE6FF30;
    font-size: 64px;
    color: transparent;
    position: absolute;
    left: 50%;
    top: -30%;
    transform: translate(-50%, 0);
}

.imgPage {
    position: absolute;
    left: -10px;
    top: -65px;
}

.banknameCard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 20px;
}

.bankBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.leftBankname h6,
.bankBottom h6 {
    color: var(--secondary-color);
}

.leftBankname h4,
.bankBottom h4 {
    margin-bottom: 0;
    font-family: var(--font-bold);
}

.bankIcon img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
}

.cardColorDark {
    border-radius: 14px;
    background: linear-gradient(201deg, #100b18 0%, #3d055c 27.58%, #1d0132 86.19%);
    padding: 20px;
}

.blockCredit {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    margin-top: 20px;
}

.refresh-credit.abs {
    position: absolute;
    right: 0;
    top: 0;
}

.promotion img {
    margin-bottom: 16px;
    border-radius: 14px;
    box-shadow: 0px 0px 10px 0px rgba(51, 51, 51, 0.49);
    transition: all 0.3s ease;
}

.promotion:hover img {
    box-shadow: 0px 0px 20px 0px rgba(41, 41, 41, 0.639);
}

.activity {
    display: block;
    position: relative;
}

.activity img {
    margin-bottom: 16px;
    border-radius: 14px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.activity:hover img {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
}

.activity h5 {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    font-size: 34px;
    color: transparent;
    font-family: var(--font-extrabold);
    margin-bottom: 0;
    position: absolute;
    left: 10%;
    top: 35%;
    transform: translate(0, -50%);
    z-index: 99;
}

.activity h2 {
    font-family: var(--font-extrabold);
    color: #ffffff80;
    font-size: 60px;
    margin-bottom: 0;
    position: absolute;
    left: 10%;
    top: 54%;
    transform: translate(0, -50%);
    transition: all 0.3s ease;
    z-index: 99;
}

.activity:hover h2 {
    color: #ffffff;
}

.activity .iconAct {
    position: absolute;
    box-shadow: none;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    transition: all 0.3s ease;
}

.activity:hover .iconAct {
    top: 40%;
    box-shadow: none;
}

.history {
    border-radius: 10px;
    background: #5C588D20;
    padding: 10px 16px;
    margin-bottom: 8px;
}

.rowDate {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.rowDate p {
    font-family: var(--font-bold);
}

.rowDate img {
    margin-right: 5px;
}

.badge {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 8px;
}

.cardReward {
    border-radius: 14px;
    border: 1px solid #25221e;
    background: #2e2c29;
    box-shadow: 0px -6px 3px 0px rgba(16, 21, 42, 0.19) inset;
    display: block;
    font-size: 14px;
}

.imgReward {
    width: 100%;
    height: 178px;
    overflow: hidden;
    position: relative;
    border-radius: 13px 13px 0 0;
    margin-bottom: 20px;
    display: block;
}

.imgReward img {
    width: 100%;
    height: 100%;
    object-position: center;
}

.imgReward::before {
    border-radius: 0;
    background: linear-gradient(180deg, rgba(44, 30, 98, 0.00) 0%, #58533c 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
}

.color-gold {
    color: #E09A52;
}

.point {
    display: flex;
    align-items: center;
}

.flex-1 {
    flex: 1;
}

.btn-reward {
    display: block;
    border-radius: 6px;
    background: var(--Linear, linear-gradient(90deg, #f8be00 0%, #f8be00 50%, #f8be00 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.29);
    margin-left: 5px;
    text-align: center;
    padding: 8px 16px;
    color: #000000;
}

.btn-reward.disable {
    background: var(--Linear, linear-gradient(180deg, #181818 0%, #565656 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.29);
    color: #999999;
}

.btn-reward2 {
    display: block;
    border-radius: 6px;
    background: var(--Linear, linear-gradient(90deg, #f8be00 0%, #f8be00 50%, #f8be00 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.29);
    margin-left: 5px;
    text-align: center;
    padding: 8px;
    white-space: nowrap;
}

.btn-reward2.disable {
    background: var(--Linear, linear-gradient(180deg, #181818 0%, #565656 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.29);
    color: #524B6B;
}

.modalNew {
    border-radius: 20px;
    background: linear-gradient(201deg, #0a0a8f 0%, #0a0aaa 27.58%, #0a0a8f 86.19%);
    box-shadow: 0px 6px 14.5px 0px rgba(0, 0, 0, 0.25);
    border: none
}

.closeModallink {
    position: absolute;
    right: 0;
    top: -22px;
    display: block;
    z-index: 999;
}

.imgageReward {
    overflow: hidden;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    left: 50%;
    position: relative;
    transform: translate(-50%, 0);
    margin-bottom: 30px;
    margin-top: 30px;
    border-radius: 20px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.38);
}

.imgageReward img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 200px;
}

.pointBg {
    background-color: #e62b2bde;
    color: var(--main-color);
    text-align: center;
    position: absolute;
    top: 10px;
    padding: 6px 10px;
    border-radius: 6px;
}

.form-control:disabled {
    background-color: #1D124B;
    opacity: 1;
    color: #342862;
}

.rewardImgs {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.rewardImgs img,
.imgAnnonue img,
.imgAccount img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.imgAnnonue {
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

.imgAccount {
    overflow: hidden;
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    left: 50%;
    top: -30px;
    transform: translate(-50%, 0);
}

.accountName {
    margin-top: 60px;
    margin-bottom: 30px;
}

.cardBorder {
    border-radius: 14px;
    border: 1px solid #23201b;
    background: #121212;
    padding: 16px;
    height: 100%;
}

.cardyouBank {
    border-radius: 10px;
    background: #121212;
    padding: 18px;
}

.rigIcons {
    padding-right: 50px !important;
}

.copyIcons {
    position: absolute;
    display: inline-block;
    right: 12px;
    top: 50%;
    transform: translate(0, -50%);
}

.cardNormal {
    border-radius: 14px;
    border: 1px solid #181818;
    background: linear-gradient(201deg, #100b18 0%, #3d055c 27.58%, #1d0132 86.19%);
    box-shadow: 0px -6px 3px 0px rgba(16, 21, 42, 0.19) inset;
    padding: 20px;
}

.topAffCredit {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.underline {
    text-decoration: underline;
}

.underline:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

.tab-pane {
    padding-top: 20px;
}

.tabAff {
    justify-content: center;
    border-bottom: 3px solid #5024B9;
}

.nav-link {
    color: #877ABD;
    border-radius: 12px 12px 0px 0px;
    background: var(--Linear, linear-gradient(201deg, #462A82 0%, #2F1D61 27.58%, #22184F 86.19%));
    box-shadow: 0px -6px 3px 0px rgba(16, 21, 42, 0.19) inset;
    font-size: 18px;
}

.nav-tabs .nav-link {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-right: 4px;
    border: none;
    padding: 10px 32px;
    margin-bottom: calc(0* var(--bs-nav-tabs-border-width));
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background: var(--Linear, linear-gradient(180deg, #139D74 0%, #6024DC 100%));
    box-shadow: 0px -6px 3px 0px rgba(16, 21, 42, 0.19) inset;
}

.cardBlock {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(201deg, #100b18 0%, #3d055c 27.58%, #1d0132 86.19%);
    box-shadow: 0px 6px 14.5px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
}

.cardBlock::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 3px;
    width: 80%;
    background: linear-gradient(90deg, rgba(109, 79, 226, 0.00) 0%, #a500fd 50%, rgba(109, 79, 226, 0.00) 100%);
}
.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    color: #fff;
}

.cateService {
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    box-shadow: 0px 5px 5.8px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.cateService img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.2s ease-in-out;
}

.cateService:hover img {
    transform: scale(1.1);
}

.tabDetail {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding-top: 30px;
}

.tabDetail.active {
    display: block;
    opacity: 1;
}

.linkPartner {
    display: block;
    border-radius: 8px;
    /* background: #372F55; */
    margin-bottom: 3px;
    padding: 3px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
}

.linkPartner:hover {
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.2);
}

.partSlide {
    background: transparent;
}

.partSlide:hover {
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.2);
}

.linkPartner img {
    width: 100%;
}

.titlePartner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.logoPartner {
    position: relative;
    margin-top: 20px;
}

.logoPartner img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -70%);
    width: 90px;
}

.nameService {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.services:hover .nameService {
    color: var(--main-color);
}

/* BUTTON STYLE */
.btn-flat {
    background-color: #f2b500;
    color: #000;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}

.btn-flat:hover {
    background-color: #00006c;
}

.btn-flat-sm {
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 12px;
}

.btn-border-light {
    background-color: transparent;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #1e1eac;
}

.btn-flat-block {
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    display: flex;
    text-align: center;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
}

.btn-flat-block img {
    margin-right: 10px;
    width: 24px;
    height: auto;
}

.btn-border-light:hover {
    border: 1px solid #00005A;
}

.btn-border-light {
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 12px;
}

.btn-main {
    border-radius: 10px;
    background-color: #f2b500;
    color: #000;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.40);
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 16px;
}

.btn-main:hover {
    background-color: #dda500;
    color: #000;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);

}

.btn-danger2 {
    border-radius: 10px;
    background: linear-gradient(90deg, #e2bd5c 0%, #f3dd86 50%, #c38c32 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.29);
    padding: 5px 15px;
    border: var(--bs-btn-border-width) solid transparent;
    color:#000000;
}

.btn-danger2:hover {
    border-color: #c38c32 !important;
    color:#1d1d1d;
}

.btn-danger3 {
    border-radius: 10px;
    background: var(--Linear, linear-gradient(180deg, #CF3F9E 0%, #DC242F 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.29);
    padding: 10px 15px;
    font-size: 18px;
}

.btn-danger3:hover {
    border-color: #dc3459 !important;
}

.btn-normal {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 18px;
}

.btn-normal:hover {
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.6);
    background-color: #ffcf3e;
    color: #11111190;
}

.btn-main-sm {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

.btn-main-sm2 {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 5px;
    font-size: 16px;
}

/* BUTTON STYLE */


.navUserTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.rightNav {
    display: flex;
    align-items: center;
    position: relative;
}

.grad_color01 {
    background-color: #f4b800;
    color: #000000;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.29);
}

.grad_color02 {
    background-color: #f4b800;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.29);
    color: #000000;
    font-weight: bold;
    font-size: 1.3rem;
}

.btnCal {
    padding: 8px 20px;
    display: block;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
}

/* Progress Bar */
.progress-bar {
  background-image: linear-gradient(45deg, #FF5722 25%, #FF9800 25%, transparent 50%, #ff980000 50%, #FF9800 75%, transparent 75%, #9c27b000);
  position: relative;
  z-index: 2;
  display: flex;
  /* ใช้ Flexbox จัดให้อยู่กึ่งกลาง */
  align-items: center;
  justify-content: center;
  color: black;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar-stripes {
  background-image: linear-gradient(34deg, #ff0036 40%, #0042ff 70%);
  /* background-size: 40px 40px; */
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation: moveStripes 1s linear infinite;
}

.progress-value {
  position: relative;
  z-index: 3;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  bottom: 3px;
}

.bg-blue {
    --bs-bg-opacity: 1;
    background-image: linear-gradient(180deg, #011683 25%, #004890 60%);
    color:#fff;
}

.g-list a {
  text-decoration: none;
}

/* buff88 */
.game-page-wrapper {
  background: #151515;
}

.game-panel {
  background: #1b1b1b;
  border: 1px solid #2c2c2c;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.game-panel-title {
  font-weight: 700;
  color: #f1f1f1;
}

.game-search .form-control {
  background: #0f0f0f;
  border: 1px solid #2f2f2f;
  color: #e8e8e8;
}

.game-search .form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.2);
}

.category-menu {
  padding: 5px;
}

.category-item {
  background: #111;
  border: 1px solid #2a2a2a;
  color: #d5d5d5;
  padding: 5px 5px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  margin: 5px 0;
  font-size: 12px;
}

.category-item:hover {
  border-color: var(--primary-gold);
  color: #fff;
}

/* Game Cards */
.game-card {
  border: 1px solid #333;
  transition: transform 0.2s;
  cursor: pointer;
}

.game-card:hover {
  transform: scale(1.03);
  border-color: var(--primary-gold);
}

.game-label {
  font-size: 0.85rem;
}

.category-item.active {
  background: linear-gradient(135deg, #ffd46a 0%, #ffb742 100%);
  border-color: transparent;
  color: #1a1a1a;
}

.provider-list {
  padding: 5px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 420px;
  scrollbar-width: thin;
  scrollbar-color: #ffbc48 transparent;
}

.provider-item {
  color: #d9d9d9;
  padding: 3px 3px;
  margin: 2px 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.provider-item:hover {
  border-color: var(--primary-gold);
  color: #fff;
}

.provider-item img {
  width: 100%;
}

.provider-item span {
  font-weight: 600;
}

.provider-item small {
  color: #a9a9a9;
}

.provider-item.active {
  background: linear-gradient(135deg, #ffd46a 0%, #ffb742 100%);
  border-color: transparent;
  color: #1a1a1a;
}

@media (max-width: 991px) {
  .game-panel {
    margin-bottom: 1rem;
  }

  .game-label {
    font-size: 0.6rem;
  }
}


.user-name {
    color: #FFD700;
    font-weight: bold;
}



.balance-box {
    display: flex;
    align-items: center;
    align-items: center;
    background: linear-gradient(90deg, #3e0f9b, #9c20ec);
    border-radius: 20px;
    padding: 5px 10px;
    border: 1px solid #4d12a8;
    box-shadow: 0 0 10px #7218c8;
}

.balance-amount {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.balance-icon {
    width: 20px;
    height: 20px;
}
.sidebar-social {
    align-self: self-end;
    margin-right:10px;
}
.sidebar-social a img {
  width: 40px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.6;
  transition: var(--transition);
}

.sidebar-social a img:hover {
  opacity: 1;
  transform: scale(1.1);
}