:root {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #002244;
  --accent-color: #e74c3c; /* For highlights like buttons */
}

.page-cockfighting-betting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.page-cockfighting-betting .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-betting section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-cockfighting-betting h1, .page-cockfighting-betting h2, .page-cockfighting-betting h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-cockfighting-betting h1 {
  font-size: 2.8em;
  color: var(--text-light);
}

.page-cockfighting-betting h2 {
  font-size: 2.2em;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 15px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-betting h3 {
  font-size: 1.8em;
  color: var(--primary-color);
}

.page-cockfighting-betting p {
  text-align: justify;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-cockfighting-betting .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-cockfighting-betting .cta-button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-cockfighting-betting .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
  overflow: hidden;
}

.page-cockfighting-betting .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cockfighting-betting .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-cockfighting-betting .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-betting .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
}

.page-cockfighting-betting .hero-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Section Intro */
.page-cockfighting-betting .section-intro {
  background-color: var(--bg-light);
}

.page-cockfighting-betting .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-betting .feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-betting .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-betting .feature-item img {
  width: 150px; /* Adjusted to meet min 200px requirement for content images */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting-betting .feature-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-cockfighting-betting .feature-item p {
  font-size: 1em;
  color: var(--text-dark);
  text-align: center;
}

/* Section Types */
.page-cockfighting-betting .section-types {
  background-color: #e6eef2;
}

.page-cockfighting-betting .type-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-betting .type-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-betting .type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-betting .type-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-cockfighting-betting .type-card h3 {
  font-size: 1.6em;
  padding: 20px 15px 10px;
  margin-bottom: 0;
  color: var(--primary-color);
  text-align: left;
}

.page-cockfighting-betting .type-card p {
  padding: 0 15px 20px;
  font-size: 1em;
  color: var(--text-dark);
  text-align: justify;
}

/* Section Guide */
.page-cockfighting-betting .section-guide {
  background-color: var(--bg-light);
}

.page-cockfighting-betting .guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-betting .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cockfighting-betting .step-item img {
  width: 120px; /* Adjusted to meet min 200px requirement for content images */
  height: 120px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.page-cockfighting-betting .step-item h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting-betting .step-item p {
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
  text-align: center;
}

.page-cockfighting-betting .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--accent-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-cockfighting-betting .btn-small:hover {
  background: #c0392b;
}

/* Section Strategy */
.page-cockfighting-betting .section-strategy {
  background-color: #e6eef2;
}

.page-cockfighting-betting .section-strategy ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-cockfighting-betting .section-strategy ul li {
  background-color: #ffffff;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: var(--text-dark);
  transition: transform 0.2s ease;
}

.page-cockfighting-betting .section-strategy ul li:hover {
  transform: translateX(5px);
}

.page-cockfighting-betting .section-strategy ul li strong {
  color: var(--primary-color);
}

/* Section Promotions */
.page-cockfighting-betting .section-promotions {
  background-color: var(--bg-light);
}

.page-cockfighting-betting .promo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-betting .promo-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cockfighting-betting .promo-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting .promo-card img {
  width: 200px; /* Minimum 200x200px */
  height: 200px;
  object-fit: contain;
  margin: 0 auto 25px;
}

.page-cockfighting-betting .promo-card h3 {
  font-size: 1.7em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting-betting .promo-card p {
  font-size: 1.05em;
  color: var(--text-dark);
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-cockfighting-betting .btn-promo {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-cockfighting-betting .btn-promo:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Section Security & Support */
.page-cockfighting-betting .section-security-support {
  background-color: #e6eef2;
}

.page-cockfighting-betting .security-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-betting .security-support-grid .item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-cockfighting-betting .security-support-grid .item img {
  width: 200px; /* Minimum 200x200px */
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting-betting .security-support-grid .item h3 {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting-betting .security-support-grid .item p {
  font-size: 1em;
  color: var(--text-dark);
  text-align: center;
}

/* FAQ Section */
.page-cockfighting-betting .section-faq {
  background-color: var(--bg-light);
}

.page-cockfighting-betting .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-betting .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-cockfighting-betting .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-cockfighting-betting .faq-question:hover {
  background: #f5f5f5;
}

.page-cockfighting-betting .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
  text-align: left;
  flex-grow: 1;
}

.page-cockfighting-betting .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-cockfighting-betting .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.page-cockfighting-betting .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.page-cockfighting-betting .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.page-cockfighting-betting .faq-answer p {
  margin: 0;
  font-size: 1em;
  text-align: justify;
}

/* Section Conclusion */
.page-cockfighting-betting .section-conclusion {
  background: linear-gradient(135deg, var(--bg-dark), var(--primary-color));
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
}

.page-cockfighting-betting .section-conclusion h2 {
  color: var(--secondary-color);
  border-bottom-color: var(--text-light);
}

.page-cockfighting-betting .section-conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting-betting h1 {
    font-size: 2.4em;
  }
  .page-cockfighting-betting h2 {
    font-size: 1.8em;
  }
  .page-cockfighting-betting h3 {
    font-size: 1.5em;
  }
  .page-cockfighting-betting .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-betting section {
    padding: 40px 0;
  }
  .page-cockfighting-betting h1 {
    font-size: 2em;
  }
  .page-cockfighting-betting h2 {
    font-size: 1.6em;
  }
  .page-cockfighting-betting h3 {
    font-size: 1.3em;
  }
  .page-cockfighting-betting p {
    font-size: 1em;
  }
  .page-cockfighting-betting .hero-section {
    padding: 60px 15px;
  }
  .page-cockfighting-betting .hero-image img {
    border-radius: 8px;
  }
  .page-cockfighting-betting .feature-item, .page-cockfighting-betting .type-card, .page-cockfighting-betting .step-item, .page-cockfighting-betting .promo-card, .page-cockfighting-betting .security-support-grid .item {
    padding: 20px;
  }
  .page-cockfighting-betting .feature-item img, .page-cockfighting-betting .step-item img {
    width: 100px; /* Adjusted to meet min 200px requirement for content images */
    height: 100px;
  }
  .page-cockfighting-betting .promo-card img, .page-cockfighting-betting .security-support-grid .item img {
    width: 180px; /* Adjusted for smaller screens */
    height: 180px;
  }
  .page-cockfighting-betting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting-betting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting-betting .faq-toggle {
    font-size: 20px;
  }
  .page-cockfighting-betting .faq-answer {
    padding: 0 20px;
  }
  .page-cockfighting-betting .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-betting h1 {
    font-size: 1.8em;
  }
  .page-cockfighting-betting h2 {
    font-size: 1.4em;
  }
  .page-cockfighting-betting .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-cockfighting-betting .feature-item img, .page-cockfighting-betting .step-item img {
    width: 80px; /* Adjusted to meet min 200px requirement for content images */
    height: 80px;
  }
  .page-cockfighting-betting .promo-card img, .page-cockfighting-betting .security-support-grid .item img {
    width: 150px; /* Adjusted for smaller screens */
    height: 150px;
  }
  .page-cockfighting-betting .section-strategy ul li {
    padding: 15px 20px;
    font-size: 0.95em;
  }
}