.page-acb888-news {
  color: #ffffff;
  background-color: #0a0a0a;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-acb888-news__section-title {
  font-size: 36px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

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

/* Buttons */
.page-acb888-news__btn-primary,
.page-acb888-news__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-acb888-news__btn-primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

.page-acb888-news__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-acb888-news__btn-secondary {
  background-color: #003366;
  color: #ffffff;
  border: 2px solid #003366;
}

.page-acb888-news__btn-secondary:hover {
  background-color: #002244;
  border-color: #002244;
  transform: translateY(-2px);
}

/* Hero Section (News Page Specific) */
.page-acb888-news__hero-section {
  position: relative;
  width: 100%;
  padding-top: 100px; /* Adjust for fixed header */
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(135deg, #003366, #001a33);
  color: #ffffff;
}

.page-acb888-news__hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-acb888-news__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-acb888-news__hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-acb888-news__hero-button {
  margin-top: 20px;
}

/* Categories Section */
.page-acb888-news__categories-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.page-acb888-news__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-acb888-news__category-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.page-acb888-news__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-acb888-news__category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-acb888-news__category-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  padding: 0 15px;
}

/* Articles Section */
.page-acb888-news__articles-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

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

.page-acb888-news__article-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-acb888-news__article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-acb888-news__article-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-acb888-news__article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-acb888-news__article-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-acb888-news__article-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-acb888-news__article-link:hover {
  color: #e6c200;
}

.page-acb888-news__article-summary {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-acb888-news__article-date {
  font-size: 14px;
  color: #999999;
  margin-bottom: 20px;
  display: block;
}

.page-acb888-news__read-more-button {
  align-self: flex-start;
}

/* Call to Action Section */
.page-acb888-news__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #003366, #001a33);
  text-align: center;
  color: #ffffff;
}

.page-acb888-news__cta-title {
  font-size: 38px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-acb888-news__cta-description {
  font-size: 18px;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.page-acb888-news__cta-button {
  margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-acb888-news__hero-title {
    font-size: 42px;
  }

  .page-acb888-news__section-title {
    font-size: 32px;
  }

  .page-acb888-news__article-title {
    font-size: 22px;
  }

  .page-acb888-news__cta-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .page-acb888-news__hero-section {
    padding-top: 80px; /* Adjusted for mobile fixed header */
    padding-bottom: 40px;
  }

  .page-acb888-news__hero-title {
    font-size: 36px;
  }

  .page-acb888-news__hero-description {
    font-size: 16px;
  }

  .page-acb888-news__section-title {
    font-size: 28px;
  }

  .page-acb888-news__categories-section,
  .page-acb888-news__articles-section,
  .page-acb888-news__cta-section {
    padding: 60px 0;
  }

  .page-acb888-news__category-grid,
  .page-acb888-news__articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-acb888-news__category-card img {
    height: 180px;
  }

  .page-acb888-news__category-title {
    font-size: 20px;
  }

  .page-acb888-news__article-card img {
    height: 200px;
  }

  .page-acb888-news__article-title {
    font-size: 20px;
  }

  .page-acb888-news__article-summary {
    font-size: 15px;
  }

  .page-acb888-news__cta-title {
    font-size: 28px;
  }

  .page-acb888-news__cta-description {
    font-size: 16px;
  }

  /* Mobile button responsiveness */
  .page-acb888-news__btn-primary,
  .page-acb888-news__btn-secondary,
  .page-acb888-news a[class*="button"],
  .page-acb888-news a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-acb888-news__hero-button,
  .page-acb888-news__cta-button {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .page-acb888-news__read-more-button {
    width: 100%;
  }

  /* Image responsiveness */
  .page-acb888-news img {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
  }

  .page-acb888-news__container,
  .page-acb888-news__hero-container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}