/* style/game-strategies.css */

/* Base Styles & Typography (for .page-game-strategies) */
.page-game-strategies {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-game-strategies h1, .page-game-strategies h2, .page-game-strategies h3 {
  color: #26A9E0; /* Primary brand color for headings */
  margin-bottom: 1em;
}

.page-game-strategies h1 {
  font-size: 2.8em;
  text-align: center;
  line-height: 1.2;
}

.page-game-strategies h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 1.5em;
}

.page-game-strategies h3 {
  font-size: 1.6em;
}

.page-game-strategies p {
  margin-bottom: 1em;
  color: #f0f0f0; /* Slightly off-white for paragraphs on dark background */
}

.page-game-strategies__paragraph {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #f0f0f0;
}

.page-game-strategies__section-title {
  color: #26A9E0;
  margin-bottom: 1.5em;
}

/* Section Styling */
.page-game-strategies__section {
  padding: 60px 20px;
  text-align: center;
}

.page-game-strategies__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter than body for contrast, but still dark */
  color: #ffffff;
}

.page-game-strategies__light-bg {
  background-color: #1a1a1a; /* Dark gray for "light" sections on a very dark body */
  color: #f0f0f0;
}

/* Hero Section */
.page-game-strategies__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.page-game-strategies__hero-content {
  max-width: 900px;
  z-index: 10;
  padding: 20px;
  position: relative;
}

.page-game-strategies__main-title {
  font-size: 3.2em;
  color: #FFFFFF;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-strategies__lead-paragraph {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 2em;
  line-height: 1.8;
  text-align: center;
}

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

.page-game-strategies__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
  display: block;
}

/* CTA Buttons */
.page-game-strategies__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  z-index: 10;
  position: relative;
}

.page-game-strategies__btn-primary,
.page-game-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}