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

.page-game-strategies__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  background-color: #000000; /* Main color for hero background if image isn't full bleed */
}

.page-game-strategies__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-game-strategies__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-game-strategies__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  padding: 20px;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-game-strategies__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-strategies__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-game-strategies__download-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-strategies__download-button:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-game-strategies__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-game-strategies__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-game-strategies__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-game-strategies__why-strategy-section, .page-game-strategies__general-strategies-section, .page-game-strategies__specific-strategies-section, .page-game-strategies__live-dealer-section, .page-game-strategies__arena-plus-advantage-section, .page-game-strategies__responsible-gaming-section, .page-game-strategies__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-game-strategies__why-strategy-section {
  background-color: #f9f9f9;
}

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

.page-game-strategies__benefit-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-strategies__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-strategies__benefit-image {
  width: 100%;
  height: 267px; /* Enforce minimum height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-game-strategies__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-game-strategies__card-text {
  font-size: 1em;
  color: #666666;
}

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

.page-game-strategies__strategy-card {
  background-color: #f0f0f0;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-strategies__game-strategy-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.page-game-strategies__game-strategy-card--reverse {
  flex-direction: row-reverse;
}

.page-game-strategies__game-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-game-strategies__game-content {
  flex: 1;
}

.page-game-strategies__live-dealer-list, .page-game-strategies__advantage-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-strategies__list-item {
  background-color: #f0f0f0;
  border-left: 4px solid #000000;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-strategies__list-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-game-strategies__list-text {
  color: #666666;
}

.page-game-strategies__cta-banner {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #000000;
  border-radius: 10px;
  padding: 40px;
  margin-top: 60px;
  color: #FFFFFF;
}

.page-game-strategies__cta-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-game-strategies__cta-content {
  flex: 1;
}

.page-game-strategies__cta-title {
  font-size: 2.2em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-game-strategies__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-game-strategies__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-strategies__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-game-strategies__responsible-gaming-section {
  background-color: #f0f0f0;
}

.page-game-strategies__support-link {
  display: block;
  text-align: center;
  margin-top: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-game-strategies__support-link:hover {
  color: #FCBC45;
}

.page-game-strategies__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-game-strategies__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-game-strategies__faq-answer {
  color: #666666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-strategies__main-title {
    font-size: 2.5em;
  }

  .page-game-strategies__intro-text {
    font-size: 1.1em;
  }

  .page-game-strategies__game-strategy-card {
    flex-direction: column;
    gap: 20px;
  }

  .page-game-strategies__game-strategy-card--reverse {
    flex-direction: column;
  }

  .page-game-strategies__game-image {
    max-width: 100%;
  }

  .page-game-strategies__cta-banner {
    flex-direction: column;
    gap: 20px;
  }

  .page-game-strategies__cta-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-strategies {
    padding-top: var(--header-offset, 120px);
  }
  .page-game-strategies__hero-section {
    min-height: 400px;
  }
  .page-game-strategies__hero-content {
    padding: 15px;
  }
  .page-game-strategies__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-game-strategies__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-game-strategies__download-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-strategies__content-area {
    padding: 20px 15px;
  }
  .page-game-strategies__section-title {
    font-size: 2em;
  }
  .page-game-strategies__section-description {
    font-size: 0.95em;
  }
  .page-game-strategies__benefit-card, .page-game-strategies__strategy-card, .page-game-strategies__list-item, .page-game-strategies__faq-item {
    padding: 20px;
  }
  .page-game-strategies__card-title, .page-game-strategies__list-title, .page-game-strategies__faq-question {
    font-size: 1.3em;
  }
  .page-game-strategies__card-text, .page-game-strategies__list-text, .page-game-strategies__faq-answer {
    font-size: 0.9em;
  }
  .page-game-strategies__cta-title {
    font-size: 1.8em;
  }
  .page-game-strategies__cta-text {
    font-size: 1em;
  }
  .page-game-strategies__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  /* Mobile overflow prevention */
  .page-game-strategies img {
    max-width: 100%;
    height: auto;
  }
  .page-game-strategies__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-game-strategies__benefit-image,
  .page-game-strategies__game-image,
  .page-game-strategies__cta-image {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Ensure images scale down */
    height: auto;
  }
}