/* style/cockfighting-betting-rules.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0a0a0a;
  --card-background-dark-theme: rgba(255, 255, 255, 0.1);
  --card-background-light-theme: #ffffff;
  --border-color: #e0e0e0;
}

.page-cockfighting-betting-rules {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Inherited from body via shared.css */
  padding-top: 120px; /* Fixed nav bar spacing for desktop */
}

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

.page-cockfighting-betting-rules__hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #00004d 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--text-light);
}

.page-cockfighting-betting-rules__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-betting-rules__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-cockfighting-betting-rules__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-cockfighting-betting-rules__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-cockfighting-betting-rules__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-cockfighting-betting-rules__cta-button--primary {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-cockfighting-betting-rules__cta-button--primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-rules__cta-button--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-cockfighting-betting-rules__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-rules__content-section {
  padding: 60px 0;
  color: var(--text-light); /* Default for dark body background */
}

.page-cockfighting-betting-rules__dark-bg {
  background-color: #1a1a1a;
  color: var(--text-light);
}

.page-cockfighting-betting-rules__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-betting-rules__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
  color: #f0f0f0;
}

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

.page-cockfighting-betting-rules__card,
.page-cockfighting-betting-rules__advice-card {
  background: var(--card-background-dark-theme);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
}

.page-cockfighting-betting-rules__card:hover,
.page-cockfighting-betting-rules__advice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-betting-rules__card-image,
.page-cockfighting-betting-rules__advice-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-cockfighting-betting-rules__card-title,
.page-cockfighting-betting-rules__advice-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-cockfighting-betting-rules__card-description,
.page-cockfighting-betting-rules__advice-description {
  font-size: 1em;
  color: #cccccc;
  text-align: justify;
}

.page-cockfighting-betting-rules__step-list,
.page-cockfighting-betting-rules__bullet-list,
.page-cockfighting-betting-rules__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-cockfighting-betting-rules__step-item,
.page-cockfighting-betting-rules__list-item,
.page-cockfighting-betting-rules__feature-item {
  background: var(--card-background-dark-theme);
  border-left: 5px solid var(--primary-color);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-cockfighting-betting-rules__step-title,
.page-cockfighting-betting-rules__list-title,
.page-cockfighting-betting-rules__feature-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-cockfighting-betting-rules__step-item p,
.page-cockfighting-betting-rules__list-item p,
.page-cockfighting-betting-rules__feature-item p {
  font-size: 1.05em;
  color: #cccccc;
  text-align: justify;
}

.page-cockfighting-betting-rules__step-item a,
.page-cockfighting-betting-rules__list-item a,
.page-cockfighting-betting-rules__feature-item a,
.page-cockfighting-betting-rules__cta-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-cockfighting-betting-rules__step-item a:hover,
.page-cockfighting-betting-rules__list-item a:hover,
.page-cockfighting-betting-rules__feature-item a:hover,
.page-cockfighting-betting-rules__cta-text a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-cockfighting-betting-rules__cta-area {
  text-align: center;
  margin-top: 50px;
}

.page-cockfighting-betting-rules__call-to-action {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 60px 0;
  text-align: center;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-rules__cta-heading {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-cockfighting-betting-rules__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333333;
}

.page-cockfighting-betting-rules__call-to-action .page-cockfighting-betting-rules__cta-button--primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-cockfighting-betting-rules__call-to-action .page-cockfighting-betting-rules__cta-button--primary:hover {
  background: #000066;
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting-betting-rules__hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting-betting-rules__section-title {
    font-size: 2.2em;
  }
  .page-cockfighting-betting-rules__cta-heading {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-betting-rules {
    padding-top: 100px !important; /* Fixed nav bar spacing for mobile */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-cockfighting-betting-rules__container {
    padding: 0 15px;
  }

  .page-cockfighting-betting-rules__hero-section {
    padding: 60px 0;
  }

  .page-cockfighting-betting-rules__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-cockfighting-betting-rules__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-cockfighting-betting-rules__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting-betting-rules__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-cockfighting-betting-rules__content-section {
    padding: 40px 0;
  }

  .page-cockfighting-betting-rules__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-cockfighting-betting-rules__text-block {
    font-size: 0.95em;
  }

  .page-cockfighting-betting-rules__card-grid,
  .page-cockfighting-betting-rules__advice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting-betting-rules__card,
  .page-cockfighting-betting-rules__advice-card {
    padding: 20px;
  }

  .page-cockfighting-betting-rules__card-image,
  .page-cockfighting-betting-rules__advice-image {
    height: 180px;
    max-width: 100% !important;
    width: 100% !important;
    object-fit: contain; /* Ensure full image visibility on mobile */
  }

  .page-cockfighting-betting-rules__card-title,
  .page-cockfighting-betting-rules__advice-title {
    font-size: 1.3em;
  }

  .page-cockfighting-betting-rules__step-item,
  .page-cockfighting-betting-rules__list-item,
  .page-cockfighting-betting-rules__feature-item {
    padding: 20px;
  }

  .page-cockfighting-betting-rules__step-title,
  .page-cockfighting-betting-rules__list-title,
  .page-cockfighting-betting-rules__feature-title {
    font-size: 1.4em;
  }

  .page-cockfighting-betting-rules__call-to-action {
    padding: 40px 0;
  }

  .page-cockfighting-betting-rules__cta-heading {
    font-size: 2em;
  }

  .page-cockfighting-betting-rules__cta-text {
    font-size: 1em;
  }

  /* Ensure all image containers are responsive */
  .page-cockfighting-betting-rules img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-cockfighting-betting-rules__hero-container,
  .page-cockfighting-betting-rules__content-section .page-cockfighting-betting-rules__container,
  .page-cockfighting-betting-rules__card-grid,
  .page-cockfighting-betting-rules__advice-grid,
  .page-cockfighting-betting-rules__card,
  .page-cockfighting-betting-rules__advice-card,
  .page-cockfighting-betting-rules__step-item,
  .page-cockfighting-betting-rules__list-item,
  .page-cockfighting-betting-rules__feature-item,
  .page-cockfighting-betting-rules__call-to-action .page-cockfighting-betting-rules__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent content overflow */
  }
}

@media (max-width: 480px) {
  .page-cockfighting-betting-rules__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting-betting-rules__section-title {
    font-size: 1.6em;
  }
  .page-cockfighting-betting-rules__cta-heading {
    font-size: 1.8em;
  }
}