/* style/resources-live-cockfighting-platform-guide.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-register-login: #C30808;
  --button-register-login-font: #FFFF00;
}

.page-resources-live-cockfighting-platform-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color); /* Default light background for body */
}

.page-resources-live-cockfighting-platform-guide__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-live-cockfighting-platform-guide__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-resources-live-cockfighting-platform-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  min-height: 600px;
  overflow: hidden;
}

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

.page-resources-live-cockfighting-platform-guide__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken video for text readability */
  cursor: pointer;
}

.page-resources-live-cockfighting-platform-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 8px;
}

.page-resources-live-cockfighting-platform-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-resources-live-cockfighting-platform-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-resources-live-cockfighting-platform-guide__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-live-cockfighting-platform-guide__cta-buttons--center {
  margin-top: 40px;
}

.page-resources-live-cockfighting-platform-guide__btn-primary,
.page-resources-live-cockfighting-platform-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;
  font-size: 1.1em;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-live-cockfighting-platform-guide__btn-primary {
  background-color: var(--button-register-login); /* Custom color for register/login */
  color: var(--button-register-login-font);
  border: 2px solid var(--button-register-login);
}

.page-resources-live-cockfighting-platform-guide__btn-primary:hover {
  background-color: #a30606; /* Darken for hover */
  color: var(--text-light);
}

.page-resources-live-cockfighting-platform-guide__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-resources-live-cockfighting-platform-guide__btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.page-resources-live-cockfighting-platform-guide__section {
  padding: 60px 20px;
}

.page-resources-live-cockfighting-platform-guide__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-live-cockfighting-platform-guide__section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 20px;
  color: inherit;
}

.page-resources-live-cockfighting-platform-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: inherit;
}

.page-resources-live-cockfighting-platform-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-live-cockfighting-platform-guide__grid-item {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  color: var(--text-dark);
}

.page-resources-live-cockfighting-platform-guide__grid-item:hover {
  transform: translateY(-5px);
}

.page-resources-live-cockfighting-platform-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-resources-live-cockfighting-platform-guide__item-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-resources-live-cockfighting-platform-guide__item-text {
  font-size: 1em;
  color: var(--text-dark);
}

.page-resources-live-cockfighting-platform-guide__comparison-intro {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-resources-live-cockfighting-platform-guide__comparison-intro p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-live-cockfighting-platform-guide__image--comparison {
  max-width: 80%;
  margin: 0 auto;
  display: block;
}

.page-resources-live-cockfighting-platform-guide__sub-title {
  font-size: 1.8em;
  text-align: center;
  margin: 40px 0 25px 0;
  color: inherit;
}

.page-resources-live-cockfighting-platform-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-resources-live-cockfighting-platform-guide__card {
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.page-resources-live-cockfighting-platform-guide__card-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-live-cockfighting-platform-guide__list {
  list-style: disc inside;
  padding-left: 0;
  color: var(--text-dark);
}

.page-resources-live-cockfighting-platform-guide__list li {
  margin-bottom: 8px;
}

.page-resources-live-cockfighting-platform-guide__table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
}

.page-resources-live-cockfighting-platform-guide__comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  min-width: 600px;
}

.page-resources-live-cockfighting-platform-guide__comparison-table th,
.page-resources-live-cockfighting-platform-guide__comparison-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
  color: inherit;
}

.page-resources-live-cockfighting-platform-guide__comparison-table th {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: bold;
}

.page-resources-live-cockfighting-platform-guide__comparison-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05); /* Slight tint for dark background table rows */
}

.page-resources-live-cockfighting-platform-guide__note-text {
  text-align: center;
  font-style: italic;
  margin-top: 20px;
  color: inherit;
}

.page-resources-live-cockfighting-platform-guide__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-live-cockfighting-platform-guide__tip-item {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  color: var(--text-dark);
}

.page-resources-live-cockfighting-platform-guide__tip-item:hover {
  transform: translateY(-5px);
}

.page-resources-live-cockfighting-platform-guide__faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-live-cockfighting-platform-guide__faq-item {
  background-color: var(--secondary-color);
  border-bottom: 1px solid #eee;
  color: var(--text-dark);
}

.page-resources-live-cockfighting-platform-guide__faq-item:last-child {
  border-bottom: none;
}

.page-resources-live-cockfighting-platform-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: var(--secondary-color);
  transition: background-color 0.3s ease;
}

.page-resources-live-cockfighting-platform-guide__faq-question:hover {
  background-color: #f5f5f5;
}

.page-resources-live-cockfighting-platform-guide__faq-title {
  font-size: 1.2em;
  margin: 0;
  color: var(--primary-color);
}

.page-resources-live-cockfighting-platform-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-resources-live-cockfighting-platform-guide__faq-item.active .page-resources-live-cockfighting-platform-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-live-cockfighting-platform-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-dark);
}

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

.page-resources-live-cockfighting-platform-guide__faq-answer p {
  margin-bottom: 0;
}

.page-resources-live-cockfighting-platform-guide__conclusion-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 20px auto;
  color: inherit;
}