.page-news-go99-event-announcement {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-news-go99-event-announcement__hero {
  background: linear-gradient(135deg, #0A6847 0%, #0A6847 60%, #FFD700 100%);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-news-go99-event-announcement__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-news-go99-event-announcement__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title on dark green background */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-go99-event-announcement__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #fff;
}

.page-news-go99-event-announcement__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A6847; /* Dark green text on gold button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news-go99-event-announcement__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-news-go99-event-announcement__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.15;
  z-index: 0;
  max-width: 500px;
}

.page-news-go99-event-announcement__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-news-go99-event-announcement__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-news-go99-event-announcement__section:nth-of-type(even) {
  background-color: #eaf5f0; /* Light green tint for alternating sections */
}

.page-news-go99-event-announcement__section-title {
  font-size: 2.5em;
  color: #0A6847; /* Dark green for section titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news-go99-event-announcement__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-go99-event-announcement__event-grid,
.page-news-go99-event-announcement__promo-cards,
.page-news-go99-event-announcement__why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news-go99-event-announcement__event-card,
.page-news-go99-event-announcement__promo-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.page-news-go99-event-announcement__event-card:hover,
.page-news-go99-event-announcement__promo-card:hover {
  transform: translateY(-10px);
}

.page-news-go99-event-announcement__event-image,
.page-news-go99-event-announcement__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-news-go99-event-announcement__event-title,
.page-news-go99-event-announcement__promo-title {
  font-size: 1.5em;
  color: #0A6847;
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-news-go99-event-announcement__event-date,
.page-news-go99-event-announcement__event-description,
.page-news-go99-event-announcement__promo-description {
  color: #666;
  padding: 0 20px 15px;
  font-size: 0.95em;
}

.page-news-go99-event-announcement__event-button,
.page-news-go99-event-announcement__promo-button {
  display: block;
  background-color: #FFD700; /* Gold button */
  color: #0A6847; /* Dark green text on gold button */
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.page-news-go99-event-announcement__event-button:hover,
.page-news-go99-event-announcement__promo-button:hover {
  background-color: #e6c200;
}

.page-news-go99-event-announcement__how-to-participate .page-news-go99-event-announcement__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-news-go99-event-announcement__step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.page-news-go99-event-announcement__step-card:hover {
  transform: translateY(-5px);
}

.page-news-go99-event-announcement__step-number {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background-color: #0A6847; /* Dark green number background */
  color: #FFD700; /* Gold number text */
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-news-go99-event-announcement__step-title {
  font-size: 1.3em;
  color: #0A6847;
  margin-bottom: 10px;
}

.page-news-go99-event-announcement__step-description {
  color: #666;
  font-size: 0.95em;
}

.page-news-go99-event-announcement__step-description a {
  color: #0A6847;
  text-decoration: underline;
  font-weight: bold;
}

.page-news-go99-event-announcement__step-description a:hover {
  color: #FFD700;
}

.page-news-go99-event-announcement__callout-box {
  background-color: #0A6847;
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.page-news-go99-event-announcement__callout-text {
  font-size: 1.2em;
  margin: 0;
  color: #fff;
}

.page-news-go99-event-announcement__callout-button {
  background-color: #FFD700;
  color: #0A6847;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-news-go99-event-announcement__callout-button:hover {
  background-color: #e6c200;
}

.page-news-go99-event-announcement__why-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-news-go99-event-announcement__why-item:hover {
  transform: translateY(-5px);
}

.page-news-go99-event-announcement__why-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-news-go99-event-announcement__why-title {
  font-size: 1.4em;
  color: #0A6847;
  margin-bottom: 10px;
}

.page-news-go99-event-announcement__why-description {
  color: #666;
  font-size: 0.95em;
}

.page-news-go99-event-announcement__faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.page-news-go99-event-announcement__faq-question {
  font-size: 1.2em;
  color: #0A6847;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-news-go99-event-announcement__faq-answer {
  color: #555;
  font-size: 1em;
  padding-left: 15px;
  border-left: 3px solid #FFD700;
  margin-top: 15px;
}

.page-news-go99-event-announcement__faq-answer a {
  color: #0A6847;
  text-decoration: underline;
  font-weight: bold;
}

.page-news-go99-event-announcement__faq-answer a:hover {
  color: #FFD700;
}

.page-news-go99-event-announcement__cta-bottom {
  padding-bottom: 80px;
}

.page-news-go99-event-announcement__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-news-go99-event-announcement__cta-button--primary {
  background-color: #0A6847; /* Dark green button */
  color: #FFD700; /* Gold text */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-news-go99-event-announcement__cta-button--primary:hover {
  background-color: #14805c; /* Lighter green on hover */
}

.page-news-go99-event-announcement__cta-button--secondary {
  background-color: #FFD700; /* Gold button */
  color: #0A6847; /* Dark green text */
  border: 2px solid #0A6847;
}

.page-news-go99-event-announcement__cta-button--secondary:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-news-go99-event-announcement__hero {
    flex-direction: column;
    padding: 60px 15px;
  }

  .page-news-go99-event-announcement__title {
    font-size: 2.5em;
  }

  .page-news-go99-event-announcement__subtitle {
    font-size: 1.1em;
  }

  .page-news-go99-event-announcement__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin-top: 30px;
    opacity: 0.3;
  }

  .page-news-go99-event-announcement__section {
    padding: 40px 15px;
  }

  .page-news-go99-event-announcement__section-title {
    font-size: 2em;
  }

  .page-news-go99-event-announcement__event-grid,
  .page-news-go99-event-announcement__promo-cards,
  .page-news-go99-event-announcement__why-list,
  .page-news-go99-event-announcement__how-to-participate .page-news-go99-event-announcement__steps {
    grid-template-columns: 1fr;
  }

  .page-news-go99-event-announcement__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news-go99-event-announcement__callout-box {
    padding: 20px;
  }

  .page-news-go99-event-announcement__callout-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-news-go99-event-announcement__title {
    font-size: 2em;
  }

  .page-news-go99-event-announcement__section-title {
    font-size: 1.8em;
  }

  .page-news-go99-event-announcement__cta-button {
    width: 100%;
  }
}