/* style/game-strategies-cockfighting-tips.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-game-strategies-cockfighting-tips {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css #000 */
}

/* Container for content, usually centered with a max-width */
.page-game-strategies-cockfighting-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section spacing */
.page-game-strategies-cockfighting-tips__hero-section,
.page-game-strategies-cockfighting-tips__intro-section,
.page-game-strategies-cockfighting-tips__strategy-section,
.page-game-strategies-cockfighting-tips__analysis-section,
.page-game-strategies-cockfighting-tips__advanced-strategy-section,
.page-game-strategies-cockfighting-tips__optimization-section,
.page-game-strategies-cockfighting-tips__faq-section {
  padding: 60px 0;
  text-align: center;
}

/* Specific background colors for sections based on contrast rules */
.page-game-strategies-cockfighting-tips__dark-bg {
  background-color: #000000; /* Dark background */
  color: #ffffff; /* Light text */
}

.page-game-strategies-cockfighting-tips__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff; /* Light text */
}

/* Hero Section */
.page-game-strategies-cockfighting-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-game-strategies-cockfighting-tips__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-strategies-cockfighting-tips__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-game-strategies-cockfighting-tips__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-game-strategies-cockfighting-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-strategies-cockfighting-tips__description {
  font-size: 1.15rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Call to Action Buttons */
.page-game-strategies-cockfighting-tips__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-strategies-cockfighting-tips__btn-primary,
.page-game-strategies-cockfighting-tips__btn-secondary,
.page-game-strategies-cockfighting-tips__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategies-cockfighting-tips__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-game-strategies-cockfighting-tips__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

.page-game-strategies-cockfighting-tips__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-game-strategies-cockfighting-tips__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-game-strategies-cockfighting-tips__btn-link {
  background-color: #EA7C07; /* Login color for action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-game-strategies-cockfighting-tips__btn-link:hover {
  background-color: #c96806;
  border-color: #c96806;
}

/* Section Titles */
.page-game-strategies-cockfighting-tips__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

/* Text blocks */
.page-game-strategies-cockfighting-tips__text-block {
  max-width: 900px;
  margin: 0 auto 20px auto;
  font-size: 1.1rem;
  color: #f0f0f0;
}

/* Grid containers */
.page-game-strategies-cockfighting-tips__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-strategies-cockfighting-tips__grid-two-columns {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Cards */
.page-game-strategies-cockfighting-tips__card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-strategies-cockfighting-tips__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-game-strategies-cockfighting-tips__card-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-strategies-cockfighting-tips__card-text {
  font-size: 1rem;
  color: #f0f0f0;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Feature List (Analysis Section) */
.page-game-strategies-cockfighting-tips__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.page-game-strategies-cockfighting-tips__feature-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-game-strategies-cockfighting-tips__feature-icon {
  width: 100%;
  height: 150px; /* Adjust height for consistent look */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-game-strategies-cockfighting-tips__feature-title {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-game-strategies-cockfighting-tips__feature-text {
  font-size: 0.95rem;
  color: #e0e0e0;
}

/* Strategy List (Advanced Strategy Section) */
.page-game-strategies-cockfighting-tips__strategy-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-game-strategies-cockfighting-tips__list-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #26A9E0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-game-strategies-cockfighting-tips__list-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-game-strategies-cockfighting-tips__list-text {
  font-size: 1rem;
  color: #e0e0e0;
}

/* CTA Banner */
.page-game-strategies-cockfighting-tips__cta-banner {
  background-color: #000000; /* Use primary brand color for dark section */
  color: #ffffff;
  padding: 50px 30px;
  border-radius: 12px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-strategies-cockfighting-tips__cta-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-game-strategies-cockfighting-tips__cta-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* FAQ Section */
.page-game-strategies-cockfighting-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-game-strategies-cockfighting-tips__faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-game-strategies-cockfighting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.page-game-strategies-cockfighting-tips__faq-item[open] > .page-game-strategies-cockfighting-tips__faq-question {
  background-color: #26A9E0;
  border-bottom-color: transparent;
}

.page-game-strategies-cockfighting-tips__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-game-strategies-cockfighting-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-game-strategies-cockfighting-tips__faq-question::marker {
  display: none;
}

.page-game-strategies-cockfighting-tips__faq-qtext {
  flex-grow: 1;
}

.page-game-strategies-cockfighting-tips__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  width: 20px;
  text-align: center;
}

.page-game-strategies-cockfighting-tips__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #e0e0e0;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategies-cockfighting-tips__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-game-strategies-cockfighting-tips__description {
    font-size: 1.05rem;
  }
  .page-game-strategies-cockfighting-tips__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
  .page-game-strategies-cockfighting-tips__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-game-strategies-cockfighting-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-game-strategies-cockfighting-tips__hero-section,
  .page-game-strategies-cockfighting-tips__intro-section,
  .page-game-strategies-cockfighting-tips__strategy-section,
  .page-game-strategies-cockfighting-tips__analysis-section,
  .page-game-strategies-cockfighting-tips__advanced-strategy-section,
  .page-game-strategies-cockfighting-tips__optimization-section,
  .page-game-strategies-cockfighting-tips__faq-section {
    padding: 40px 0;
  }

  .page-game-strategies-cockfighting-tips__hero-content {
    margin-top: 20px;
  }

  .page-game-strategies-cockfighting-tips__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-game-strategies-cockfighting-tips__description {
    font-size: 1rem;
  }

  .page-game-strategies-cockfighting-tips__btn-primary,
  .page-game-strategies-cockfighting-tips__btn-secondary,
  .page-game-strategies-cockfighting-tips__btn-link,
  .page-game-strategies-cockfighting-tips a[class*="button"],
  .page-game-strategies-cockfighting-tips a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-game-strategies-cockfighting-tips__cta-buttons,
  .page-game-strategies-cockfighting-tips__button-group,
  .page-game-strategies-cockfighting-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
    flex-direction: column;
    gap: 10px;
  }

  .page-game-strategies-cockfighting-tips__container,
  .page-game-strategies-cockfighting-tips__grid-container,
  .page-game-strategies-cockfighting-tips__feature-list,
  .page-game-strategies-cockfighting-tips__strategy-list,
  .page-game-strategies-cockfighting-tips__faq-list {
    padding: 0 15px;
  }

  /* Images responsive */
  .page-game-strategies-cockfighting-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images/content to prevent overflow */
  .page-game-strategies-cockfighting-tips__section,
  .page-game-strategies-cockfighting-tips__card,
  .page-game-strategies-cockfighting-tips__container,
  .page-game-strategies-cockfighting-tips__grid-container,
  .page-game-strategies-cockfighting-tips__feature-list,
  .page-game-strategies-cockfighting-tips__strategy-list,
  .page-game-strategies-cockfighting-tips__faq-list,
  .page-game-strategies-cockfighting-tips__cta-banner,
  .page-game-strategies-cockfighting-tips__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-game-strategies-cockfighting-tips__hero-section {
    padding-top: 10px !important;
  }

  .page-game-strategies-cockfighting-tips__card-image,
  .page-game-strategies-cockfighting-tips__feature-icon {
    height: auto; /* Allow height to adjust automatically */
  }

  .page-game-strategies-cockfighting-tips__cta-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .page-game-strategies-cockfighting-tips__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-game-strategies-cockfighting-tips__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-game-strategies-cockfighting-tips__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-game-strategies-cockfighting-tips__section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .page-game-strategies-cockfighting-tips__card,
  .page-game-strategies-cockfighting-tips__feature-item,
  .page-game-strategies-cockfighting-tips__list-item,
  .page-game-strategies-cockfighting-tips__faq-item {
    padding: 20px;
  }
  .page-game-strategies-cockfighting-tips__card-title {
    font-size: 1.3rem;
  }
  .page-game-strategies-cockfighting-tips__feature-title,
  .page-game-strategies-cockfighting-tips__list-title {
    font-size: 1.2rem;
  }
}