:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --text-on-dark-bg: #FFFFFF;
  --text-on-light-bg: #333333;
}

.page-resources-how-to-watch-thomo-cockfighting-live {
  font-family: 'Arial', sans-serif;
  color: var(--text-on-light-bg);
  line-height: 1.6;
  background-color: var(--secondary-color); /* Body background is white */
}

.page-resources-how-to-watch-thomo-cockfighting-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-how-to-watch-thomo-cockfighting-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #009944 100%); /* Slightly darker green gradient */
  color: var(--text-on-dark-bg);
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-resources-how-to-watch-thomo-cockfighting-live__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-how-to-watch-thomo-cockfighting-live__hero-content {
  z-index: 2;
  text-align: center;
}

.page-resources-how-to-watch-thomo-cockfighting-live__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-on-dark-bg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-watch-thomo-cockfighting-live__intro-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-how-to-watch-thomo-cockfighting-live__cta-button {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  color: var(--text-on-dark-bg); /* Ensuring white text on colored buttons for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-resources-how-to-watch-thomo-cockfighting-live__btn-register {
  background: var(--register-button-bg);
}

.page-resources-how-to-watch-thomo-cockfighting-live__btn-login {
  background: var(--login-button-bg);
}

.page-resources-how-to-watch-thomo-cockfighting-live__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-resources-how-to-watch-thomo-cockfighting-live__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-resources-how-to-watch-thomo-cockfighting-live__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-how-to-watch-thomo-cockfighting-live__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.page-resources-how-to-watch-thomo-cockfighting-live__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-resources-how-to-watch-thomo-cockfighting-live__image-text-block .page-resources-how-to-watch-thomo-cockfighting-live__content-image {
  flex: 1;
  min-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-watch-thomo-cockfighting-live__image-text-block .page-resources-how-to-watch-thomo-cockfighting-live__text-block {
  flex: 1;
}

.page-resources-how-to-watch-thomo-cockfighting-live__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-resources-how-to-watch-thomo-cockfighting-live__list-item {
  background: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-watch-thomo-cockfighting-live__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-watch-thomo-cockfighting-live__list-item h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-resources-how-to-watch-thomo-cockfighting-live__list-item p {
  font-size: 16px;
  line-height: 1.6;
}

.page-resources-how-to-watch-thomo-cockfighting-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-resources-how-to-watch-thomo-cockfighting-live__step-card {
  background: var(--secondary-color);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-how-to-watch-thomo-cockfighting-live__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-watch-thomo-cockfighting-live__step-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-watch-thomo-cockfighting-live__step-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-how-to-watch-thomo-cockfighting-live__step-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-resources-how-to-watch-thomo-cockfighting-live__btn-deposit, 
.page-resources-how-to-watch-thomo-cockfighting-live__btn-watch, 
.page-resources-how-to-watch-thomo-cockfighting-live__btn-bet {
  background: var(--primary-color);
  color: var(--text-on-dark-bg);
}

.page-resources-how-to-watch-thomo-cockfighting-live__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-resources-how-to-watch-thomo-cockfighting-live__tip-card {
  background: #f9f9f9;
  border-left: 5px solid var(--primary-color);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.page-resources-how-to-watch-thomo-cockfighting-live__tip-card:hover {
  background-color: #f0fff0;
}

.page-resources-how-to-watch-thomo-cockfighting-live__tip-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-how-to-watch-thomo-cockfighting-live__tip-description {
  font-size: 16px;
  line-height: 1.6;
}

.page-resources-how-to-watch-thomo-cockfighting-live__problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-resources-how-to-watch-thomo-cockfighting-live__card {
  background: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-watch-thomo-cockfighting-live__card-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-how-to-watch-thomo-cockfighting-live__faq-list {
  margin-bottom: 60px;
}

/* FAQ container styles */
.page-resources-how-to-watch-thomo-cockfighting-live__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

/* FAQ default state - answer hidden */
.page-resources-how-to-watch-thomo-cockfighting-live__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;
  background: #f9f9f9;
  color: var(--text-on-light-bg);
}

/* FAQ expanded state - 🚨 Use !important and a sufficiently large max-height to ensure it expands */
.page-resources-how-to-watch-thomo-cockfighting-live__faq-item.active .page-resources-how-to-watch-thomo-cockfighting-live__faq-answer {
  max-height: 2000px !important; /* 🚨 Use !important for priority, value large enough to contain any content */
  padding: 20px 15px !important;
  opacity: 1;
  border-radius: 0 0 5px 5px;
}

/* Question style */
.page-resources-how-to-watch-thomo-cockfighting-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  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;
}

.page-resources-how-to-watch-thomo-cockfighting-live__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-how-to-watch-thomo-cockfighting-live__faq-question:active {
  background: #eeeeee;
}

/* Question title style */
.page-resources-how-to-watch-thomo-cockfighting-live__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Prevent h3 tag from blocking click event */
  color: var(--text-on-light-bg);
}}