/* style/news-platform-maintenance-notice.css */
.page-news-platform-maintenance-notice {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

.page-news-platform-maintenance-notice__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-news-platform-maintenance-notice__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  z-index: 1;
}

.page-news-platform-maintenance-notice__hero-content-wrapper {
  position: relative; /* Not absolute, to ensure text is below image */
  z-index: 2;
  padding-top: 40px; /* Space between image and text */
  width: 100%;
}

.page-news-platform-maintenance-notice__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news-platform-maintenance-notice__description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-platform-maintenance-notice__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-news-platform-maintenance-notice__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-news-platform-maintenance-notice__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-news-platform-maintenance-notice__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #22C768; /* Auxiliary Color */
  border-radius: 2px;
}

.page-news-platform-maintenance-notice__content-area,
.page-news-platform-maintenance-notice__schedule-section,
.page-news-platform-maintenance-notice__impact-section,
.page-news-platform-maintenance-notice__support-section,
.page-news-platform-maintenance-notice__faq-section,
.page-news-platform-maintenance-notice__conclusion-section {
  padding: 60px 0;
}

.page-news-platform-maintenance-notice__text-block {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-news-platform-maintenance-notice__list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-news-platform-maintenance-notice__list-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(33% - 20px);
  min-width: 280px;
  max-width: 380px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-news-platform-maintenance-notice__list-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-news-platform-maintenance-notice__list-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-news-platform-maintenance-notice__list-content p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
}

.page-news-platform-maintenance-notice__schedule-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 700px;
  margin: 40px auto;
  border: 1px solid #2E7A4E; /* Border */
}

.page-news-platform-maintenance-notice__schedule-item {
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-news-platform-maintenance-notice__schedule-item strong {
  color: #2AD16F;
}

.page-news-platform-maintenance-notice__schedule-note {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-top: 25px;
  font-style: italic;
}

.page-news-platform-maintenance-notice__impact-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-news-platform-maintenance-notice__impact-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  border-left: 5px solid #2AD16F;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05rem;
}

.page-news-platform-maintenance-notice__impact-item strong {
  color: #F2FFF6; /* Text Main */
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.page-news-platform-maintenance-notice__recommendation-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-news-platform-maintenance-notice__recommendation-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-news-platform-maintenance-notice__recommendation-card p {
  color: #F2FFF6; /* Text Main */
  font-size: 1.05rem;
}

.page-news-platform-maintenance-notice__text-link {
  color: #57E38D; /* Glow */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-news-platform-maintenance-notice__text-link:hover {
  color: #2AD16F;
}

.page-news-platform-maintenance-notice__support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.page-news-platform-maintenance-notice__support-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-news-platform-maintenance-notice__support-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-news-platform-maintenance-notice__support-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-news-platform-maintenance-notice__support-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 25px;
}

.page-news-platform-maintenance-notice__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: transparent;
  color: #2AD16F; /* Button text color */
  border: 2px solid #2AD16F;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.page-news-platform-maintenance-notice__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6; /* Text Main */
}

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

.page-news-platform-maintenance-notice__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
}

.page-news-platform-maintenance-notice__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #1E3A2A; /* Divider */
  border-bottom: 1px solid #2E7A4E; /* Border */
  list-style: none; /* For details/summary */
}

.page-news-platform-maintenance-notice__faq-question::-webkit-details-marker {
  display: none;
}

.page-news-platform-maintenance-notice__faq-qtext {
  flex-grow: 1;
}

.page-news-platform-maintenance-notice__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-news-platform-maintenance-notice__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-news-platform-maintenance-notice__faq-item[open] .page-news-platform-maintenance-notice__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-news-platform-maintenance-notice__faq-item[open] .page-news-platform-maintenance-notice__faq-question {
  border-bottom: none;
}

.page-news-platform-maintenance-notice__conclusion-section .page-news-platform-maintenance-notice__text-block {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-platform-maintenance-notice__conclusion-section .page-news-platform-maintenance-notice__cta-button {
  margin-top: 30px;
}

/* Dark background sections */
.page-news-platform-maintenance-notice__dark-section {
  background-color: #0A4B2C; /* Deep Green */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news-platform-maintenance-notice__list-item {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .page-news-platform-maintenance-notice {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news-platform-maintenance-notice__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-platform-maintenance-notice__hero-section {
    padding-bottom: 40px;
  }

  .page-news-platform-maintenance-notice__hero-content-wrapper {
    padding-top: 20px;
  }

  .page-news-platform-maintenance-notice__main-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .page-news-platform-maintenance-notice__description {
    font-size: 1rem;
  }

  .page-news-platform-maintenance-notice__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news-platform-maintenance-notice__section-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-news-platform-maintenance-notice__content-area,
  .page-news-platform-maintenance-notice__schedule-section,
  .page-news-platform-maintenance-notice__impact-section,
  .page-news-platform-maintenance-notice__support-section,
  .page-news-platform-maintenance-notice__faq-section,
  .page-news-platform-maintenance-notice__conclusion-section {
    padding: 40px 0;
  }

  .page-news-platform-maintenance-notice__list-item {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px;
  }

  .page-news-platform-maintenance-notice__list-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .page-news-platform-maintenance-notice__list-title {
    font-size: 1.3rem;
  }

  .page-news-platform-maintenance-notice__schedule-card {
    padding: 30px;
    margin: 30px auto;
  }

  .page-news-platform-maintenance-notice__impact-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news-platform-maintenance-notice__impact-item {
    padding: 20px;
    font-size: 1rem;
  }

  .page-news-platform-maintenance-notice__impact-item strong {
    font-size: 1.1rem;
  }

  .page-news-platform-maintenance-notice__recommendation-card {
    padding: 25px;
  }

  .page-news-platform-maintenance-notice__recommendation-title {
    font-size: 1.4rem;
  }

  .page-news-platform-maintenance-notice__support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news-platform-maintenance-notice__support-item {
    padding: 25px;
  }

  .page-news-platform-maintenance-notice__support-image {
    max-width: 250px;
  }

  .page-news-platform-maintenance-notice__support-title {
    font-size: 1.3rem;
  }

  .page-news-platform-maintenance-notice__btn-secondary {
    padding: 10px 20px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news-platform-maintenance-notice__faq-question {
    font-size: 1.1rem;
    padding: 18px 20px;
  }

  .page-news-platform-maintenance-notice__faq-toggle {
    font-size: 1.5rem;
  }

  .page-news-platform-maintenance-notice__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  /* Mobile specific image and container rules */
  .page-news-platform-maintenance-notice img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-news-platform-maintenance-notice__section,
  .page-news-platform-maintenance-notice__card,
  .page-news-platform-maintenance-notice__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons in mobile */
  .page-news-platform-maintenance-notice__cta-button,
  .page-news-platform-maintenance-notice__btn-primary,
  .page-news-platform-maintenance-notice__btn-secondary,
  .page-news-platform-maintenance-notice a[class*="button"],
  .page-news-platform-maintenance-notice a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-news-platform-maintenance-notice__cta-buttons,
  .page-news-platform-maintenance-notice__button-group,
  .page-news-platform-maintenance-notice__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-news-platform-maintenance-notice__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}