/* style/resources-bty-6150-com-popular-game-strategies.css */

/* Custom CSS Variables for Brand Colors */
:root {
  --primary-color: #0A2342; /* Deep Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f8f8f8;
  --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-resources-bty-6150-com-popular-game-strategies {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark); /* Default dark text on light body background */
  line-height: 1.6;
  background-color: #ffffff; /* Explicitly set for clarity, though body is default white */
}

/* Sections */
.page-resources-bty-6150-com-popular-game-strategies__section {
  padding: 60px 0;
  overflow: hidden; /* Prevent content overflow */
}

.page-resources-bty-6150-com-popular-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-bty-6150-com-popular-game-strategies__container--center {
  text-align: center;
}

.page-resources-bty-6150-com-popular-game-strategies__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-resources-bty-6150-com-popular-game-strategies__section-title--light {
  color: var(--text-color-light);
}

.page-resources-bty-6150-com-popular-game-strategies__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-bty-6150-com-popular-game-strategies__text-block--light {
  color: var(--text-color-light);
}

/* Hero Section */
.page-resources-bty-6150-com-popular-game-strategies__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, var(--primary-color), #0A2342); /* Dark blue gradient */
  color: var(--text-color-light);
}

.page-resources-bty-6150-com-popular-game-strategies__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}