:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Deep Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --dark-bg-1: #0d0d0d; /* Assuming a dark body background from shared.css */
  --dark-bg-2: #1a1a1a;
}

/* Base styles for the page content, accounting for fixed header */
.page-game-strategy-guides {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for the page, assuming dark body bg */
  background-color: var(--dark-bg-1); /* Inherit or explicitly set for consistency */
}

.page-game-strategy-guides__hero-section {
  position: relative;
  padding: 120px 20px 80px; /* Adjusted padding-top for fixed header */
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 100%);
  color: var(--text-light);
  overflow: hidden;
}

.page-game-strategy-guides__main-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-strategy-guides__hero-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-game-strategy-guides__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-strategy-guides__cta-group--center {
  margin-top: 40px;
}

.page-game-strategy-guides__btn-primary,
.page-game-strategy-guides__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategy-guides__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-dark);
  border: 2px solid var(--primary-color);
}

.page-game-strategy-guides__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-strategy-guides__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-game-strategy-guides__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-game-strategy-guides__section {
  padding: 60px 0;
}

.page-game-strategy-guides__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-game-strategy-guides__dark-bg {
  background-color: var(--dark-bg-2);
  color: var(--text-light);
}

.page-game-strategy-guides__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-strategy-guides__light-bg .page-game-strategy-guides__section-title {
  color: var(--secondary-color);
  text-shadow: none;
}

.page-game-strategy-guides__sub-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: left;
}

.page-game-strategy-guides__light-bg .page-game-strategy-guides__sub-title {
  color: var(--secondary-color);
}

.page-game-strategy-guides__content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}

.page-game-strategy-guides__content-block p,
.page-game-strategy-guides__content-block ul {
  flex: 1;
  min-width: 300px;
}

.page-game-strategy-guides__content-block--reverse {
  flex-direction: row-reverse;
}

.page-game-strategy-guides__image--full-width {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  display: block;
}

.page-game-strategy-guides__image--left,
.page-game-strategy-guides__image--right {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  display: block;
}

.page-game-strategy-guides__image--left {
  margin-right: 30px;
}

.page-game-strategy-guides__image--right {
  margin-left: 30px;
}

.page-game-strategy-guides__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: inherit;
}

.page-game-strategy-guides__list li {
  margin-bottom: 10px;
  color: inherit;
}

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

.page-game-strategy-guides__card {
  background-color: var(--dark-bg-1);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-strategy-guides__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-game-strategy-guides__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-game-strategy-guides__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-game-strategy-guides__card p {
  font-size: 0.95em;
  color: #f0f0f0;
}

/* Link styling */
.page-game-strategy-guides a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-strategy-guides a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-game-strategy-guides__light-bg a {
  color: var(--secondary-color);
}

.page-game-strategy-guides__light-bg a:hover {
  color: #a00000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategy-guides__main-title {
    font-size: 2.8em;
  }
  .page-game-strategy-guides__section-title {
    font-size: 2em;
  }
  .page-game-strategy-guides__sub-title {
    font-size: 1.8em;
  }
  .page-game-strategy-guides__content-block {
    flex-direction: column;
  }
  .page-game-strategy-guides__image--left,
  .page-game-strategy-guides__image--right {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-strategy-guides__hero-section {
    padding: 100px 15px 60px; /* Mobile padding-top for fixed header */
  }
  .page-game-strategy-guides__main-title {
    font-size: 2.2em;
  }
  .page-game-strategy-guides__hero-description {
    font-size: 1em;
  }
  .page-game-strategy-guides__section {
    padding: 40px 0;
  }
  .page-game-strategy-guides__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-strategy-guides__sub-title {
    font-size: 1.5em;
    text-align: center;
  }
  .page-game-strategy-guides__content-block {
    margin-bottom: 40px;
    gap: 20px;
  }
  .page-game-strategy-guides__content-block p, 
  .page-game-strategy-guides__content-block ul {
    min-width: unset;
  }
  .page-game-strategy-guides__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  /* Responsive Images */
  .page-game-strategy-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-strategy-guides__image--full-width,
  .page-game-strategy-guides__image--left,
  .page-game-strategy-guides__image--right,
  .page-game-strategy-guides__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important; /* Allow height to adjust */
    object-fit: contain; /* Ensure image content is fully visible */
  }
  
  /* Responsive Buttons */
  .page-game-strategy-guides__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-strategy-guides__btn-primary,
  .page-game-strategy-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  
  .page-game-strategy-guides__card {
    padding: 20px;
  }
  .page-game-strategy-guides__card-title {
    font-size: 1.3em;
  }
  .page-game-strategy-guides__list {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-game-strategy-guides__main-title {
    font-size: 1.8em;
  }
  .page-game-strategy-guides__section-title {
    font-size: 1.5em;
  }
  .page-game-strategy-guides__sub-title {
    font-size: 1.3em;
  }
  .page-game-strategy-guides__hero-description {
    font-size: 0.9em;
  }
}