/* style/resources-latest-gameplay-analysis.css */

/* Base Styles for the page content */
.page-resources-latest-gameplay-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

/* Hero Section */
.page-resources-latest-gameplay-analysis__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure hero is below fixed header */
  box-sizing: border-box;
}

.page-resources-latest-gameplay-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-latest-gameplay-analysis__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-latest-gameplay-analysis__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-resources-latest-gameplay-analysis__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-latest-gameplay-analysis__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-latest-gameplay-analysis__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styles */
.page-resources-latest-gameplay-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-latest-gameplay-analysis__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-resources-latest-gameplay-analysis__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for dark body background */
  text-align: justify;
}

/* Dark Background Sections */
.page-resources-latest-gameplay-analysis__dark-bg {
  background-color: #1a1a2e; /* Inherited from body, but explicitly set for sections for clarity */
  color: #ffffff;
  padding: 80px 0;
}

/* Light Background Sections (for cards within dark sections) */
.page-resources-latest-gameplay-analysis__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

/* Buttons */
.page-resources-latest-gameplay-analysis__btn-primary,
.page-resources-latest-gameplay-analysis__btn-secondary,
.page-resources-latest-gameplay-analysis__btn-register,
.page-resources-latest-gameplay-analysis a[class*="button"],
.page-resources-latest-gameplay-analysis a[class*="btn"] {
  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;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
}

.page-resources-latest-gameplay-analysis__btn-primary {
  background-color: #017439; /* Brand primary color */
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-resources-latest-gameplay-analysis__btn-primary:hover {
  background-color: #005f2c;
  border-color: #005f2c;
}

.page-resources-latest-gameplay-analysis__btn-secondary {
  background-color: #FFFFFF;
  color: #017439; /* Brand primary color for text */
  border: 2px solid #017439;
}

.page-resources-latest-gameplay-analysis__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005f2c;
  border-color: #005f2c;
}

/* Custom button styles for Register/Login */
.page-resources-latest-gameplay-analysis__btn-register {
  background-color: #C30808; /* Custom red for register */
  color: #FFFF00; /* Custom yellow for register text */
  border: 2px solid #C30808;
}

.page-resources-latest-gameplay-analysis__btn-register:hover {
  background-color: #a30606;
  border-color: #a30606;
}

/* Card Styles */
.page-resources-latest-gameplay-analysis__feature-card,
.page-resources-latest-gameplay-analysis__step-card,
.page-resources-latest-gameplay-analysis__strategy-card,
.page-resources-latest-gameplay-analysis__game-card,
.page-resources-latest-gameplay-analysis__promo-card,
.page-resources-latest-gameplay-analysis__security-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards on dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}

.page-resources-latest-gameplay-analysis__feature-card.page-resources-latest-gameplay-analysis__light-bg,
.page-resources-latest-gameplay-analysis__strategy-card.page-resources-latest-gameplay-analysis__light-bg,
.page-resources-latest-gameplay-analysis__promo-card.page-resources-latest-gameplay-analysis__light-bg {
  background-color: #FFFFFF; /* White background for specific cards */
  color: #333333;
}

.page-resources-latest-gameplay-analysis__card-title {
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #017439; /* Brand primary color for card titles */
  font-weight: bold;
}

.page-resources-latest-gameplay-analysis__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-resources-latest-gameplay-analysis__card-title a:hover {
  text-decoration: underline;
}

/* Image Styles (Global for page content) */
.page-resources-latest-gameplay-analysis img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  /* No filter properties to change color */
}

/* Specific Image Styles for cards */
.page-resources-latest-gameplay-analysis__feature-icon {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 15px;
}
.page-resources-latest-gameplay-analysis__strategy-image,
.page-resources-latest-gameplay-analysis__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Grid Layouts */
.page-resources-latest-gameplay-analysis__features-grid,
.page-resources-latest-gameplay-analysis__steps-grid,
.page-resources-latest-gameplay-analysis__strategy-grid,
.page-resources-latest-gameplay-analysis__game-cards,
.page-resources-latest-gameplay-analysis__promo-cards,
.page-resources-latest-gameplay-analysis__security-points {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-resources-latest-gameplay-analysis__features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-resources-latest-gameplay-analysis__steps-grid,
.page-resources-latest-gameplay-analysis__promo-cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-resources-latest-gameplay-analysis__strategy-grid,
.page-resources-latest-gameplay-analysis__game-cards {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-resources-latest-gameplay-analysis__security-points {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 20px;
}

/* CTA Full Width */
.page-resources-latest-gameplay-analysis__cta-full {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: rgba(1, 116, 57, 0.1); /* Light tint of brand color */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-gameplay-analysis__cta-full p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-resources-latest-gameplay-analysis__cta-section .page-resources-latest-gameplay-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-resources-latest-gameplay-analysis__faq-section {
  padding: 80px 0;
  background-color: #1a1a2e; /* Ensure consistency with body background */
  color: #ffffff;
}

.page-resources-latest-gameplay-analysis__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-gameplay-analysis__faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-resources-latest-gameplay-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(1, 116, 57, 0.1); /* Slight brand color tint for question */
  transition: background-color 0.3s ease;
}

.page-resources-latest-gameplay-analysis__faq-question:hover {
  background-color: rgba(1, 116, 57, 0.2);
}

.page-resources-latest-gameplay-analysis__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
}