.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  line-height: 1.6;
}

.page-cockfighting__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-cockfighting__hero-image-container {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Desktop: cover to fill space */
  border-radius: 8px;
}

.page-cockfighting__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-cockfighting__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 700;
  color: #FFA53A; /* Auxiliary Color */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255,165,58,0.5);
}

.page-cockfighting__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-cockfighting__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6; /* Text Main */
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(255,165,58,0.4);
}

.page-cockfighting__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,165,58,0.6);
}

.page-cockfighting__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FFA53A; /* Auxiliary Color */
  border: 2px solid #A84F0C; /* Border Color */
  box-shadow: 0 5px 15px rgba(168,79,12,0.3);
}

.page-cockfighting__btn-secondary:hover {
  transform: translateY(-3px);
  background: #FFA53A;
  color: #17191F;
  border-color: #FFA53A;
  box-shadow: 0 8px 20px rgba(255,165,58,0.6);
}

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

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255,176,77,0.3);
}

.page-cockfighting__subsection-title {
  font-size: 1.8em;
  color: #FFA53A;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-cockfighting__text-block {
  font-size: 1.05em;
  margin-bottom: 25px;
  text-align: justify;
  color: #FFF3E6;
}

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

.page-cockfighting__card {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border Color */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF3E6;
}

.page-cockfighting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255,165,58,0.4);
}

.page-cockfighting__card-title {
  font-size: 1.4em;
  color: #FFA53A;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting__card-text {
  font-size: 0.95em;
  color: #FFF3E6;
}

.page-cockfighting__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
  overflow-x: hidden; /* Ensure no horizontal scroll */
}

.page-cockfighting__game-card {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border Color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF3E6;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-cockfighting__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255,165,58,0.4);
}

.page-cockfighting__game-image {
  width: 100%;
  height: 250px; /* Fixed height for desktop square appearance */
  object-fit: cover;
  display: block;
}

.page-cockfighting__game-title {
  font-size: 1.3em;
  color: #FFA53A;
  padding: 15px 20px 5px;
  font-weight: 600;
}

.page-cockfighting__game-link {
  color: inherit;
  text-decoration: none;
}

.page-cockfighting__game-link:hover {
  text-decoration: underline;
}

.page-cockfighting__game-description {
  font-size: 0.9em;
  color: #FFF3E6;
  padding: 0 20px 20px;
  flex-grow: 1;
}

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

.page-cockfighting__step-item {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border Color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF3E6;
}

.page-cockfighting__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255,165,58,0.4);
}

.page-cockfighting__step-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0 auto 20px;
}

.page-cockfighting__step-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-cockfighting__step-title {
  font-size: 1.3em;
  color: #FFA53A;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-cockfighting__step-description {
  font-size: 0.95em;
  color: #FFF3E6;
}

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

.page-cockfighting__promo-card {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border Color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF3E6;
}

.page-cockfighting__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255,165,58,0.4);
}

.page-cockfighting__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__promo-title {
  font-size: 1.4em;
  color: #FFA53A;
  padding: 20px 20px 10px;
  font-weight: 600;
}

.page-cockfighting__promo-description {
  font-size: 0.95em;
  color: #FFF3E6;
  padding: 0 20px 20px;
}

.page-cockfighting__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}