.slot-section {
  padding: 60px 20px;
  /* background: #0f172a; */
  color: #fff;
}

.slot-section .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.slot-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.slot-section h3 {
  font-size: 22px;
  margin-top: 20px;
}

.slot-section p {
  line-height: 1.6;
  color: #cbd5e1;
}

.slot-section a {
  color: #38bdf8;
  text-decoration: none;
}

.slot-section a:hover {
  text-decoration: underline;
}

.slot-section img {
  width: 100%;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .slot-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.logo-slider {
  position: relative;
  overflow: hidden;
  padding: 40px 50px;
  background: radial-gradient(circle at top, #020617, #000);
  border-top: 1px solid rgba(56,189,248,0.2);
  border-bottom: 1px solid rgba(56,189,248,0.2);
}

/* track */
.logo-slider .track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* item */
.logo-slider img {
  width: calc(100% / 7 - 20px);
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #0f172a, #020617);
  padding: 12px;
  border: 1px solid rgba(56,189,248,0.15);
  transition: 0.3s;
  filter: brightness(0.8);
}

/* hover effect */
.logo-slider img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
  box-shadow: 0 0 20px rgba(56,189,248,0.6);
}

/* glow cháº¡y nháº¹ */
.logo-slider img::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* arrows */
.logo-slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(56,189,248,0.3);
  color: #38bdf8;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 2;
}

.logo-slider .nav:hover {
  background: #38bdf8;
  color: #000;
  box-shadow: 0 0 15px rgba(56,189,248,0.8);
}

.logo-slider .prev { left: 10px; }
.logo-slider .next { right: 10px; }

/* responsive */
@media (max-width: 1024px) {
  .logo-slider img {
    width: calc(100% / 4 - 20px);
  }
}

@media (max-width: 600px) {
  .logo-slider img {
    width: calc(100% / 2 - 20px);
  }
}
.logo-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  pointer-events: none;
  box-shadow: 0 0 40px rgba(56,189,248,0.2);
}
.logo-slider img:hover {
  animation: pulse 0.6s infinite alternate;
}

@keyframes pulse {
  from { box-shadow: 0 0 10px rgba(56,189,248,0.4); }
  to   { box-shadow: 0 0 25px rgba(56,189,248,1); }
}
.game-box {
  padding: 40px 20px;
  /* background: #0f172a; */
  color: #fff;
}

.game-box .wrap {
  max-width: 1000px;
  margin: auto;
  display: grid;
  gap: 30px;
  align-items: center;
}

.game-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.game-box p {
  color: #cbd5e1;
  line-height: 1.6;
}

.game-box .thumb {
  text-align: center;
}

.game-box img {
  max-width: 180px;
  border-radius: 12px;
  background: #1e293b;
  padding: 10px;
  transition: 0.3s;
}

.game-box img:hover {
  transform: scale(1.1);
}

/* mobile */
@media (max-width: 768px) {
  .game-box .wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .game-box img {
    margin-top: 15px;
  }
}
.zxg-zone {
  padding: 50px 15px;
  /* background: radial-gradient(circle at top, #020617, #000); */
}

.zxg-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* chá»‰ cáº§n 1 class cardgames */
.cardgames {
  display: block;
  text-align: center;
  padding: 14px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* glow */
.cardgames::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(56,189,248,0.25), transparent 70%);
  opacity: 0;
  transition: 0.3s;
}

.cardgames:hover::before {
  opacity: 1;
}

.cardgames:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 25px rgba(56,189,248,0.3);
}

.cardgames img {
  max-width: 70px;
  margin-bottom: 8px;
  transition: 0.3s;
}

.cardgames:hover img {
  transform: scale(1.1);
}

.cardgames span {
  display: block;
  font-size: 13px;
  color: #cbd5e1;
}

/* ná»•i báº­t */
.cardgames.is-hot {
  border: 1px solid #38bdf8;
  box-shadow: 0 0 15px rgba(56,189,248,0.5);
}

/* responsive */
@media (max-width: 1024px) {
  .zxg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .zxg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ftx-features {
  padding: 60px 20px;
  /* background: #020617; */
}

.ftx-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.ftx-card {
  background: linear-gradient(145deg, #0f172a, #020617);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.ftx-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(56,189,248,0.2);
}

.ftx-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.ftx-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.ftx-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* tablet */
@media (max-width: 900px) {
  .ftx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 600px) {
  .ftx-grid {
    grid-template-columns: 1fr;
  }
}
.slot-pro {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px 25px;
  text-align: center;
  /* background: linear-gradient(135deg, #0f172a, #1e293b); */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  color: #fff;
  font-family: Arial, sans-serif;
}

.slot-pro h2 {
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.slot-pro p {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.6;
}

.slot-pro img {
  max-width: 100%;
  border-radius: 12px;
  margin: 15px 0 25px;
}

.slot-pro .btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.slot-pro .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249,115,22,0.4);
}
.slot-pro .btn {
  background: linear-gradient(135deg, #ff0080, #ffcc00);
}