/* style/cockfighting-rules-and-betting.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-on-dark: #FFFFFF;
  --text-on-light: #333333;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --button-text-color: #FFFF00;
  --body-bg: #000000; /* From shared.css */
}

.page-cockfighting-rules-and-betting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-on-dark); /* Default text color for dark body background */
  background-color: var(--body-bg);
}

.page-cockfighting-rules-and-betting__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-on-dark);
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-cockfighting-rules-and-betting__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-cockfighting-rules-and-betting__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-cockfighting-rules-and-betting__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-on-dark);
  line-height: 1.2;
}

.page-cockfighting-rules-and-betting__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-on-dark);
}

.page-cockfighting-rules-and-betting__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-cockfighting-rules-and-betting__btn-primary,
.page-cockfighting-rules-and-betting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  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-cockfighting-rules-and-betting__btn-primary {
  background-color: var(--register-button-bg);
  color: var(--button-text-color);
  border: 2px solid var(--register-button-bg);
}

.page-cockfighting-rules-and-betting__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-cockfighting-rules-and-betting__btn-secondary {
  background-color: transparent;
  color: var(--text-on-dark);
  border: 2px solid var(--text-on-dark);
}

.page-cockfighting-rules-and-betting__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-cockfighting-rules-and-betting__btn-primary--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-cockfighting-rules-and-betting__content-section,
.page-cockfighting-rules-and-betting__rules-section,
.page-cockfighting-rules-and-betting__betting-guide-section,
.page-cockfighting-rules-and-betting__video-section,
.page-cockfighting-rules-and-betting__faq-section,
.page-cockfighting-rules-and-betting__cta-bottom-section {
  padding: 80px 20px;
  text-align: center;
}

.page-cockfighting-rules-and-betting__dark-bg {
  background-color: var(--body-bg);
  color: var(--text-on-dark);
}

.page-cockfighting-rules-and-betting__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-on-light);
}

.page-cockfighting-rules-and-betting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-cockfighting-rules-and-betting__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: inherit;
}

.page-cockfighting-rules-and-betting__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: left;
  color: inherit;
}

.page-cockfighting-rules-and-betting__text-block strong {
  color: var(--primary-color);
}

.page-cockfighting-rules-and-betting__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting-rules-and-betting__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 15px;
  width: 400px; /* Example display width */
  height: 300px; /* Example display height */
}

.page-cockfighting-rules-and-betting__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 15px;
  width: 400px; /* Example display width */
  height: 300px; /* Example display height */
}

.page-cockfighting-rules-and-betting__rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-cockfighting-rules-and-betting__card {
  background-color: var(--secondary-color);
  color: var(--text-on-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 200px;
}

.page-cockfighting-rules-and-betting__card-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-cockfighting-rules-and-betting__card-text {
  font-size: 1em;
  line-height: 1.7;
  color: var(--text-on-light);
}

.page-cockfighting-rules-and-betting__betting-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-cockfighting-rules-and-betting__list-item {
  background-color: var(--secondary-color);
  color: var(--text-on-light);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting-rules-and-betting__list-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-cockfighting-rules-and-betting__list-text {
  font-size: 1em;
  color: var(--text-on-light);
}

.page-cockfighting-rules-and-betting__cta-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-cockfighting-rules-and-betting__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 8px;
}

.page-cockfighting-rules-and-betting__video-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 10; /* Ensure it's above the video */
}

.page-cockfighting-rules-and-betting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting-rules-and-betting__video-caption {
  margin-top: 15px;
  font-style: italic;
  color: var(--text-on-dark);
}

.page-cockfighting-rules-and-betting__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-rules-and-betting__faq-item {
  background-color: var(--secondary-color);
  color: var(--text-on-light);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-cockfighting-rules-and-betting__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--primary-color);
  background-color: var(--secondary-color);
}

.page-cockfighting-rules-and-betting__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-cockfighting-rules-and-betting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-cockfighting-rules-and-betting__faq-answer {
  padding: 15px 25px 20px;
  border-top: 1px solid #eee;
  font-size: 1em;
  color: var(--text-on-light);
  line-height: 1.7;
}

.page-cockfighting-rules-and-betting__cta-bottom-section {
  padding: 100px 20px;
  background-color: var(--primary-color);
  color: var(--text-on-dark);
}

.page-cockfighting-rules-and-betting__cta-bottom-section .page-cockfighting-rules-and-betting__section-title {
  color: var(--text-on-dark);
}

.page-cockfighting-rules-and-betting__cta-bottom-section .page-cockfighting-rules-and-betting__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: var(--text-on-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting-rules-and-betting__main-title {
    font-size: 2.8em;
  }
  .page-cockfighting-rules-and-betting__section-title {
    font-size: 2em;
  }
  .page-cockfighting-rules-and-betting__image--left,
  .page-cockfighting-rules-and-betting__image--right {
    float: none;
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 600px;
    height: auto;
  }
  .page-cockfighting-rules-and-betting__text-block {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-rules-and-betting__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-cockfighting-rules-and-betting__main-title {
    font-size: 2em;
  }
  .page-cockfighting-rules-and-betting__hero-description {
    font-size: 1em;
  }
  .page-cockfighting-rules-and-betting__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting-rules-and-betting__btn-primary,
  .page-cockfighting-rules-and-betting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting-rules-and-betting__content-section,
  .page-cockfighting-rules-and-betting__rules-section,
  .page-cockfighting-rules-and-betting__betting-guide-section,
  .page-cockfighting-rules-and-betting__video-section,
  .page-cockfighting-rules-and-betting__faq-section,
  .page-cockfighting-rules-and-betting__cta-bottom-section {
    padding: 50px 15px;
  }
  .page-cockfighting-rules-and-betting__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-cockfighting-rules-and-betting__text-block {
    font-size: 0.95em;
  }
  .page-cockfighting-rules-and-betting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px;
    min-height: 200px;
  }
  .page-cockfighting-rules-and-betting__image--left,
  .page-cockfighting-rules-and-betting__image--right {
    margin: 0 auto 20px auto;
  }
  .page-cockfighting-rules-and-betting__card,
  .page-cockfighting-rules-and-betting__list-item,
  .page-cockfighting-rules-and-betting__faq-item,
  .page-cockfighting-rules-and-betting__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting-rules-and-betting video,
  .page-cockfighting-rules-and-betting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting-rules-and-betting__video-section,
  .page-cockfighting-rules-and-betting__video-container,
  .page-cockfighting-rules-and-betting__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-cockfighting-rules-and-betting__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-cockfighting-rules-and-betting__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-rules-and-betting__main-title {
    font-size: 1.8em;
  }
  .page-cockfighting-rules-and-betting__section-title {
    font-size: 1.5em;
  }
  .page-cockfighting-rules-and-betting__hero-section {
    height: 400px;
  }
  .page-cockfighting-rules-and-betting__btn-primary,
  .page-cockfighting-rules-and-betting__btn-secondary {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-cockfighting-rules-and-betting__faq-item summary {
    font-size: 1em;
  }
}