/* style/resources-thomo-cockfighting-betting-tips-strategies.css */

/* Base styles for the page content */
.page-resources-thomo-cockfighting-betting-tips-strategies {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #ffffff); /* Inherit from shared or default to white */
}

.page-resources-thomo-cockfighting-betting-tips-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__section-title {
  font-size: 2.5em;
  color: #017439;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__text-block p,
.page-resources-thomo-cockfighting-betting-tips-strategies__card p,
.page-resources-thomo-cockfighting-betting-tips-strategies__faq-answer p {
  margin-bottom: 1em;
  text-align: left;
}

/* Hero Section */
.page-resources-thomo-cockfighting-betting-tips-strategies__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-thomo-cockfighting-betting-tips-strategies__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

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

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

.page-resources-thomo-cockfighting-betting-tips-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFF00; /* Highlighted title for impact */
}

.page-resources-thomo-cockfighting-betting-tips-strategies__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-resources-thomo-cockfighting-betting-tips-strategies__btn-primary,
.page-resources-thomo-cockfighting-betting-tips-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__btn-primary {
  background-color: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login text color */
  border: 2px solid #C30808;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__btn-primary:hover {
  background-color: #e02a2a;
  border-color: #e02a2a;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__btn-secondary {
  background-color: transparent;
  color: #017439;
  border: 2px solid #017439;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__btn-small {
  padding: 10px 20px;
  font-size: 1em;
}

/* Introduction Section */
.page-resources-thomo-cockfighting-betting-tips-strategies__introduction .page-resources-thomo-cockfighting-betting-tips-strategies__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__introduction .page-resources-thomo-cockfighting-betting-tips-strategies__image-wrapper {
  order: 2;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__introduction .page-resources-thomo-cockfighting-betting-tips-strategies__text-block {
  order: 1;
}

/* General Image Styling */
.page-resources-thomo-cockfighting-betting-tips-strategies__image-wrapper img,
.page-resources-thomo-cockfighting-betting-tips-strategies__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Cards */
.page-resources-thomo-cockfighting-betting-tips-strategies__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-thomo-cockfighting-betting-tips-strategies__card-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Basic Tips Section */
.page-resources-thomo-cockfighting-betting-tips-strategies__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Advanced Strategies Section */
.page-resources-thomo-cockfighting-betting-tips-strategies__advanced-strategies .page-resources-thomo-cockfighting-betting-tips-strategies__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: flex-start;
  text-align: left;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__text-block-title {
  font-size: 1.6em;
  color: #017439;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__text-block-title:first-of-type {
  margin-top: 0;
}

/* Registration Guide Section */
.page-resources-thomo-cockfighting-betting-tips-strategies__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__step-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

/* Safety and Responsibility Section */
.page-resources-thomo-cockfighting-betting-tips-strategies__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* FAQ Section */
.page-resources-thomo-cockfighting-betting-tips-strategies__faq-section {
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__faq-question:hover {
  background-color: #e5e5e5;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #017439;
  transition: transform 0.3s ease;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__faq-item.active .page-resources-thomo-cockfighting-betting-tips-strategies__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-thomo-cockfighting-betting-tips-strategies__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__faq-item.active .page-resources-thomo-cockfighting-betting-tips-strategies__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

/* CTA Section */
.page-resources-thomo-cockfighting-betting-tips-strategies__cta-section {
  background-color: #017439;
  color: #ffffff;
  padding: 80px 0;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__cta-section .page-resources-thomo-cockfighting-betting-tips-strategies__container {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__cta-content {
  flex: 1;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__cta-section .page-resources-thomo-cockfighting-betting-tips-strategies__btn-primary {
  background-color: #C30808;
  border-color: #C30808;
  color: #FFFF00;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__cta-section .page-resources-thomo-cockfighting-betting-tips-strategies__btn-secondary {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #017439;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__cta-section .page-resources-thomo-cockfighting-betting-tips-strategies__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #017439;
}

.page-resources-thomo-cockfighting-betting-tips-strategies__image-wrapper--cta {
  flex: 0 0 400px; /* Fixed width for CTA image */
  margin-left: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-thomo-cockfighting-betting-tips-strategies__hero-title {
    font-size: 3em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__section-title {
    font-size: 2em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__cta-title {
    font-size: 2.2em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__introduction .page-resources-thomo-cockfighting-betting-tips-strategies__content-grid,
  .page-resources-thomo-cockfighting-betting-tips-strategies__advanced-strategies .page-resources-thomo-cockfighting-betting-tips-strategies__grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__introduction .page-resources-thomo-cockfighting-betting-tips-strategies__image-wrapper {
    order: 1;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__introduction .page-resources-thomo-cockfighting-betting-tips-strategies__text-block {
    order: 2;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__cta-section .page-resources-thomo-cockfighting-betting-tips-strategies__container {
    flex-direction: column;
    text-align: center;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__image-wrapper--cta {
    flex: none;
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-resources-thomo-cockfighting-betting-tips-strategies {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__hero-title {
    font-size: 2.2em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__hero-description {
    font-size: 1em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__section {
    padding: 40px 0;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__section-title {
    font-size: 1.8em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__section-description {
    font-size: 1em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__container {
    padding: 0 15px;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__grid-3-cols,
  .page-resources-thomo-cockfighting-betting-tips-strategies__steps-grid,
  .page-resources-thomo-cockfighting-betting-tips-strategies__safety-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__card,
  .page-resources-thomo-cockfighting-betting-tips-strategies__step-card {
    padding: 20px;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__text-block-title {
    font-size: 1.4em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__faq-answer {
    padding: 0 20px;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__faq-item.active .page-resources-thomo-cockfighting-betting-tips-strategies__faq-answer {
    padding: 15px 20px;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__cta-section {
    padding: 60px 0;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__cta-title {
    font-size: 1.8em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__cta-description {
    font-size: 1em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile image and video responsiveness */
  .page-resources-thomo-cockfighting-betting-tips-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__section,
  .page-resources-thomo-cockfighting-betting-tips-strategies__card,
  .page-resources-thomo-cockfighting-betting-tips-strategies__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__hero-section,
  .page-resources-thomo-cockfighting-betting-tips-strategies__introduction .page-resources-thomo-cockfighting-betting-tips-strategies__content-grid,
  .page-resources-thomo-cockfighting-betting-tips-strategies__advanced-strategies .page-resources-thomo-cockfighting-betting-tips-strategies__grid-2-cols,
  .page-resources-thomo-cockfighting-betting-tips-strategies__cta-section .page-resources-thomo-cockfighting-betting-tips-strategies__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__btn-primary,
  .page-resources-thomo-cockfighting-betting-tips-strategies__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-thomo-cockfighting-betting-tips-strategies__hero-title {
    font-size: 1.8em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__hero-description {
    font-size: 0.9em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__section-title {
    font-size: 1.5em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__card-title {
    font-size: 1.3em;
  }
  .page-resources-thomo-cockfighting-betting-tips-strategies__cta-title {
    font-size: 1.6em;
  }
}