.page-slot-games {
  color: #ffffff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-slot-games__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* shared đã cho body padding-top, nên hero dùng 0 */
  margin-top: 0;
  background: #0a0a0a;
}

.page-slot-games__hero-container {
  position: relative;
  margin: 0 auto;
}

.page-slot-games__hero-image {
  width: 100%;
  margin: 0;
}

.page-slot-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-slot-games__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background: #1A2B4C; /* Sử dụng màu chủ đạo */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-slot-games__logo-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.page-slot-games__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-slot-games__logo-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

.page-slot-games__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px;
  box-sizing: border-box;
  pointer-events: auto;
}

.page-slot-games__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.page-slot-games__games-section {
  width: 100%;
  padding: 60px 20px;
  background: #0a0a0a;
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-slot-games__main-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-slot-games__intro-text {
  font-size: 18px;
  text-align: center;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-slot-games__featured-game-area {
  width: 100%;
}

.page-slot-games__featured-game-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #FFD700;
  text-align: left;
}

.page-slot-games__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__featured-game:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-slot-games__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-slot-games__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.page-slot-games__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-slot-games__games-grid-area {
  width: 100%;
}

.page-slot-games__games-tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  align-items: center;
}

.page-slot-games__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-decoration: none;
  position: relative;
}

.page-slot-games__games-tab:hover {
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.page-slot-games__games-tab.active {
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.page-slot-games__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}

.page-slot-games__games-grid.active {
  display: grid;
}

.page-slot-games__game-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-slot-games__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.page-slot-games__game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-slot-games__game-card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 12px 0;
  padding: 0 8px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

.page-slot-games__section {
  padding: 60px 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-slot-games__heading {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #FFD700;
  margin-bottom: 30px;
}

.page-slot-games__paragraph {
  font-size: 16px;
  color: #e0e0e0;
  text-align: justify;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-slot-games__btn-primary {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 15px 30px;
  background: #FFD700;
  color: #1A2B4C;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-slot-games__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-slot-games__btn-center {
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.page-slot-games__quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games__quick-link-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__quick-link-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-slot-games__quick-link-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.page-slot-games__game-type-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__game-type-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__game-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__game-type-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games__game-type-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games__game-type-description {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
}

.page-slot-games__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.page-slot-games__promo-item {
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__promo-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games__promo-description {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-slot-games__info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__info-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games__info-description {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
}

.page-slot-games__faq-list {
  margin-top: 30px;
}

.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.03);
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #1A2B4C;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-slot-games__faq-question:hover {
  background: #2A3C5C;
  border-color: rgba(255, 215, 0, 0.5);
}

.page-slot-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-slot-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-slot-games__faq-item.active .page-slot-games__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-slot-games__faq-answer p {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.page-slot-games__news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__news-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__news-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-slot-games__news-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  padding: 15px 20px 0;
  line-height: 1.4;
}

.page-slot-games__news-link {
  color: inherit;
  text-decoration: none;
}

.page-slot-games__news-link:hover {
  text-decoration: underline;
}

.page-slot-games__news-excerpt {
  font-size: 15px;
  color: #cccccc;
  padding: 10px 20px;
  line-height: 1.6;
}

.page-slot-games__news-date {
  font-size: 13px;
  color: #999999;
  padding: 0 20px 20px;
  display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-slot-games__main-title {
    font-size: 30px;
  }
  .page-slot-games__intro-text {
    font-size: 16px;
  }
  .page-slot-games__games-layout {
    grid-template-columns: 1fr;
  }
  .page-slot-games__featured-game-image {
    height: 400px;
  }
  .page-slot-games__games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-slot-games__heading {
    font-size: 28px;
  }
  .page-slot-games__links-grid,
  .page-slot-games__game-type-cards,
  .page-slot-games__promo-list,
  .page-slot-games__info-grid,
  .page-slot-games__news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-slot-games__game-card-title {
    font-size: 14px;
  }
  .page-slot-games__faq-question h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__section,
  .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-slot-games__hero-section {
    padding-top: 0 !important;
  }
  .page-slot-games__logo-carousel-section {
    padding: 20px 15px;
  }
  .page-slot-games__logo-carousel {
    gap: 12px;
  }
  .page-slot-games__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    box-sizing: border-box;
    padding: 0;
  }
  .page-slot-games__logo-item a {
    padding: 8px;
  }
  .page-slot-games__games-section {
    padding: 40px 15px;
  }
  .page-slot-games__main-title {
    font-size: 26px;
  }
  .page-slot-games__intro-text {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-slot-games__featured-game-title {
    font-size: 22px;
    text-align: center;
  }
  .page-slot-games__featured-game-image {
    height: 300px;
  }
  .page-slot-games__games-tabs {
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
  }
  .page-slot-games__games-tab {
    font-size: 16px;
  }
  .page-slot-games__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page-slot-games__game-card-image {
    height: 150px;
  }
  .page-slot-games__game-card-title {
    font-size: 13px;
    margin: 8px 0;
    padding: 0 5px;
  }
  .page-slot-games__heading {
    font-size: 24px;
  }
  .page-slot-games__paragraph {
    font-size: 15px;
    text-align: left;
  }
  .page-slot-games__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-slot-games__links-grid,
  .page-slot-games__game-type-cards,
  .page-slot-games__promo-list,
  .page-slot-games__info-grid,
  .page-slot-games__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__quick-link-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .page-slot-games__quick-link-text {
    font-size: 16px;
  }
  .page-slot-games__game-type-image {
    height: 200px;
  }
  .page-slot-games__game-type-title {
    font-size: 20px;
  }
  .page-slot-games__promo-title {
    font-size: 18px;
  }
  .page-slot-games__info-title {
    font-size: 20px;
  }
  .page-slot-games__faq-question {
    padding: 15px;
  }
  .page-slot-games__faq-question h3 {
    font-size: 15px;
  }
  .page-slot-games__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
  }
  .page-slot-games__faq-item.active .page-slot-games__faq-answer {
    padding: 15px !important;
  }
  .page-slot-games__news-image {
    height: 180px;
  }
  .page-slot-games__news-title {
    font-size: 18px;
    padding: 12px 15px 0;
  }
  .page-slot-games__news-excerpt {
    padding: 8px 15px;
  }
  .page-slot-games__news-date {
    padding: 0 15px 15px;
  }
}