.page-news {
  color: #FFF6D6; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #0A0A0A; /* Body background */
}

.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A0A0A; /* Consistent with body */
  overflow: hidden; /* Ensure no image overflow */
}

.page-news__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width within max-width */
}

.page-news__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-news__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(242, 193, 78, 0.5); /* Glow effect */
}

.page-news__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-news__hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font-size */
  color: #FFD36B; /* Accent color for H1 */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
}

.page-news__hero-content p {
  font-size: 1.1rem;
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
  border: none;
  cursor: pointer;
}

.page-news__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-news__cta-button--secondary {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #3A2A12;
  margin-left: 15px;
  box-shadow: none;
}

.page-news__cta-button--secondary:hover {
  background: #222222;
  color: #F2C14E;
  border-color: #F2C14E;
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-news__cta-button--tertiary {
  background: transparent;
  color: #FFF6D6;
  border: 2px solid #3A2A12;
  margin-left: 15px;
  box-shadow: none;
}

.page-news__cta-button--tertiary:hover {
  background: rgba(255, 211, 107, 0.1);
  border-color: #FFD36B;
  color: #FFD36B;
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-news__section {
  padding: 50px 0;
  background-color: #0A0A0A;
}

.page-news__section:nth-of-type(even) {
  background-color: #111111; /* Card BG color for alternating sections */
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news__section h2 {
  font-size: 2.5rem;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-news__section h3 {
  font-size: 1.8rem;
  color: #FFD36B;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-news__section p {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 15px;
}

.page-news__section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-news__section ul li {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-news__section ul li::before {
  content: '⚡'; /* Unicode lightning bolt */
  color: #FFD36B;
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-news__article-card {
  background-color: #111111; /* Card BG color */
  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;
  border: 1px solid #3A2A12; /* Border color */
}

.page-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.3);
}

.page-news__article-card a {
  text-decoration: none;
  color: inherit;
}

.page-news__article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #3A2A12;
}

.page-news__article-card h3 {
  font-size: 1.3rem;
  color: #F2C14E;
  padding: 15px 20px 10px;
  margin-top: 0;
  line-height: 1.4;
}

.page-news__article-card p {
  font-size: 0.95rem;
  color: #FFF6D6;
  padding: 0 20px 15px;
}

.page-news__article-card time {
  display: block;
  font-size: 0.85rem;
  color: #FFD36B;
  padding: 0 20px 10px;
}

.page-news__read-more {
  display: inline-block;
  font-size: 0.9rem;
  color: #FFD36B;
  text-decoration: none;
  padding: 0 20px 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #F2C14E;
  text-decoration: underline;
}

.page-news__view-all {
  text-align: center;
  margin-top: 50px;
}

.page-news__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

/* FAQ Section */
.page-news__faq-section {
  background-color: #111111; /* Card BG color */
  padding: 60px 0;
}

.page-news__faq-list {
  margin-top: 40px;
}

details.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border color */
  overflow: hidden;
  background: #0A0A0A; /* Darker background for FAQ item */
}
details.page-news__faq-item summary.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  background-color: #111111; /* Card BG color for question header */
}
details.page-news__faq-item summary.page-news__faq-question::-webkit-details-marker {
  display: none;
}
details.page-news__faq-item summary.page-news__faq-question:hover {
  background: #222222;
  border-color: #F2C14E;
}
.page-news__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B; /* Accent color for question text */
}
.page-news__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFF6D6; /* Light color for toggle icon */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}
details.page-news__faq-item[open] .page-news__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to form cross */
}
details.page-news__faq-item .page-news__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A; /* Body BG color for answer content */
  border-radius: 0 0 5px 5px;
  color: #FFF6D6;
}

.page-news__call-to-action {
  text-align: center;
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-news__call-to-action h2 {
  color: #F2C14E;
  margin-bottom: 20px;
}

.page-news__call-to-action p {
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
  font-size: 1.1rem;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Global image styles */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-news__section h2 {
    font-size: 2rem;
  }
  .page-news__article-card img {
    
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-news__hero-image img {
    border-radius: 4px;
  }
  
  .page-news__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0;
  }

  .page-news__cta-button + .page-news__cta-button {
    margin-top: 15px;
  }

  .page-news__cta-group,
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news__container {
    padding: 0 15px;
  }

  .page-news__section {
    padding: 30px 0;
  }

  .page-news__section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-news__section h3 {
    font-size: 1.5rem;
  }

  .page-news__section p,
  .page-news__section ul li,
  .page-news__article-card p,
  .page-news__article-card time {
    font-size: 0.9rem;
  }

  .page-news__article-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news__article-card img {
    
  }

  .page-news__article-card h3 {
    font-size: 1.2rem;
    padding: 12px 15px 8px;
  }

  .page-news__article-card p {
    padding: 0 15px 12px;
  }

  .page-news__article-card time {
    padding: 0 15px 8px;
  }

  .page-news__read-more {
    padding: 0 15px 15px;
  }

  details.page-news__faq-item summary.page-news__faq-question { padding: 15px; }
  .page-news__faq-qtext { font-size: 15px; }
  details.page-news__faq-item .page-news__faq-answer { padding: 0 15px 15px; }

  /* Mobile image overrides */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-news__section,
  .page-news__card,
  .page-news__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Content area images minimum size check */
  .page-news__article-card img,
  .page-news__game-updates img,
  .page-news__strategies-guides img,
  .page-news__promotions-events img,
  .page-news__industry-insights img {
      min-width: 200px;
      min-height: 200px;
  }
}