/* style/resources-2024-hot-games.css */

/* Base styles for the page content, ensuring proper spacing from the header */
.page-resources-2024-hot-games {
  color: #ffffff; /* Light text for dark body background */
  background-color: #0D0D0D; /* Inherited from body or set explicitly if needed for main container */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Hero Section */
.page-resources-2024-hot-games__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0; /* No padding here, image handles visual space */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

.page-resources-2024-hot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Slightly darken image for text readability, but not changing color */
}

.page-resources-2024-hot-games__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px; /* Constrain content width */
  margin: 0 auto;
  z-index: 2; /* Ensure content is above the image */
  padding: 80px 20px; /* Padding for content within the hero */
  text-align: center;
}

.page-resources-2024-hot-games__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-2024-hot-games__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold primary color for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-2024-hot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-2024-hot-games__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-2024-hot-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-resources-2024-hot-games__button--register {
  background-color: #FFD700; /* Gold primary color */
  color: #1A1A1A; /* Dark text for gold button */
  border: 2px solid #FFD700;
}

.page-resources-2024-hot-games__button--register:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-2024-hot-games__button--login {
  background-color: transparent;
  color: #FFD700; /* Gold text for dark background */
  border: 2px solid #FFD700;
}

.page-resources-2024-hot-games__button--login:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

/* Main Content Area */
.page-resources-2024-hot-games__content-area {
  max-width: 800px; /* Constrain content width for readability */
  margin: 0 auto;
  padding: 60px 20px;
}

.page-resources-2024-hot-games__return-link-wrapper {
  text-align: right;
  margin-bottom: 30px;
}

.page-resources-2024-hot-games__return-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-2024-hot-games__return-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-resources-2024-hot-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-2024-hot-games__sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-2024-hot-games__paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #f0f0f0; /* Slightly off-white for body text */
}

.page-resources-2024-hot-games__keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-resources-2024-hot-games__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-2024-hot-games__text-link:hover {
  text-decoration: underline;
  color: #e6c200;
}

.page-resources-2024-hot-games__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Minimum image width */
  min-height: 200px; /* Minimum image height */
}

/* Table of Contents */
.page-resources-2024-hot-games__table-of-contents {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  background-color: #1A1A1A; /* Dark auxiliary color for TOC background */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-2024-hot-games__table-of-contents li {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-2024-hot-games__table-of-contents li:last-child {
  border-bottom: none;
}

.page-resources-2024-hot-games__toc-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  display: block;
  transition: color 0.3s ease;
}

.page-resources-2024-hot-games__toc-link:hover {
  color: #e6c200;
}

/* Lists */
.page-resources-2024-hot-games__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-2024-hot-games__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* Final Call to Action */
.page-resources-2024-hot-games__final-cta {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-resources-2024-hot-games__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

.page-resources-2024-hot-games__button--large:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-2024-hot-games__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-resources-2024-hot-games__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

/* FAQ Section */
.page-resources-2024-hot-games__faq-item {
  background-color: #1A1A1A; /* Dark auxiliary color */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-2024-hot-games__faq-question {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer; /* Indicate interactivity */
}

.page-resources-2024-hot-games__faq-answer {
  color: #f0f0f0;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-2024-hot-games__hero-title {
    font-size: 3em;
  }
  .page-resources-2024-hot-games__hero-description {
    font-size: 1.2em;
  }
  .page-resources-2024-hot-games__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-2024-hot-games__hero-section {
    min-height: 400px;
  }
  .page-resources-2024-hot-games__hero-container {
    padding: 60px 15px;
  }
  .page-resources-2024-hot-games__hero-title {
    font-size: 2.5em;
  }
  .page-resources-2024-hot-games__hero-description {
    font-size: 1em;
  }
  .page-resources-2024-hot-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-2024-hot-games__button {
    min-width: unset;
    width: 100%;
    max-width: 300px; /* Limit button width on small screens */
    margin: 0 auto;
  }
  .page-resources-2024-hot-games__content-area {
    padding: 40px 15px;
  }
  .page-resources-2024-hot-games__section-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-resources-2024-hot-games__sub-section-title {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-resources-2024-hot-games__paragraph,
  .page-resources-2024-hot-games__list-item,
  .page-resources-2024-hot-games__faq-answer {
    font-size: 0.95em;
  }

  /* Mobile images must not overflow */
  .page-resources-2024-hot-games img {
    max-width: 100%;
    height: auto;
  }
  .page-resources-2024-hot-games__article-container {
    max-width: 100%; /* Ensure content area does not cause horizontal scroll */
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-resources-2024-hot-games__hero-title {
    font-size: 2em;
  }
  .page-resources-2024-hot-games__hero-description {
    font-size: 0.9em;
  }
  .page-resources-2024-hot-games__section-title {
    font-size: 1.8em;
  }
  .page-resources-2024-hot-games__sub-section-title {
    font-size: 1.4em;
  }
  .page-resources-2024-hot-games__button--large,
  .page-resources-2024-hot-games__button--secondary {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}