.page-resources-thomo-cockfighting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-thomo-cockfighting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-thomo-cockfighting-guide__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

.page-resources-thomo-cockfighting-guide__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.page-resources-thomo-cockfighting-guide__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-thomo-cockfighting-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: -1;
}

.page-resources-thomo-cockfighting-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-resources-thomo-cockfighting-guide__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-thomo-cockfighting-guide__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-resources-thomo-cockfighting-guide__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Buttons */
.page-resources-thomo-cockfighting-guide__btn-primary,
.page-resources-thomo-cockfighting-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  text-align: center;
}

.page-resources-thomo-cockfighting-guide__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-resources-thomo-cockfighting-guide__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-resources-thomo-cockfighting-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-thomo-cockfighting-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-resources-thomo-cockfighting-guide__btn-login { /* Specific for login if needed */
    background-color: #EA7C07;
    color: #FFFFFF;
    border: 2px solid #EA7C07;
}
.page-resources-thomo-cockfighting-guide__btn-login:hover {
    background-color: #c96806;
    border-color: #c96806;
}

/* Section common styles */
.page-resources-thomo-cockfighting-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-resources-thomo-cockfighting-guide__text-block {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-thomo-cockfighting-guide__text-block a {
    color: #26A9E0;
    text-decoration: underline;
}
.page-resources-thomo-cockfighting-guide__text-block a:hover {
    color: #FFFFFF;
}


/* Introduction Section */
.page-resources-thomo-cockfighting-guide__introduction-section {
  padding: 80px 0;
}
.page-resources-thomo-cockfighting-guide__introduction-section .page-resources-thomo-cockfighting-guide__section-title {
    color: #FFFFFF;
}
.page-resources-thomo-cockfighting-guide__introduction-section .page-resources-thomo-cockfighting-guide__text-block {
    color: #f0f0f0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.page-resources-thomo-cockfighting-guide__introduction-section .page-resources-thomo-cockfighting-guide__text-block a {
    color: #26A9E0;
}
.page-resources-thomo-cockfighting-guide__introduction-section .page-resources-thomo-cockfighting-guide__text-block a:hover {
    color: #FFFFFF;
}


/* Benefits Section */
.page-resources-thomo-cockfighting-guide__benefits-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Ensure dark background for light text */
}

.page-resources-thomo-cockfighting-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-thomo-cockfighting-guide__benefit-card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #FFFFFF; /* Light text for dark card background */
}

.page-resources-thomo-cockfighting-guide__benefit-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.page-resources-thomo-cockfighting-guide__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure no extra space below image */
}

.page-resources-thomo-cockfighting-guide__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-thomo-cockfighting-guide__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Guide Section */
.page-resources-thomo-cockfighting-guide__guide-section {
  padding: 80px 0;
}
.page-resources-thomo-cockfighting-guide__guide-section .page-resources-thomo-cockfighting-guide__section-title {
    color: #FFFFFF;
}
.page-resources-thomo-cockfighting-guide__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-resources-thomo-cockfighting-guide__step-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #FFFFFF;
}

.page-resources-thomo-cockfighting-guide__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-resources-thomo-cockfighting-guide__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-thomo-cockfighting-guide__step-text {
  font-size: 1em;
  color: #f0f0f0;
}
.page-resources-thomo-cockfighting-guide__step-text a {
    color: #26A9E0;
    text-decoration: underline;
}
.page-resources-thomo-cockfighting-guide__step-text a:hover {
    color: #FFFFFF;
}

.page-resources-thomo-cockfighting-guide__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Rules & Tips Section */
.page-resources-thomo-cockfighting-guide__rules-tips-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.page-resources-thomo-cockfighting-guide__rules-tips-section .page-resources-thomo-cockfighting-guide__text-block {
    color: #f0f0f0;
}
.page-resources-thomo-cockfighting-guide__rules-tips-section .page-resources-thomo-cockfighting-guide__text-block a {
    color: #26A9E0;
}
.page-resources-thomo-cockfighting-guide__rules-tips-section .page-resources-thomo-cockfighting-guide__text-block a:hover {
    color: #FFFFFF;
}


/* Features Section */
.page-resources-thomo-cockfighting-guide__features-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Lighter dark background for contrast */
}

.page-resources-thomo-cockfighting-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-thomo-cockfighting-guide__feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
}

.page-resources-thomo-cockfighting-guide__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-thomo-cockfighting-guide__feature-text {
  font-size: 1em;
  color: #f0f0f0;
}
.page-resources-thomo-cockfighting-guide__feature-text a {
    color: #26A9E0;
    text-decoration: underline;
}
.page-resources-thomo-cockfighting-guide__feature-text a:hover {
    color: #FFFFFF;
}


/* Promotions Section */
.page-resources-thomo-cockfighting-guide__promotions-section {
  padding: 80px 0;
}
.page-resources-thomo-cockfighting-guide__promotions-section .page-resources-thomo-cockfighting-guide__section-title {
    color: #FFFFFF;
}
.page-resources-thomo-cockfighting-guide__promotions-section .page-resources-thomo-cockfighting-guide__text-block {
    color: #f0f0f0;
}
.page-resources-thomo-cockfighting-guide__promotions-section .page-resources-thomo-cockfighting-guide__text-block a {
    color: #26A9E0;
}
.page-resources-thomo-cockfighting-guide__promotions-section .page-resources-thomo-cockfighting-guide__text-block a:hover {
    color: #FFFFFF;
}

.page-resources-thomo-cockfighting-guide__cta-buttons-inline {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Mobile App Section */
.page-resources-thomo-cockfighting-guide__mobile-app-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.page-resources-thomo-cockfighting-guide__mobile-app-section .page-resources-thomo-cockfighting-guide__section-title {
    color: #26A9E0;
}
.page-resources-thomo-cockfighting-guide__mobile-app-section .page-resources-thomo-cockfighting-guide__text-block {
    color: #f0f0f0;
}
.page-resources-thomo-cockfighting-guide__mobile-app-section .page-resources-thomo-cockfighting-guide__text-block a {
    color: #26A9E0;
}
.page-resources-thomo-cockfighting-guide__mobile-app-section .page-resources-thomo-cockfighting-guide__text-block a:hover {
    color: #FFFFFF;
}


/* Content Columns (for sections with text and image side-by-side) */
.page-resources-thomo-cockfighting-guide__content-columns {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-resources-thomo-cockfighting-guide__content-columns--reverse {
  flex-direction: row-reverse;
}

.page-resources-thomo-cockfighting-guide__column-text,
.page-resources-thomo-cockfighting-guide__column-image {
  flex: 1;
  min-width: 300px;
}

.page-resources-thomo-cockfighting-guide__image-full {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* FAQ Section */
.page-resources-thomo-cockfighting-guide__faq-section {
  padding: 80px 0;
}