/* style/resources-79king-5-popular-game-strategies-tips.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #017439; /* Using brand primary as dark background */
  --button-register-bg: #C30808;
  --button-login-bg: #C30808;
  --button-text-color: #FFFF00;
}

.page-resources-79king-5-popular-game-strategies-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: var(--background-light); /* Default body background is light */
}

.page-resources-79king-5-popular-game-strategies-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-79king-5-popular-game-strategies-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  overflow: hidden;
  color: var(--text-light);
}

.page-resources-79king-5-popular-game-strategies-tips__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-79king-5-popular-game-strategies-tips__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-79king-5-popular-game-strategies-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.page-resources-79king-5-popular-game-strategies-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-79king-5-popular-game-strategies-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-resources-79king-5-popular-game-strategies-tips__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-79king-5-popular-game-strategies-tips__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-79king-5-popular-game-strategies-tips__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}