:root {
  --primary-color: #0A192F; /* Dark blue */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212; /* Inherited from body */
  --bg-light-card: rgba(255, 255, 255, 0.1); /* Slightly transparent white for cards on dark background */
  --border-color: rgba(255, 255, 255, 0.2);
}

.page-resources {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Main text color for dark body background */
  background-color: var(--bg-dark); /* Ensure consistency, though inherited from body */
  line-height: 1.6;
}

/* Hero Section */
.page-resources__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); /* Ensure content is not hidden by fixed header */
  background: linear-gradient(135deg, var(--primary-color) 0%, #000000 100%); /* Dark gradient for depth */
  overflow: hidden; /* Prevent image overflow */
}

.page-resources__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-resources__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.page-resources__hero-image img:hover {
  transform: translateY(-5px);
}

.page-resources__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-resources__hero-title {
  font-size: 3.2em;
  color: var(--secondary-color); /* Gold title for impact */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-resources__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color); /* Gold button */
  color: var(--primary-color); /* Dark blue text on gold */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-resources__cta-button:hover {
  background: var(--text-light); /* White hover */
  color: var(--primary-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* General Section Styling */
.page-resources__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.page-resources__section-title {
  font-size: 2.5em;
  color: var(--secondary-color); /* Gold titles */
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-resources__section-description {
  font-size: 1.1em;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Guide Cards Section */
.page-resources__game-guides {
  background-color: var(--primary-color); /* Dark blue background for this section */
}

.page-resources__guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}