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

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-cockfighting__section-title {
  font-size: 38px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--deep-orange);
  border-radius: 2px;
}

.page-cockfighting__text-block {
  font-size: 17px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--text-main);
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.text-highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* HERO Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--bg-color);
}

.page-cockfighting__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width within max-width */
}

.page-cockfighting__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-main);
}

.page-cockfighting__main-title {
  font-size: clamp(28px, 4.5vw, 48px); /* Responsive H1 font size */
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-description {
  font-size: 19px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #FFF3E6;
}

/* Intro Section */
.page-cockfighting__intro-section {
  background-color: var(--bg-color);
  padding: 80px 0;
  color: var(--text-main);
}

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

.page-cockfighting__feature-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-cockfighting__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__feature-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  max-width: 100%;
  display: block;
}

.page-cockfighting__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting__feature-item p {
  font-size: 16px;
  color: var(--text-main);
}

/* Game Types Section */
.page-cockfighting__game-types-section {
  background-color: var(--bg-color);
  padding: 80px 0;
  color: var(--text-main);
}

.page-cockfighting__dark-section {
  background-color: var(--bg-color);
  color: var(--text-main);
}

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

.page-cockfighting__type-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-cockfighting__type-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__type-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  max-width: 100%;
  display: block;
}

.page-cockfighting__type-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting__type-item p {
  font-size: 16px;
  color: var(--text-main);
}

/* How to Bet Section */
.page-cockfighting__how-to-bet-section {
  background-color: var(--bg-color);
  padding: 80px 0;
  color: var(--text-main);
}

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

.page-cockfighting__step-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-cockfighting__step-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting__step-item p {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.page-cockfighting__step-link {
  display: inline-block;
  padding: 10px 25px;
  background: var(--deep-orange);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-cockfighting__step-link:hover {
  background: var(--primary-color);
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  background-color: var(--bg-color);
  padding: 80px 0;
  color: var(--text-main);
}

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

.page-cockfighting__promo-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-cockfighting__promo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__promo-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  max-width: 100%;
  display: block;
}

.page-cockfighting__promo-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting__promo-item p {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.page-cockfighting__promo-link {
  display: inline-block;
  padding: 10px 25px;
  background: var(--deep-orange);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-cockfighting__promo-link:hover {
  background: var(--primary-color);
}

/* Mobile App Section */
.page-cockfighting__mobile-app-section {
  background-color: var(--bg-color);
  padding: 80px 0;
  color: var(--text-main);
}

.page-cockfighting__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
}

.page-cockfighting__app-image {
  flex: 1 1 350px;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__app-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.page-cockfighting__app-features {
  flex: 1 1 450px;
  max-width: 600px;
  text-align: left;
}

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

.page-cockfighting__feature-list li {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.page-cockfighting__feature-list .list-icon {
  color: var(--primary-color);
  font-size: 24px;
  margin-right: 15px;
  line-height: 1;
}

/* Security & Support Section */
.page-cockfighting__security-support-section {
  background-color: var(--bg-color);
  padding: 80px 0;
  color: var(--text-main);
}

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

.page-cockfighting__support-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-cockfighting__support-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting__support-item p {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.page-cockfighting__support-link {
  display: inline-block;
  padding: 10px 25px;
  background: var(--deep-orange);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-cockfighting__support-link:hover {
  background: var(--primary-color);
}

/* FAQ Section */
.page-cockfighting__faq-section {
  background-color: var(--bg-color);
  padding: 80px 0;
  color: var(--text-main);
}

.page-cockfighting__faq-list {
  max-width: 900px;
  margin: 60px auto 0;
}

details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
  font-size: 17px;
  font-weight: 600;
}

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question::-webkit-details-marker {
  display: none;
}

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question:hover {
  background: rgba(var(--primary-rgb), 0.1);
}

.page-cockfighting__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}

.page-cockfighting__faq-toggle {
  font-size: 26px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 25px 20px;
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 0 0 8px 8px;
  color: var(--text-main);
}

details.page-cockfighting__faq-item .page-cockfighting__faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
}

.page-cockfighting__faq-button {
  display: inline-block;
  padding: 8px 20px;
  background: var(--deep-orange);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-button:hover {
  background: var(--primary-color);
}

/* Blog CTA Section */
.page-cockfighting__blog-cta-section {
  background-color: var(--bg-color);
  padding: 80px 0;
  color: var(--text-main);
}

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

.page-cockfighting__blog-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-cockfighting__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.page-cockfighting__blog-content {
  padding: 25px;
}

.page-cockfighting__blog-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-cockfighting__blog-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting__blog-title a:hover {
  color: var(--secondary-color);
}

.page-cockfighting__blog-meta {
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
}

.page-cockfighting__blog-excerpt {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.page-cockfighting__blog-readmore {
  display: inline-block;
  padding: 8px 20px;
  background: var(--deep-orange);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-cockfighting__blog-readmore:hover {
  background: var(--primary-color);
}

/* Global variables for colors */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --primary-rgb: 255, 140, 26; /* RGB for primary color */
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  --card-bg: #17191F;
  --bg-color: #0D0E12;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__section-title {
    font-size: 32px;
  }
  .page-cockfighting__text-block {
    font-size: 16px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(26px, 4vw, 40px);
  }
  .page-cockfighting__hero-description {
    font-size: 17px;
  }
  .page-cockfighting__feature-title, .page-cockfighting__type-title, .page-cockfighting__promo-title, .page-cockfighting__support-title, .page-cockfighting__blog-title {
    font-size: 22px;
  }
  .page-cockfighting__feature-item img, .page-cockfighting__type-item img, .page-cockfighting__promo-item img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-cockfighting__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-cockfighting__text-block {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .page-cockfighting__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-cockfighting__cta-wrapper {
    margin-top: 40px;
  }
  /* Hero Section */
  .page-cockfighting__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__hero-image {
    margin-bottom: 20px;
    border-radius: 8px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 15px;
  }
  .page-cockfighting__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  /* Grids */
  .page-cockfighting__features-grid, .page-cockfighting__types-grid, .page-cockfighting__steps-grid, .page-cockfighting__promotions-grid, .page-cockfighting__support-grid, .page-cockfighting__blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  .page-cockfighting__feature-item, .page-cockfighting__type-item, .page-cockfighting__step-item, .page-cockfighting__promo-item, .page-cockfighting__support-item, .page-cockfighting__blog-card {
    padding: 25px;
    border-radius: 8px;
  }
  .page-cockfighting__feature-item img, .page-cockfighting__type-item img, .page-cockfighting__promo-item img, .page-cockfighting__blog-card img {
    
    border-radius: 6px;
    margin-bottom: 20px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-cockfighting__app-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-cockfighting__app-image {
    max-width: 100%;
    border-radius: 8px;
  }
  .page-cockfighting__app-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-cockfighting__app-features {
    text-align: center;
    max-width: 100%;
  }
  .page-cockfighting__feature-list {
    padding-left: 0;
    margin-bottom: 20px;
  }
  .page-cockfighting__feature-list li {
    font-size: 16px;
    justify-content: center;
  }
  /* FAQ */
  details.page-cockfighting__faq-item {
    border-radius: 6px;
  }
  details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-cockfighting__faq-qtext {
    font-size: 16px;
  }
  .page-cockfighting__faq-toggle {
    font-size: 22px;
    width: 25px;
  }
  details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 20px 15px;
  }
  details.page-cockfighting__faq-item .page-cockfighting__faq-answer p {
    font-size: 15px;
  }
  .page-cockfighting__faq-button {
    width: auto !important;
    max-width: 100% !important;
    font-size: 14px;
    padding: 8px 15px;
  }
  .page-cockfighting__blog-content {
    padding: 20px;
  }
  .page-cockfighting__blog-title {
    font-size: 20px;
  }
  .page-cockfighting__blog-excerpt {
    font-size: 15px;
  }
  .page-cockfighting__blog-readmore {
    font-size: 14px;
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__section-title {
    font-size: 24px;
  }
  .page-cockfighting__text-block {
    font-size: 14px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(22px, 7vw, 32px);
  }
  .page-cockfighting__hero-description {
    font-size: 15px;
  }
  .page-cockfighting__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-cockfighting__feature-title, .page-cockfighting__type-title, .page-cockfighting__promo-title, .page-cockfighting__support-title, .page-cockfighting__blog-title {
    font-size: 20px;
  }
  .page-cockfighting__feature-item img, .page-cockfighting__type-item img, .page-cockfighting__promo-item img, .page-cockfighting__blog-card img {
    
  }
  .page-cockfighting__feature-list li {
    font-size: 15px;
  }
  .page-cockfighting__faq-qtext {
    font-size: 15px;
  }
}