/* style/cockfighting-forum.css */
.page-cockfighting-forum {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-cockfighting-forum__section {
  padding: 60px 0;
  text-align: center;
}

.page-cockfighting-forum__section:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.page-cockfighting-forum__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Dark Red */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-cockfighting-forum__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-cockfighting-forum__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
  margin: 10px;
}

.page-cockfighting-forum__button--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red for contrast */
}

.page-cockfighting-forum__button--primary:hover {
  background-color: #e6c200; /* Darker Gold */
  color: #660000;
}

.page-cockfighting-forum__button--secondary {
  background-color: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold for contrast */
}

.page-cockfighting-forum__button--secondary:hover {
  background-color: #660000; /* Darker Red */
  color: #e6c200;
}

.page-cockfighting-forum__button--lg {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-cockfighting-forum__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* Hero Section */
.page-cockfighting-forum__hero {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  padding: 100px 0 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-cockfighting-forum__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff; /* White text on gradient */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-forum__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #eee;
}

.page-cockfighting-forum__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  width: 300px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.page-cockfighting-forum__hero .page-cockfighting-forum__container {
  position: relative;
  z-index: 1;
}

/* About Section */
.page-cockfighting-forum__about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.page-cockfighting-forum__about .page-cockfighting-forum__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-cockfighting-forum__about .page-cockfighting-forum__section-title {
  text-align: left;
}

.page-cockfighting-forum__image {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-forum__image--right {
  order: 2;
}

.page-cockfighting-forum__about .page-cockfighting-forum__text-content {
  max-width: 50%;
  text-align: left;
}

/* Benefits Section */
.page-cockfighting-forum__benefits {
  background-color: #fff;
}

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

.page-cockfighting-forum__benefit-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-forum__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-cockfighting-forum__benefit-title {
  font-size: 1.5em;
  color: #8B0000; /* Dark Red */
  margin-bottom: 15px;
}

.page-cockfighting-forum__benefit-description {
  color: #666;
  font-size: 1em;
}

/* Detail Pages Section */
.page-cockfighting-forum__detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-forum__detail-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-forum__detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-cockfighting-forum__detail-title {
  font-size: 1.4em;
  color: #8B0000; /* Dark Red */
  margin-bottom: 10px;
}

.page-cockfighting-forum__detail-title a {
  color: #8B0000;
  text-decoration: none;
}

.page-cockfighting-forum__detail-title a:hover {
  text-decoration: underline;
}

.page-cockfighting-forum__detail-description {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Guide Section */
.page-cockfighting-forum__guide {
  text-align: left;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-cockfighting-forum__guide .page-cockfighting-forum__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-cockfighting-forum__guide .page-cockfighting-forum__section-title {
  text-align: left;
}

.page-cockfighting-forum__guide .page-cockfighting-forum__text-content {
  text-align: left;
  max-width: 700px;
}

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

.page-cockfighting-forum__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-cockfighting-forum__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-cockfighting-forum__step-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-cockfighting-forum__step-description {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
}

/* App Promo Section */
.page-cockfighting-forum__app-promo {
  background: #8B0000;
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.page-cockfighting-forum__app-promo .page-cockfighting-forum__section-title {
  color: #FFD700; /* Gold */
}

.page-cockfighting-forum__app-promo .page-cockfighting-forum__text-content {
  color: #fff;
  max-width: 700px;
  margin-bottom: 30px;
}

.page-cockfighting-forum__app-image {
  max-width: 300px;
  height: auto;
  margin-top: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

/* Responsible Gambling Section */
.page-cockfighting-forum__responsible-gambling {
  background-color: #fff;
}

.page-cockfighting-forum__responsible-gambling .page-cockfighting-forum__text-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Section */
.page-cockfighting-forum__cta {
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
  color: #fff;
  padding: 100px 0;
}

.page-cockfighting-forum__cta-title {
  font-size: 3em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-forum__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #eee;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting-forum__hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting-forum__section-title {
    font-size: 2em;
  }
  .page-cockfighting-forum__about .page-cockfighting-forum__container,
  .page-cockfighting-forum__guide .page-cockfighting-forum__container {
    flex-direction: column;
    text-align: center;
  }
  .page-cockfighting-forum__image,
  .page-cockfighting-forum__about .page-cockfighting-forum__text-content {
    max-width: 100%;
    order: initial;
  }
  .page-cockfighting-forum__about .page-cockfighting-forum__section-title,
  .page-cockfighting-forum__guide .page-cockfighting-forum__section-title,
  .page-cockfighting-forum__guide .page-cockfighting-forum__text-content {
    text-align: center;
  }
  .page-cockfighting-forum__hero-image {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-forum__hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting-forum__hero-description {
    font-size: 1em;
  }
  .page-cockfighting-forum__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting-forum__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-cockfighting-forum__button--lg {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting-forum__grid,
  .page-cockfighting-forum__detail-grid,
  .page-cockfighting-forum__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting-forum__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-forum__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting-forum__section-title {
    font-size: 1.5em;
  }
  .page-cockfighting-forum__hero-image {
    display: none;
  }
  .page-cockfighting-forum__hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-cockfighting-forum__button {
    width: 80%;
    margin: 5px auto;
  }
  .page-cockfighting-forum__cta-title {
    font-size: 1.8em;
  }
}