.page-slot-games {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: 'Arial', sans-serif;
  background-color: #000000; /* Ensuring main content area matches body background */
}

.page-slot-games__hero-section {
  position: relative;
  padding: 0;
  margin: 0;
}

.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: #000000; /* Dark background for consistency */
  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: 15px;
  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: 6px;
  overflow: hidden;
  background: #1a1a1a; /* Slightly lighter dark for contrast */
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

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

.page-slot-games__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  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: #000000;
}

.page-slot-games__games-container {
  max-width: 1400px;
  margin: 0 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: 24px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #ffd700; /* Yellow text for Jackpot */
  text-align: left;
}

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

.page-slot-games__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.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: 20px;
  margin-bottom: 20px;
  align-items: center;
}

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

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

.page-slot-games__games-tab.active {
  color: #ff0000; /* Red for active tab */
  text-decoration: underline;
}

.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: 8px;
  overflow: hidden;
  background: #1a1a1a;
  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 4px 12px rgba(255, 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: 14px;
  font-weight: 500;
  margin: 10px 0 15px 0;
  padding: 0 5px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

.page-slot-games__section {
  padding: 60px 20px;
  margin-bottom: 30px;
}

.page-slot-games__dark-section {
  background-color: #000000;
  color: #ffffff;
}

.page-slot-games__light-section {
  background-color: #f5f5f5;
  color: #333333;
}

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

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

.page-slot-games__sub-description {
  font-size: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #cccccc;
}

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

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

.page-slot-games__button-group--center {
  justify-content: center;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games__btn-primary {
  background: #ff0000;
  color: #ffffff;
  border: 2px solid #ff0000;
}

.page-slot-games__btn-primary:hover {
  background: #cc0000;
  border-color: #cc0000;
  transform: translateY(-2px);
}

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

.page-slot-games__btn-secondary:hover {
  background: #ff0000;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-slot-games__quick-links-section {
  background: #1a1a1a;
  padding: 60px 20px;
}

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

.page-slot-games__link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.page-slot-games__link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
  background-color: #0d0d0d;
}

.page-slot-games__link-card img {
  
  
  margin-bottom: 15px;
  object-fit: contain;
}

.page-slot-games__link-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ff0000;
}

.page-slot-games__link-card p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.5;
}

.page-slot-games__core-games-section {
  background: #000000;
  padding: 60px 20px;
}

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

.page-slot-games__game-detail-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__game-detail-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-slot-games__game-detail-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slot-games__game-detail-card p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
  padding: 0 15px;
}

.page-slot-games__promotions-section {
  background: #1a1a1a;
  padding: 60px 20px;
}

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

.page-slot-games__promo-card {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__promo-card img {
  width: 100%;
  
  object-fit: cover;
  margin-bottom: 15px;
}

.page-slot-games__promo-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slot-games__promo-card p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
  padding: 0 15px;
  flex-grow: 1;
}

.page-slot-games__promo-card .page-slot-games__btn-primary {
  margin-top: 20px;
  margin-left: 15px;
  margin-right: 15px;
  width: auto;
}

.page-slot-games__security-support-section {
  background: #000000;
  padding: 60px 20px;
}

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

.page-slot-games__feature-item {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.page-slot-games__feature-item img {
  
  
  object-fit: contain;
  margin-bottom: 15px;
}

.page-slot-games__feature-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 10px;
}

.page-slot-games__feature-item p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
}

.page-slot-games__faq-section {
  background: #1a1a1a;
  padding: 60px 20px;
}

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

.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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 15px;
  opacity: 0;
  background: #000000;
  color: #cccccc;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #000000;
  border-radius: 0 0 5px 5px;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  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: #0d0d0d;
  border-color: #ff0000;
}

.page-slot-games__faq-question:active {
  background: #1a1a1a;
}

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

.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #ff0000;
  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: 28px;
  height: 28px;
}

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

.page-slot-games__blog-section {
  background: #000000;
  padding: 60px 20px;
}

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

.page-slot-games__blog-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-slot-games__blog-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #ff0000;
  margin: 15px 15px 10px 15px;
}

.page-slot-games__blog-card .page-slot-games__blog-link {
  text-decoration: none;
  color: #ff0000;
}

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

.page-slot-games__blog-card p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
  padding: 0 15px;
  flex-grow: 1;
}

.page-slot-games__blog-date {
  font-size: 12px;
  color: #999999;
  padding: 0 15px 15px 15px;
  display: block;
  margin-top: 10px;
}

/* General image and button responsive styles */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

.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%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__button-group,
.page-slot-games__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive styles for tablets (1024px and below) */
@media (max-width: 1024px) {
  .page-slot-games__heading {
    font-size: 28px;
  }

  .page-slot-games__sub-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-slot-games__games-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-slot-games__featured-game-image {
    height: 400px;
  }

  .page-slot-games__games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .page-slot-games__quick-links-section .page-slot-games__links-grid,
  .page-slot-games__core-games-section .page-slot-games__game-details-grid,
  .page-slot-games__promotions-section .page-slot-games__promo-grid,
  .page-slot-games__security-support-section .page-slot-games__features-grid,
  .page-slot-games__blog-section .page-slot-games__blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .page-slot-games__promo-card img {
    
  }

  .page-slot-games__game-detail-card img {
    
  }

  .page-slot-games__blog-card img {
    
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    padding: 10px 24px;
    font-size: 15px;
  }
}

/* Responsive styles for mobile (768px and below) */
@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games__hero-section {
    padding: 0 !important; /* shared handles body padding-top */
  }

  .page-slot-games__hero-image img {
    width: 100% !important;
    height: auto !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;
  }

  .page-slot-games__logo-item a {
    padding: 8px;
  }

  .page-slot-games__games-section {
    padding: 40px 15px;
  }

  .page-slot-games__heading {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .page-slot-games__sub-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .page-slot-games__featured-game-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .page-slot-games__featured-game-image {
    height: 300px;
  }

  .page-slot-games__games-tabs {
    gap: 15px;
    margin-bottom: 15px;
  }

  .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 10px 0;
    padding: 0 3px;
  }

  .page-slot-games__introduction-section,
  .page-slot-games__quick-links-section,
  .page-slot-games__core-games-section,
  .page-slot-games__promotions-section,
  .page-slot-games__security-support-section,
  .page-slot-games__faq-section,
  .page-slot-games__blog-section {
    padding: 40px 15px;
  }

  .page-slot-games__description {
    font-size: 15px;
  }

  .page-slot-games__button-group {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding: 0 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__button-group--center {
    padding: 0;
  }

  .page-slot-games__links-grid,
  .page-slot-games__game-details-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__features-grid,
  .page-slot-games__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__link-card,
  .page-slot-games__game-detail-card,
  .page-slot-games__promo-card,
  .page-slot-games__feature-item,
  .page-slot-games__blog-card {
    padding: 20px;
  }

  .page-slot-games__link-card h3,
  .page-slot-games__game-detail-card h3,
  .page-slot-games__promo-card h3,
  .page-slot-games__feature-item h3,
  .page-slot-games__blog-card h3 {
    font-size: 18px;
  }

  .page-slot-games__link-card p,
  .page-slot-games__game-detail-card p,
  .page-slot-games__promo-card p,
  .page-slot-games__feature-item p,
  .page-slot-games__blog-card p {
    font-size: 13px;
  }

  .page-slot-games__faq-question {
    padding: 15px;
  }

  .page-slot-games__faq-question h3 {
    font-size: 15px;
  }

  .page-slot-games__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .page-slot-games__faq-item.active .page-slot-games__faq-answer {
    padding: 15px !important;
  }

  .page-slot-games img:not(.page-slot-games__logo-item img) {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games__container {
    padding: 0;
  }

  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games__blog-card img {
    
  }
}