/* General styles for the page scope */
.page-how-to-win-gcash-in-tongits-go {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
  padding-top: 10px; /* Small decorative padding, relying on body padding-top for header offset */
}

/* Section styling */
.page-how-to-win-gcash-in-tongits-go__hero-section,
.page-how-to-win-gcash-in-tongits-go__strategy-section,
.page-how-to-win-gcash-in-tongits-go__tips-section,
.page-how-to-win-gcash-in-tongits-go__avoid-mistakes-section,
.page-how-to-win-gcash-in-tongits-go__faq-section,
.page-how-to-win-gcash-in-tongits-go__final-cta-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Hero Section */
.page-how-to-win-gcash-in-tongits-go__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #0a1f44; /* Dark blue background */
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-how-to-win-gcash-in-tongits-go__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-how-to-win-gcash-in-tongits-go__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background */
  display: block; /* Ensure no extra space below image */
}

.page-how-to-win-gcash-in-tongits-go__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-how-to-win-gcash-in-tongits-go__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffcc00; /* Gold color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-how-to-win-gcash-in-tongits-go__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-how-to-win-gcash-in-tongits-go__hero-button,
.page-how-to-win-gcash-in-tongits-go__cta-button,
.page-how-to-win-gcash-in-tongits-go__final-cta-button {
  display: inline-block;
  background-color: #ffcc00; /* Gold button */
  color: #0a1f44; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-how-to-win-gcash-in-tongits-go__hero-button:hover,
.page-how-to-win-gcash-in-tongits-go__cta-button:hover,
.page-how-to-win-gcash-in-tongits-go__final-cta-button:hover {
  background-color: #e6b800; /* Darker gold on hover */
  transform: translateY(-2px);
}

/* Section Titles */
.page-how-to-win-gcash-in-tongits-go__section-title {
  font-size: 2em;
  color: #0a1f44;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-how-to-win-gcash-in-tongits-go__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #ffcc00;
  border-radius: 2px;
}

/* Content Wrapper for text and image */
.page-how-to-win-gcash-in-tongits-go__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-how-to-win-gcash-in-tongits-go__text-block {
  font-size: 1.1em;
  text-align: justify;
  max-width: 800px;
}

.page-how-to-win-gcash-in-tongits-go__image-card {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 15px;
  box-sizing: border-box;
}

.page-how-to-win-gcash-in-tongits-go__image-item {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Tips Grid */
.page-how-to-win-gcash-in-tongits-go__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-how-to-win-gcash-in-tongits-go__tip-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-how-to-win-gcash-in-tongits-go__tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-how-to-win-gcash-in-tongits-go__tip-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
  display: block;
}

.page-how-to-win-gcash-in-tongits-go__tip-title {
  font-size: 1.3em;
  color: #0a1f44;
  margin-bottom: 10px;
}

.page-how-to-win-gcash-in-tongits-go__tip-description {
  font-size: 0.95em;
  color: #555;
  text-align: justify;
}

/* Call to Action Block */
.page-how-to-win-gcash-in-tongits-go__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #0a1f44;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-how-to-win-gcash-in-tongits-go__cta-text {
  font-size: 1.4em;
  margin-bottom: 25px;
  color: #e0e0e0;
}

/* Mistakes List */
.page-how-to-win-gcash-in-tongits-go__mistakes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-how-to-win-gcash-in-tongits-go__mistakes-item {
  background-color: #ffffff;
  border-left: 5px solid #ffcc00;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-how-to-win-gcash-in-tongits-go__mistakes-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.page-how-to-win-gcash-in-tongits-go__mistakes-title {
  font-size: 1.2em;
  color: #0a1f44;
  margin-bottom: 10px;
}

.page-how-to-win-gcash-in-tongits-go__mistakes-description {
  font-size: 0.95em;
  color: #666;
}

/* FAQ Section */
.page-how-to-win-gcash-in-tongits-go__faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-how-to-win-gcash-in-tongits-go__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-how-to-win-gcash-in-tongits-go__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  user-select: none;
}

.page-how-to-win-gcash-in-tongits-go__faq-question:hover {
  background-color: #e8e8e8;
}

.page-how-to-win-gcash-in-tongits-go__faq-title {
  font-size: 1.1em;
  color: #0a1f44;
  margin: 0;
  pointer-events: none; /* Prevents click event interference */
}

.page-how-to-win-gcash-in-tongits-go__faq-toggle {
  font-size: 1.5em;
  color: #ffcc00;
  font-weight: bold;
  pointer-events: none; /* Prevents click event interference */
  transition: transform 0.3s ease;
}

.page-how-to-win-gcash-in-tongits-go__faq-item.active .page-how-to-win-gcash-in-tongits-go__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' like effect, or rotate to '-' */
  color: #0a1f44;
}

.page-how-to-win-gcash-in-tongits-go__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.page-how-to-win-gcash-in-tongits-go__faq-item.active .page-how-to-win-gcash-in-tongits-go__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px !important;
  opacity: 1;
}

.page-how-to-win-gcash-in-tongits-go__faq-text {
  font-size: 1em;
  color: #555;
  margin-top: 0;
  margin-bottom: 10px;
}

/* Final Call to Action */
.page-how-to-win-gcash-in-tongits-go__final-cta-section {
  text-align: center;
  background-color: #0a1f44;
  color: #ffffff;
  padding: 60px 20px;
}

.page-how-to-win-gcash-in-tongits-go__final-cta-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-how-to-win-gcash-in-tongits-go__hero-title {
    font-size: 2em;
  }

  .page-how-to-win-gcash-in-tongits-go__hero-description {
    font-size: 1em;
  }

  .page-how-to-win-gcash-in-tongits-go__hero-button,
  .page-how-to-win-gcash-in-tongits-go__cta-button,
  .page-how-to-win-gcash-in-tongits-go__final-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-how-to-win-gcash-in-tongits-go__section-title {
    font-size: 1.7em;
  }

  .page-how-to-win-gcash-in-tongits-go__content-wrapper {
    flex-direction: column;
  }

  .page-how-to-win-gcash-in-tongits-go__text-block {
    font-size: 1em;
  }

  .page-how-to-win-gcash-in-tongits-go__grid-container {
    grid-template-columns: 1fr;
  }

  .page-how-to-win-gcash-in-tongits-go__tip-card,
  .page-how-to-win-gcash-in-tongits-go__mistakes-item {
    padding: 20px;
  }

  .page-how-to-win-gcash-in-tongits-go__tip-title,
  .page-how-to-win-gcash-in-tongits-go__mistakes-title {
    font-size: 1.1em;
  }

  .page-how-to-win-gcash-in-tongits-go__tip-description,
  .page-how-to-win-gcash-in-tongits-go__mistakes-description {
    font-size: 0.9em;
  }

  .page-how-to-win-gcash-in-tongits-go__cta-text,
  .page-how-to-win-gcash-in-tongits-go__final-cta-description {
    font-size: 1.1em;
  }

  .page-how-to-win-gcash-in-tongits-go__mistakes-list {
    gap: 15px;
  }

  /* List item responsive requirements */
  .page-how-to-win-gcash-in-tongits-go__mistakes-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 15px !important; /* Adjust padding for smaller screens */
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-how-to-win-gcash-in-tongits-go__mistakes-list {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-how-to-win-gcash-in-tongits-go__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-how-to-win-gcash-in-tongits-go__faq-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 10px !important; /* Adjust padding for container */
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-how-to-win-gcash-in-tongits-go__faq-question,
  .page-how-to-win-gcash-in-tongits-go__faq-answer {
    padding: 15px 15px !important; /* Adjust padding for smaller screens */
  }

  .page-how-to-win-gcash-in-tongits-go__faq-title {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-how-to-win-gcash-in-tongits-go__hero-title {
    font-size: 1.8em;
  }
  .page-how-to-win-gcash-in-tongits-go__hero-description {
    font-size: 0.9em;
  }
  .page-how-to-win-gcash-in-tongits-go__section-title {
    font-size: 1.5em;
  }
}

/* Image responsive rules */
.page-how-to-win-gcash-in-tongits-go__hero-image,
.page-how-to-win-gcash-in-tongits-go__image-item,
.page-how-to-win-gcash-in-tongits-go__tip-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-how-to-win-gcash-in-tongits-go__image-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Ensure all images inside cards/containers are responsive */
@media (max-width: 768px) {
  .page-how-to-win-gcash-in-tongits-go__hero-image,
  .page-how-to-win-gcash-in-tongits-go__image-item,
  .page-how-to-win-gcash-in-tongits-go__tip-image {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-how-to-win-gcash-in-tongits-go__image-card {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
}