/* style/acb888-cockfighting.css */
.page-acb888-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #0a0a0a; /* Matches shared.css body background */
}

/* --- Hero Section --- */
.page-acb888-cockfighting__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px; /* Fixed nav spacing */
  margin-top: 0;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-acb888-cockfighting__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-acb888-cockfighting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-acb888-cockfighting__hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 20px;
}

.page-acb888-cockfighting__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-acb888-cockfighting__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-acb888-cockfighting__hero-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* --- General Section Styling --- */
.page-acb888-cockfighting__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

/* --- Why Choose Section --- */
.page-acb888-cockfighting__why-choose-section {
  background-color: #0a0a0a;
  padding: 80px 0;
}

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

.page-acb888-cockfighting__feature-card {
  background-color: #003366; /* Dark blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #004488;
  color: #ffffff;
}

.page-acb888-cockfighting__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-acb888-cockfighting__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-acb888-cockfighting__feature-text {
  font-size: 1.05em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-acb888-cockfighting__feature-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  max-width: 100%;
  display: block;
}

/* --- Bet Types Section --- */
.page-acb888-cockfighting__bet-types-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-acb888-cockfighting__type-card {
  background-color: #003366;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #004488;
  color: #ffffff;
}

.page-acb888-cockfighting__type-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-acb888-cockfighting__type-description {
  font-size: 1.0em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-acb888-cockfighting__type-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  max-width: 100%;
  display: block;
}

/* --- Guide Section --- */
.page-acb888-cockfighting__guide-section {
  background-color: #0a0a0a;
  padding: 80px 0;
}

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

.page-acb888-cockfighting__step-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #333333;
  color: #ffffff;
}

.page-acb888-cockfighting__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #003366;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-acb888-cockfighting__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-acb888-cockfighting__step-description {
  font-size: 1.0em;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* --- Promotions Section --- */
.page-acb888-cockfighting__promotions-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-acb888-cockfighting__promo-card {
  background-color: #003366;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #004488;
  color: #ffffff;
}

.page-acb888-cockfighting__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

.page-acb888-cockfighting__promo-content {
  padding: 25px;
  text-align: center;
}

.page-acb888-cockfighting__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-acb888-cockfighting__promo-description {
  font-size: 1.0em;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* --- Tips Section --- */
.page-acb888-cockfighting__tips-section {
  background-color: #0a0a0a;
  padding: 80px 0;
}

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

.page-acb888-cockfighting__tip-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #333333;
  color: #ffffff;
}

.page-acb888-cockfighting__tip-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-acb888-cockfighting__tip-description {
  font-size: 1.0em;
  line-height: 1.6;
  color: #f0f0f0;
}

/* --- Responsible Gaming Section --- */
.page-acb888-cockfighting__responsible-gaming-section {
  background-color: #003366;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-acb888-cockfighting__responsible-gaming-section .page-acb888-cockfighting__section-title {
  color: #FFD700;
}

.page-acb888-cockfighting__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* --- FAQ Section --- */
.page-acb888-cockfighting__faq-section {
  background-color: #0a0a0a;
  padding: 80px 0;
}

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