.page-resources-latest-updates {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a1a; /* Inherited from body, but set for clarity */
}

.page-resources-latest-updates__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-latest-updates__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
  color: #ffffff;
  background-color: #000000; /* Use auxiliary color for hero background */
}

.page-resources-latest-updates__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.page-resources-latest-updates__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-latest-updates__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-resources-latest-updates__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FF0000; /* Brand color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-resources-latest-updates__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #FF0000; /* Brand color for section titles */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-updates__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #cccccc;
}

.page-resources-latest-updates__news-section,
.page-resources-latest-updates__gaming-news-section,
.page-resources-latest-updates__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Consistent dark background */
  color: #ffffff;
}

.page-resources-latest-updates__news-grid,
.page-resources-latest-updates__game-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-latest-updates__news-card,
.page-resources-latest-updates__game-card {
  background-color: #2a2a2a; /* Slightly lighter dark for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-latest-updates__news-card:hover,
.page-resources-latest-updates__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-updates__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-resources-latest-updates__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-resources-latest-updates__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FF0000; /* Brand color for card titles */
}

.page-resources-latest-updates__card-title a {
  color: #FF0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-latest-updates__card-title a:hover {
  color: #ff3333;
}

.page-resources-latest-updates__card-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-latest-updates__read-more-link {
  display: inline-block;
  color: #FF0000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-latest-updates__read-more-link:hover {
  color: #ff3333;
}

.page-resources-latest-updates__promotions-highlight,
.page-resources-latest-updates__security-section,
.page-resources-latest-updates__cta-section {
  padding: 80px 0;
  background-color: #000000; /* Auxiliary color for highlight sections */
  color: #ffffff;
  text-align: center;
}

.page-resources-latest-updates__promo-content,
.page-resources-latest-updates__security-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-latest-updates__promo-content.reverse {
  flex-direction: row-reverse;
}

.page-resources-latest-updates__promo-image,
.page-resources-latest-updates__security-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-updates__promo-details,
.page-resources-latest-updates__security-details {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.page-resources-latest-updates__promo-subtitle {
  font-size: 1.8em;
  color: #FF0000;
  margin-bottom: 20px;
}

.page-resources-latest-updates__promo-list,
.page-resources-latest-updates__security-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-latest-updates__promo-list li,
.page-resources-latest-updates__security-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #f0f0f0;
  position: relative;
  padding-left: 25px;
}

.page-resources-latest-updates__promo-list li::before,
.page-resources-latest-updates__security-list li::before {
  content: '✔';
  color: #FF0000;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-resources-latest-updates__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-latest-updates__faq-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FF0000; /* Brand color for FAQ questions */
  cursor: pointer;
  background-color: #3a3a3a;
  border-bottom: 1px solid #444;
  transition: background-color 0.3s ease;
}

.page-resources-latest-updates__faq-question:hover {
  background-color: #4a4a4a;
}

.page-resources-latest-updates__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-latest-updates__faq-item.active .page-resources-latest-updates__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-latest-updates__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #cccccc;
  background-color: #2a2a2a;
}

.page-resources-latest-updates__faq-item.active .page-resources-latest-updates__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px 25px;
}

.page-resources-latest-updates__faq-answer p {
  margin: 0;
}

.page-resources-latest-updates__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-resources-latest-updates__btn-primary,
.page-resources-latest-updates__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-updates__btn-primary {
  background-color: #FF0000;
  color: #ffffff;
  border: 2px solid #FF0000;
}

.page-resources-latest-updates__btn-primary:hover {
  background-color: #cc0000;
  border-color: #cc0000;
}

.page-resources-latest-updates__btn-secondary {
  background-color: transparent;
  color: #FF0000;
  border: 2px solid #FF0000;
}

.page-resources-latest-updates__btn-secondary:hover {
  background-color: #FF0000;
  color: #ffffff;
}

/* Image and video responsive styles */
.page-resources-latest-updates img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-resources-latest-updates video,
.page-resources-latest-updates__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-resources-latest-updates__video-section,
.page-resources-latest-updates__video-container,
.page-resources-latest-updates__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-resources-latest-updates__hero-title {
    font-size: 2.5em;
  }

  .page-resources-latest-updates__hero-description {
    font-size: 1em;
  }

  .page-resources-latest-updates__section-title {
    font-size: 2em;
  }

  .page-resources-latest-updates__section-description {
    font-size: 0.95em;
  }

  .page-resources-latest-updates__news-grid,
  .page-resources-latest-updates__game-news-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-latest-updates__promo-content,
  .page-resources-latest-updates__security-content {
    flex-direction: column;
    text-align: center;
  }

  .page-resources-latest-updates__promo-image,
  .page-resources-latest-updates__security-image {
    max-width: 100%;
  }

  .page-resources-latest-updates__promo-details,
  .page-resources-latest-updates__security-details {
    max-width: 100%;
    padding: 0;
  }

  .page-resources-latest-updates__promo-list,
  .page-resources-latest-updates__security-list {
    text-align: left;
  }

  .page-resources-latest-updates__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-latest-updates__btn-primary,
  .page-resources-latest-updates__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-latest-updates img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-latest-updates video,
  .page-resources-latest-updates__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-latest-updates__section,
  .page-resources-latest-updates__card,
  .page-resources-latest-updates__container,
  .page-resources-latest-updates__video-section,
  .page-resources-latest-updates__video-container,
  .page-resources-latest-updates__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-resources-latest-updates__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}