.page-news-platform-updates {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8; /* Light background for the page content */
}

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

/* Hero Section */
.page-news-platform-updates__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #FFD700; /* Primary brand color */
  color: #ffffff; /* White text for primary background */
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
}

.page-news-platform-updates__hero-content {
  max-width: 800px;
  z-index: 10;
}

.page-news-platform-updates__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff; /* White text for primary background */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news-platform-updates__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news-platform-updates__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-news-platform-updates__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle overlay */
}

/* General Section Styling */
.page-news-platform-updates__section {
  padding: 60px 0;
}

.page-news-platform-updates__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Secondary brand color for titles */
  text-align: center;
  margin-bottom: 40px;
}

.page-news-platform-updates__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-news-platform-updates__highlight {
  color: #8B0000;
  font-weight: bold;
}

/* Buttons */
.page-news-platform-updates__btn-primary,
.page-news-platform-updates__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-news-platform-updates__btn-primary {
  background-color: #8B0000; /* Secondary brand color */
  color: #ffffff;
  border: 2px solid #8B0000;
}

.page-news-platform-updates__btn-primary:hover {
  background-color: #FFD700; /* Primary brand color on hover */
  border-color: #FFD700;
  color: #8B0000;
}

.page-news-platform-updates__btn-secondary {
  background-color: #ffffff;
  color: #8B0000;
  border: 2px solid #8B0000;
}

.page-news-platform-updates__btn-secondary:hover {
  background-color: #8B0000;
  color: #ffffff;
}

/* Features Grid */
.page-news-platform-updates__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-platform-updates__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333333;
}

.page-news-platform-updates__feature-card:hover {
  transform: translateY(-10px);
}

.page-news-platform-updates__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

.page-news-platform-updates__card-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-news-platform-updates__card-description {
  font-size: 1em;
  color: #555555;
}

/* Security Section */
.page-news-platform-updates__security {
  background-color: #8B0000; /* Secondary brand color as background */
  color: #ffffff;
  padding: 80px 0;
}

.page-news-platform-updates__security .page-news-platform-updates__section-title {
  color: #FFD700; /* Primary brand color for title on dark background */
}

.page-news-platform-updates__security .page-news-platform-updates__text-block {
  color: #f0f0f0;
}

.page-news-platform-updates__security .page-news-platform-updates__highlight {
  color: #FFD700;
}

.page-news-platform-updates__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-news-platform-updates__security-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
}

.page-news-platform-updates__security-item .page-news-platform-updates__item-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-news-platform-updates__security-item p {
  color: #f0f0f0;
}

.page-news-platform-updates__security-banner {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

/* Promotions List */
.page-news-platform-updates__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-news-platform-updates__promo-list li {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-news-platform-updates__list-item-title {
  font-size: 1.2em;
  color: #8B0000;
  margin-bottom: 10px;
}

/* Mobile Experience */
.page-news-platform-updates__mobile-experience {
  background-color: #f0f0f0;
}

.page-news-platform-updates__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-news-platform-updates__mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-news-platform-updates__mobile-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-news-platform-updates__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

/* Community Section */
.page-news-platform-updates__community-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-platform-updates__community-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  color: #333333;
}

.page-news-platform-updates__community-item .page-news-platform-updates__item-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 15px;
}

/* How to Enjoy Section */
.page-news-platform-updates__how-to-enjoy {
  background-color: #8B0000; /* Secondary brand color */
  color: #ffffff;
  padding: 80px 0;
}

.page-news-platform-updates__how-to-enjoy .page-news-platform-updates__section-title {
  color: #FFD700;
}

.page-news-platform-updates__how-to-enjoy .page-news-platform-updates__text-block {
  color: #f0f0f0;
}

.page-news-platform-updates__how-to-enjoy .page-news-platform-updates__highlight {
  color: #FFD700;
}

.page-news-platform-updates__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-news-platform-updates__steps-list li {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-news-platform-updates__steps-list .page-news-platform-updates__list-item-title {
  color: #FFD700;
}

/* Video Section */
.page-news-platform-updates__video-section {
  background-color: #f8f8f8;
  padding: 60px 0;
  text-align: center;
}

.page-news-platform-updates__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-news-platform-updates__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

/* FAQ Section */
.page-news-platform-updates__faq {
  padding: 60px 0;
}

.page-news-platform-updates__faq-list {
  margin-top: 40px;
}

.page-news-platform-updates__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-news-platform-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #8B0000;
  cursor: pointer;
  background-color: #fdfdfd;
  transition: background-color 0.3s ease;
}

.page-news-platform-updates__faq-question:hover {
  background-color: #f5f5f5;
}

.page-news-platform-updates__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.page-news-platform-updates__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-news-platform-updates__faq-item.active .page-news-platform-updates__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

/* Conclusion Section */
.page-news-platform-updates__conclusion {
  background-color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-platform-updates__hero-title {
    font-size: 2.8em;
  }

  .page-news-platform-updates__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-news-platform-updates__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding: 60px 15px 30px;
  }

  .page-news-platform-updates__hero-title {
    font-size: 2.2em;
  }

  .page-news-platform-updates__hero-description {
    font-size: 1.1em;
  }

  .page-news-platform-updates__section {
    padding: 40px 0;
  }

  .page-news-platform-updates__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-news-platform-updates__text-block {
    font-size: 1em;
  }

  .page-news-platform-updates__btn-primary,
  .page-news-platform-updates__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin-bottom: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-news-platform-updates__features-grid,
  .page-news-platform-updates__security-features,
  .page-news-platform-updates__community-features {
    grid-template-columns: 1fr;
  }

  .page-news-platform-updates__mobile-content {
    flex-direction: column;
  }

  .page-news-platform-updates__mobile-text, 
  .page-news-platform-updates__mobile-image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-news-platform-updates__hero-image,
  .page-news-platform-updates__feature-image,
  .page-news-platform-updates__security-banner,
  .page-news-platform-updates__mobile-image,
  .page-news-platform-updates img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Enforce min size */
    min-height: 200px !important; /* Enforce min size */
    object-fit: cover;
  }

  .page-news-platform-updates__section,
  .page-news-platform-updates__card,
  .page-news-platform-updates__container,
  .page-news-platform-updates__video-section,
  .page-news-platform-updates__video-container,
  .page-news-platform-updates__video-wrapper,
  .page-news-platform-updates__cta-buttons,
  .page-news-platform-updates__button-group,
  .page-news-platform-updates__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-news-platform-updates video,
  .page-news-platform-updates__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news-platform-updates__video-wrapper {
    padding-bottom: 56.25% !important; /* Maintain aspect ratio */
    margin-top: 30px;
  }

  .page-news-platform-updates__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-news-platform-updates__faq-answer {
    padding: 15px;
  }

  .page-news-platform-updates__promo-list li,
  .page-news-platform-updates__steps-list li,
  .page-news-platform-updates__community-item,
  .page-news-platform-updates__feature-card,
  .page-news-platform-updates__security-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-news-platform-updates__hero-title {
    font-size: 1.8em;
  }

  .page-news-platform-updates__hero-description {
    font-size: 0.95em;
  }

  .page-news-platform-updates__section-title {
    font-size: 1.5em;
  }

  .page-news-platform-updates__card-title {
    font-size: 1.3em;
  }

  .page-news-platform-updates__item-title {
    font-size: 1.2em;
  }
}