.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #121212; /* Inherited from body */
}

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

.page-slot-games__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for sections */
  color: #ffffff;
}

.page-slot-games__light-bg {
  background-color: #2a2a2a; /* Dark gray for contrast, still dark */
  color: #ffffff;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  margin-top: 0;
  overflow: hidden;
}

.page-slot-games__hero-container {
  position: relative;
  margin: 0 auto;
  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;
}

/* Products Section (Gameshow) */
.page-slot-games__products-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #121212; /* Match body background */
}

.page-slot-games__products-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 2fr; /* Desktop: First 4 take 4 parts, next 2 take 2 parts */
  gap: 20px;
}

.page-slot-games__products-grid {
  display: grid;
  gap: 20px;
}

.page-slot-games__products-grid--small {
  grid-template-columns: repeat(4, 1fr);
}

.page-slot-games__products-grid--large {
  grid-template-columns: repeat(2, 1fr);
}

.page-slot-games__product-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent white for dark bg */
  border: 3px solid #FFD700; /* Golden border */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-slot-games__product-card-image {
  width: 100%;
  height: 250px; /* Reference height, will be overridden by aspect-ratio on mobile */
  overflow: hidden;
}

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

/* General Section Styling */
.page-slot-games__section-title {
  font-size: 3em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-slot-games__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Intro Section */
.page-slot-games__intro-section {
  padding: 80px 20px;
}

.page-slot-games__main-title {
  font-size: 3.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

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

.page-slot-games__grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slot-games__feature-item {
  background-color: rgba(255, 255, 255, 0.08); /* Darker semi-transparent white */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-slot-games__feature-item:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.12);
}

.page-slot-games__feature-item img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Make icons round */
  border: 3px solid #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-slot-games__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games__feature-item p {
  font-size: 1em;
  color: #e0e0e0;
}

/* Quick Access Section */
.page-slot-games__quick-access-section {
  padding: 80px 20px;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-slot-games__btn-primary {
  background-color: #FFD700;
  color: #1a1a1a; /* Dark text for golden button */
  border: 2px solid #FFD700;
}

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

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

.page-slot-games__btn-secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-slot-games__backup-info {
  color: #cccccc;
  text-align: center;
  margin-top: 30px;
  font-size: 0.95em;
}

/* Game Types Section (Tabs) */
.page-slot-games__game-types-section {
  padding: 80px 20px;
}

.page-slot-games__game-tabs {
  margin-top: 40px;
}

.page-slot-games__tab-header {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.page-slot-games__tab-button {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.05em;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-slot-games__tab-button:hover {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-slot-games__tab-button.active {
  background-color: #FFD700;
  color: #1a1a1a;
  border-color: #FFD700;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5);
}

.page-slot-games__tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slot-games__tab-content.active {
  display: grid;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-slot-games__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 20px; /* Space for button */
}

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

.page-slot-games__game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-slot-games__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-slot-games__game-card p {
  font-size: 0.95em;
  color: #e0e0e0;
  padding: 0 20px 20px 20px;
}

.page-slot-games__game-card-button {
  margin-top: auto; /* Push button to bottom */
}

/* Promotions Section */
.page-slot-games__promotions-section {
  padding: 80px 20px;
}

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

.page-slot-games__promotion-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 20px;
}

.page-slot-games__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__promotion-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-slot-games__promotion-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-slot-games__promotion-card p {
  font-size: 0.95em;
  color: #e0e0e0;
  padding: 0 20px 20px 20px;
}

/* Security & Support Section */
.page-slot-games__security-support-section {
  padding: 80px 20px;
}

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

.page-slot-games__info-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-slot-games__info-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.12);
}

.page-slot-games__info-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-slot-games__info-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games__info-card p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-slot-games__contact-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

/* FAQ Section */
.page-slot-games__faq-section {
  padding: 80px 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;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.08); /* Darker semi-transparent white */
  border-radius: 0 0 5px 5px;
  color: #e0e0e0;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background-color: rgba(255, 255, 255, 0.12); /* Lighter semi-transparent white */
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #FFD700;
}

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

.page-slot-games__faq-question:active {
  background-color: rgba(255, 255, 255, 0.18);
}

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

.page-slot-games__faq-toggle {
  font-size: 24px;
  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: 28px;
  height: 28px;
}

.page-slot-games__faq-item.active .page-slot-games__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg); /* Rotate to form an 'X' or '-' */
}

/* News & Tips Section */
.page-slot-games__news-tips-section {
  padding: 80px 20px;
}

.page-slot-games__article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__article-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 20px;
}