/* style/news-sic-bo-game-updates.css */
:root {
  --primary-color: #1A2B4C;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0a0a0a;
  --bg-light-card: #ffffff;
  --bg-section-light: #f1f3f5;
}

.page-news-sic-bo-game-updates {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
}

.page-news-sic-bo-game-updates__intro-section {
  padding: 120px 20px 60px;
  text-align: center;
  background: var(--primary-color);
  color: var(--text-light);
}

.page-news-sic-bo-game-updates__main-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

.page-news-sic-bo-game-updates__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-sic-bo-game-updates__highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-news-sic-bo-game-updates__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-news-sic-bo-game-updates__content-section {
  padding: 60px 20px;
  background: var(--bg-section-light);
  color: var(--text-dark);
}

.page-news-sic-bo-game-updates__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-news-sic-bo-game-updates__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-news-sic-bo-game-updates__card {
  background: var(--bg-light-card);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

.page-news-sic-bo-game-updates__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news-sic-bo-game-updates__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-news-sic-bo-game-updates__card-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 5px;
}

.page-news-sic-bo-game-updates__card-text {
  font-size: 16px;
  margin-bottom: 10px;
}

.page-news-sic-bo-game-updates__promo-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color), #122240);
  color: var(--text-light);
  text-align: center;
}

.page-news-sic-bo-game-updates__promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-sic-bo-game-updates__promo-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: background-color 0.3s ease;
}

.page-news-sic-bo-game-updates__promo-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-news-sic-bo-game-updates__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-news-sic-bo-game-updates__promo-description {
  font-size: 16px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-news-sic-bo-game-updates__promo-description a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-news-sic-bo-game-updates__promo-description a:hover {
  color: #fff;
}

.page-news-sic-bo-game-updates__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news-sic-bo-game-updates__cta-button:hover {
  background: #f0c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-news-sic-bo-game-updates__blog-section {
  padding: 60px 20px;
  background: var(--bg-section-light);
  color: var(--text-dark);
}

.page-news-sic-bo-game-updates__article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-sic-bo-game-updates__article-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-light-card);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-sic-bo-game-updates__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news-sic-bo-game-updates__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-news-sic-bo-game-updates__article-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news-sic-bo-game-updates__article-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-news-sic-bo-game-updates__article-summary {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news-sic-bo-game-updates__article-date {
  font-size: 13px;
  color: #777;
  text-align: right;
}

.page-news-sic-bo-game-updates__faq-section {
  padding: 60px 20px;
  background: var(--primary-color);
  color: var(--text-light);
}

.page-news-sic-bo-game-updates__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-news-sic-bo-game-updates__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-news-sic-bo-game-updates__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: var(--text-dark);
}

.page-news-sic-bo-game-updates__faq-item.active .page-news-sic-bo-game-updates__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: var(--bg-light-card);
  border-radius: 0 0 5px 5px;
}

.page-news-sic-bo-game-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--bg-light-card);
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-dark);
}

.page-news-sic-bo-game-updates__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-news-sic-bo-game-updates__faq-question:active {
  background: #eeeeee;
}

.page-news-sic-bo-game-updates__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-news-sic-bo-game-updates__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-news-sic-bo-game-updates__faq-item.active .page-news-sic-bo-game-updates__faq-toggle {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-sic-bo-game-updates__main-title {
    font-size: 32px;
  }
  .page-news-sic-bo-game-updates__section-title {
    font-size: 28px;
  }
  .page-news-sic-bo-game-updates__card-title {
    font-size: 20px;
  }
  .page-news-sic-bo-game-updates__promo-title {
    font-size: 20px;
  }
  .page-news-sic-bo-game-updates__article-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-news-sic-bo-game-updates__intro-section {
    padding-top: 100px !important; /* Mobile padding-top to clear fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news-sic-bo-game-updates__content-section,
  .page-news-sic-bo-game-updates__promo-section,
  .page-news-sic-bo-game-updates__blog-section,
  .page-news-sic-bo-game-updates__faq-section {
    padding: 40px 15px;
  }
  .page-news-sic-bo-game-updates__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news-sic-bo-game-updates__main-title {
    font-size: 28px;
  }
  .page-news-sic-bo-game-updates__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-news-sic-bo-game-updates__text-block {
    font-size: 15px;
  }
  .page-news-sic-bo-game-updates__card,
  .page-news-sic-bo-game-updates__promo-item,
  .page-news-sic-bo-game-updates__article-card {
    padding: 20px;
  }
  .page-news-sic-bo-game-updates__card-image,
  .page-news-sic-bo-game-updates__image,
  .page-news-sic-bo-game-updates__article-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news-sic-bo-game-updates__card-title {
    font-size: 18px;
  }
  .page-news-sic-bo-game-updates__promo-title {
    font-size: 18px;
  }
  .page-news-sic-bo-game-updates__promo-description {
    font-size: 14px;
  }
  .page-news-sic-bo-game-updates__cta-button {
    padding: 10px 20px;
    font-size: 14px;
    white-space: normal;
    word-wrap: break-word;
  }
  .page-news-sic-bo-game-updates__article-title {
    font-size: 16px;
  }
  .page-news-sic-bo-game-updates__article-summary {
    font-size: 13px;
  }
  .page-news-sic-bo-game-updates__faq-question {
    padding: 15px;
  }
  .page-news-sic-bo-game-updates__faq-question h3 {
    font-size: 16px;
  }
  .page-news-sic-bo-game-updates__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-news-sic-bo-game-updates__faq-item.active .page-news-sic-bo-game-updates__faq-answer {
    padding: 15px !important;
  }
}