/* style/blog-game-strategies.css */

/* Base styles for the page content */
.page-blog-game-strategies {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #f5f5f5; /* Light background for readability */
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-blog-game-strategies__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 80px 20px;
  overflow: hidden;
  min-height: 500px;
}

.page-blog-game-strategies__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-game-strategies__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-game-strategies__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

.page-blog-game-strategies__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-blog-game-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold primary color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-game-strategies__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-blog-game-strategies__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #8B0000; /* Deep red secondary color for text */
  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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-game-strategies__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #6a0000;
}

/* General Section Styles */
.page-blog-game-strategies__introduction-section,
.page-blog-game-strategies__strategy-section,
.page-blog-game-strategies__responsible-gambling-section,
.page-blog-game-strategies__cta-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-blog-game-strategies__introduction-section {
  background-color: #ffffff;
}

.page-blog-game-strategies__strategy-section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-blog-game-strategies__strategy-section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-blog-game-strategies__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep red secondary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-game-strategies__subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold primary color */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #8B0000;
  padding-left: 15px;
}

.page-blog-game-strategies__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444444;
}

.page-blog-game-strategies__strategy-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* Specific CTA for large button */
.page-blog-game-strategies__cta-button--large {
  font-size: 1.4em;
  padding: 18px 35px;
  margin-top: 30px;
}

.page-blog-game-strategies__link-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.page-blog-game-strategies__link-button:hover {
  background-color: #a00000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-game-strategies__hero-title {
    font-size: 3em;
  }
  .page-blog-game-strategies__hero-description {
    font-size: 1.2em;
  }
  .page-blog-game-strategies__section-title {
    font-size: 2em;
  }
  .page-blog-game-strategies__subsection-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-strategies__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-blog-game-strategies__hero-title {
    font-size: 2.5em;
  }
  .page-blog-game-strategies__hero-description {
    font-size: 1.1em;
  }
  .page-blog-game-strategies__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-game-strategies__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-game-strategies__subsection-title {
    font-size: 1.3em;
    margin-top: 30px;
  }
  .page-blog-game-strategies__paragraph {
    font-size: 1em;
  }
  .page-blog-game-strategies__strategy-image {
    margin: 30px auto;
    max-width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
  }
  .page-blog-game-strategies__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-blog-game-strategies__hero-section {
    padding: 40px 10px;
    min-height: 350px;
  }
  .page-blog-game-strategies__hero-title {
    font-size: 2em;
  }
  .page-blog-game-strategies__hero-description {
    font-size: 0.95em;
  }
  .page-blog-game-strategies__section-title {
    font-size: 1.5em;
  }
  .page-blog-game-strategies__subsection-title {
    font-size: 1.2em;
  }
  .page-blog-game-strategies__container {
    padding: 0 15px;
  }
  .page-blog-game-strategies__strategy-image {
    border-radius: 8px;
  }
  .page-blog-game-strategies__cta-button,
  .page-blog-game-strategies__link-button {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Ensure content images are not too small */
.page-blog-game-strategies img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon):not(.shared-footer__game-provider-icon) {
  min-width: 200px;
  min-height: 200px;
}

/* Mobile content area images must be responsive */
@media (max-width: 768px) {
  .page-blog-game-strategies img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon):not(.shared-footer__game-provider-icon) {
    max-width: 100%;
    height: auto;
  }
  .page-blog-game-strategies {
    overflow-x: hidden;
  }
}