.page-game-strategy-center-slots-strategy {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-game-strategy-center-slots-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-strategy-center-slots-strategy__hero-section {
  position: relative;
  background-color: #0A2E36; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.page-game-strategy-center-slots-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-game-strategy-center-slots-strategy__hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.page-game-strategy-center-slots-strategy__hero-content {
  max-width: 800px;
}

.page-game-strategy-center-slots-strategy__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-strategy-center-slots-strategy__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-game-strategy-center-slots-strategy__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-game-strategy-center-slots-strategy__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-game-strategy-center-slots-strategy__button--primary {
  background-color: #FFD700;
  color: #0A2E36;
  border: 2px solid #FFD700;
}

.page-game-strategy-center-slots-strategy__button--primary:hover {
  background-color: #e6c200;
  color: #0A2E36;
  transform: translateY(-2px);
}

.page-game-strategy-center-slots-strategy__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-strategy-center-slots-strategy__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2E36;
  transform: translateY(-2px);
}

.page-game-strategy-center-slots-strategy__section-title {
  font-size: 2.5em;
  color: #0A2E36;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-strategy-center-slots-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-strategy-center-slots-strategy__section-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-strategy-center-slots-strategy__introduction-section {
  padding: 60px 0;
  background-color: #fcfcfc;
}

.page-game-strategy-center-slots-strategy__strategy-overview {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-game-strategy-center-slots-strategy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-strategy-center-slots-strategy__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-strategy-center-slots-strategy__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-game-strategy-center-slots-strategy__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-strategy-center-slots-strategy__card-title {
  font-size: 1.6em;
  color: #0A2E36;
  margin-bottom: 15px;
}

.page-game-strategy-center-slots-strategy__card-text {
  font-size: 1em;
  color: #555555;
}

.page-game-strategy-center-slots-strategy__bankroll-management {
  padding: 60px 0;
  background-color: #e8e8e8;
}

.page-game-strategy-center-slots-strategy__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-strategy-center-slots-strategy__list-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-game-strategy-center-slots-strategy__list-title {
  font-size: 1.4em;
  color: #0A2E36;
  margin-bottom: 10px;
}

.page-game-strategy-center-slots-strategy__list-text {
  font-size: 1em;
  color: #555555;
}

.page-game-strategy-center-slots-strategy__button--cta {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #0A2E36;
  color: #FFD700;
  border: 2px solid #0A2E36;
}

.page-game-strategy-center-slots-strategy__button--cta:hover {
  background-color: #072027;
  color: #FFD700;
}

.page-game-strategy-center-slots-strategy__advanced-tips {
  padding: 60px 0;
  background-color: #fcfcfc;
}

.page-game-strategy-center-slots-strategy__grid--two-columns {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-game-strategy-center-slots-strategy__tip-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-strategy-center-slots-strategy__tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-game-strategy-center-slots-strategy__tip-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-strategy-center-slots-strategy__tip-title {
  font-size: 1.8em;
  color: #0A2E36;
  margin-bottom: 15px;
}

.page-game-strategy-center-slots-strategy__tip-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-game-strategy-center-slots-strategy__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
  background-color: #FFD700;
  color: #0A2E36;
  border: 2px solid #FFD700;
  margin-top: 15px;
}

.page-game-strategy-center-slots-strategy__button--small:hover {
  background-color: #e6c200;
  color: #0A2E36;
}

.page-game-strategy-center-slots-strategy__faq-section {
  padding: 60px 0;
  background-color: #e8e8e8;
}

.page-game-strategy-center-slots-strategy__faq-accordion {
  margin-top: 30px;
}

.page-game-strategy-center-slots-strategy__accordion-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-game-strategy-center-slots-strategy__accordion-header {
  width: 100%;
  background-color: #0A2E36;
  color: #ffffff;
  padding: 20px 30px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-game-strategy-center-slots-strategy__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-strategy-center-slots-strategy__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-strategy-center-slots-strategy__accordion-content {
  padding: 0 30px;
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-game-strategy-center-slots-strategy__accordion-content p {
  padding: 20px 0;
  color: #555555;
}

.page-game-strategy-center-slots-strategy__cta-section {
  padding: 80px 0;
  background-color: #0A2E36;
  color: #ffffff;
  text-align: center;
}

.page-game-strategy-center-slots-strategy__cta-section .page-game-strategy-center-slots-strategy__section-title {
  color: #FFD700;
}

.page-game-strategy-center-slots-strategy__cta-section .page-game-strategy-center-slots-strategy__section-title::after {
  background-color: #FFD700;
}

.page-game-strategy-center-slots-strategy__cta-section .page-game-strategy-center-slots-strategy__section-paragraph {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-strategy-center-slots-strategy__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategy-center-slots-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-game-strategy-center-slots-strategy__section-title {
    font-size: 2em;
  }
  .page-game-strategy-center-slots-strategy__grid--two-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-game-strategy-center-slots-strategy__hero-section {
    padding: 60px 0;
  }
  .page-game-strategy-center-slots-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-game-strategy-center-slots-strategy__hero-description {
    font-size: 1.1em;
  }
  .page-game-strategy-center-slots-strategy__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-strategy-center-slots-strategy__button {
    width: 80%;
    max-width: 300px;
  }
  .page-game-strategy-center-slots-strategy__section-title {
    font-size: 1.8em;
  }
  .page-game-strategy-center-slots-strategy__card-title {
    font-size: 1.4em;
  }
  .page-game-strategy-center-slots-strategy__tip-title {
    font-size: 1.6em;
  }
  .page-game-strategy-center-slots-strategy__card-image, 
  .page-game-strategy-center-slots-strategy__tip-image {
    height: 200px; /* Ensure minimum height */
    max-width: 100%; /* Prevent overflow */
  }
  .page-game-strategy-center-slots-strategy__container {
    padding: 0 15px;
  }
  /* Ensure all content images are responsive and do not overflow */
  .page-game-strategy-center-slots-strategy img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-game-strategy-center-slots-strategy__hero-title {
    font-size: 1.8em;
  }
  .page-game-strategy-center-slots-strategy__hero-description {
    font-size: 1em;
  }
  .page-game-strategy-center-slots-strategy__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-strategy-center-slots-strategy__section-title {
    font-size: 1.6em;
  }
  .page-game-strategy-center-slots-strategy__card, .page-game-strategy-center-slots-strategy__tip-card {
    padding: 20px;
  }
  .page-game-strategy-center-slots-strategy__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-game-strategy-center-slots-strategy__accordion-content p {
    padding: 15px 0;
  }
}