.page-slot-games {
  color: #ffffff; /* Dark background #111, so light text */
  background-color: #111;
  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: var(--header-offset, 120px);
  margin-top: 0;
  background-color: #1A237E;
}

.page-slot-games__hero-container {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.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;
  min-height: 400px; /* Minimum height for hero image */
}

.page-slot-games__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background: #1A237E; /* Auxiliary color for contrast */
  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: 25px; /* Increased gap for better visual separation */
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 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: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  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.2);
}

.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: #111;
}

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

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

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

.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;
  padding-left: 5px;
}

.page-slot-games__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark bg */
  border: 1px solid rgba(255, 255, 255, 0.15);
  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;
  justify-content: flex-start;
}

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

.page-slot-games__games-tab:hover {
  color: #FFD700;
}

.page-slot-games__games-tab.active {
  color: #FFD700;
  border-bottom: 3px solid #FFD700;
}

.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.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px 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 10px 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: 80px 0;
  background-color: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.page-slot-games__section-description {
  font-size: 17px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

.page-slot-games__feature-grid, .page-slot-games__promotion-grid, .page-slot-games__info-grid, .page-slot-games__game-category-grid, .page-slot-games__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__feature-item, .page-slot-games__promotion-card, .page-slot-games__info-card, .page-slot-games__game-category-card, .page-slot-games__news-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__feature-item:hover, .page-slot-games__promotion-card:hover, .page-slot-games__info-card:hover, .page-slot-games__game-category-card:hover, .page-slot-games__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.page-slot-games__feature-item img, .page-slot-games__promotion-card img, .page-slot-games__info-card img, .page-slot-games__game-category-card img, .page-slot-games__news-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  min-
}

.page-slot-games__feature-item h3, .page-slot-games__promotion-card h3, .page-slot-games__info-card h3, .page-slot-games__game-category-card h3, .page-slot-games__news-card h3 {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-slot-games__feature-item p, .page-slot-games__promotion-card p, .page-slot-games__info-card p, .page-slot-games__game-category-card p, .page-slot-games__news-card p {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slot-games__btn-primary, .page-slot-games__btn-secondary, .page-slot-games__btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-slot-games__btn-primary {
  background: #FFD700;
  color: #1A237E;
  border: 2px solid #FFD700;
}

.page-slot-games__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  color: #000000;
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slot-games__btn-secondary:hover {
  background: #FFD700;
  color: #1A237E;
}

.page-slot-games__btn-small {
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 6px;
  background: #1A237E;
  color: #FFD700;
  border: 1px solid #FFD700;
  margin-top: auto;
}

.page-slot-games__btn-small:hover {
  background: #FFD700;
  color: #1A237E;
  border-color: #1A237E;
}

.page-slot-games__news-card h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games__news-card h3 a:hover {
  color: #e6c200;
}

.page-slot-games__news-date {
  font-size: 14px;
  color: #aaa;
  margin-top: 10px;
  display: block;
}

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

.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.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;
  color: #f0f0f0;
}

.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.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-slot-games__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

.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: 32px;
  height: 32px;
}

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

@media (max-width: 1024px) {
  .page-slot-games__games-layout {
    grid-template-columns: 1fr;
  }
  .page-slot-games__games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-slot-games__featured-game-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-slot-games__hero-image img {
    min-height: 250px;
  }
  .page-slot-games__logo-carousel-section {
    padding: 20px 15px;
  }
  .page-slot-games__logo-carousel {
    gap: 15px;
  }
  .page-slot-games__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
  }
  .page-slot-games__logo-item a {
    padding: 8px;
  }
  .page-slot-games__games-section {
    padding: 40px 15px;
  }
  .page-slot-games__container {
    padding: 0 15px;
  }
  .page-slot-games__main-title {
    font-size: 28px;
  }
  .page-slot-games__intro-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-slot-games__featured-game-title {
    font-size: 22px;
  }
  .page-slot-games__featured-game-image {
    height: 300px;
  }
  .page-slot-games__games-tabs {
    gap: 15px;
    margin-bottom: 20px;
  }
  .page-slot-games__games-tab {
    font-size: 16px;
    padding: 8px 0;
  }
  .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: 10px 0 8px 0;
    padding: 0 5px;
  }
  .page-slot-games__section {
    padding: 40px 0;
  }
  .page-slot-games__section-title {
    font-size: 24px;
  }
  .page-slot-games__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-slot-games__feature-grid, .page-slot-games__promotion-grid, .page-slot-games__info-grid, .page-slot-games__game-category-grid, .page-slot-games__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__feature-item, .page-slot-games__promotion-card, .page-slot-games__info-card, .page-slot-games__game-category-card, .page-slot-games__news-card {
    padding: 20px;
  }
  .page-slot-games__feature-item h3, .page-slot-games__promotion-card h3, .page-slot-games__info-card h3, .page-slot-games__game-category-card h3, .page-slot-games__news-card h3 {
    font-size: 20px;
  }
  .page-slot-games__feature-item p, .page-slot-games__promotion-card p, .page-slot-games__info-card p, .page-slot-games__game-category-card p, .page-slot-games__news-card p {
    font-size: 15px;
  }
  .page-slot-games__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__btn-primary, .page-slot-games__btn-secondary, .page-slot-games__btn-small {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-slot-games__faq-question {
    padding: 15px;
  }
  .page-slot-games__faq-question h3 {
    font-size: 16px;
  }
  .page-slot-games__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-slot-games__faq-item.active .page-slot-games__faq-answer {
    padding: 15px !important;
  }
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__section, .page-slot-games__card, .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__btn-primary, .page-slot-games__btn-secondary, .page-slot-games a[class*="button"], .page-slot-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__cta-buttons, .page-slot-games__button-group, .page-slot-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-slot-games__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}