/* style/blog-online-cockfighting-betting-tips.css */

/* --- General Styles & Body Contrast Fix --- */
/* body padding-top is handled by shared.css; this page should not re-apply var(--header-offset) */
.page-blog-online-cockfighting-betting-tips {
  color: var(--text-main-color, #F2FFF6); /* Default text color for dark background */
  background-color: var(--background-color, #08160F); /* Ensure consistency with body background */
  font-family: 'Arial', sans-serif; /* Example font */
  line-height: 1.6;
}

/* --- Color Variables based on Custom Palette --- */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg-color: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* --- Section Styling --- */
.page-blog-online-cockfighting-betting-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px; /* Space below content */
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background-color: var(--background-color);
}

.page-blog-online-cockfighting-betting-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height */
}

.page-blog-online-cockfighting-betting-tips__hero-content {
  position: relative; /* Ensure content is above image but not overlapping */
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  margin-top: 20px; /* Space between image and content */
  color: var(--text-main-color);
}

.page-blog-online-cockfighting-betting-tips__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gold-color); /* Use gold for main title for prominence */
  margin-bottom: 15px;
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem); /* Responsive font size for H1 */
}

.page-blog-online-cockfighting-betting-tips__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-blog-online-cockfighting-betting-tips__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

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

.page-blog-online-cockfighting-betting-tips__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-online-cockfighting-betting-tips__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-online-cockfighting-betting-tips__btn-secondary {
  background: transparent;
  color: var(--text-main-color);
  border: 2px solid var(--border-color);
}

.page-blog-online-cockfighting-betting-tips__btn-secondary:hover {
  background: var(--border-color);
  color: #ffffff;
}

.page-blog-online-cockfighting-betting-tips__content-area,
.page-blog-online-cockfighting-betting-tips__tips-section,
.page-blog-online-cockfighting-betting-tips__risk-control-section,
.page-blog-online-cockfighting-betting-tips__platform-benefits,
.page-blog-online-cockfighting-betting-tips__faq-section,
.page-blog-online-cockfighting-betting-tips__conclusion-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-online-cockfighting-betting-tips__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-online-cockfighting-betting-tips__light-bg {
  background-color: var(--deep-green-color); /* Using deep green for contrast against main dark bg */
  color: var(--text-main-color);
}

.page-blog-online-cockfighting-betting-tips__section-title {
  font-size: clamp(1.8rem, 3.5vw + 1rem, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color);
}

.page-blog-online-cockfighting-betting-tips__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* --- Features Grid --- */
.page-blog-online-cockfighting-betting-tips__features-grid,
.page-blog-online-cockfighting-betting-tips__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-online-cockfighting-betting-tips__feature-card,
.page-blog-online-cockfighting-betting-tips__benefit-card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-secondary-color);
  border: 1px solid var(--divider-color);
  transition: transform 0.3s ease;
}

.page-blog-online-cockfighting-betting-tips__feature-card:hover,
.page-blog-online-cockfighting-betting-tips__benefit-card:hover {
  transform: translateY(-5px);
}

.page-blog-online-cockfighting-betting-tips__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-blog-online-cockfighting-betting-tips__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

/* --- Image Text Layout --- */
.page-blog-online-cockfighting-betting-tips__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-online-cockfighting-betting-tips__image-text-layout--reverse {
  flex-direction: row-reverse;
}

.page-blog-online-cockfighting-betting-tips__text-content {
  flex: 1;
}

.page-blog-online-cockfighting-betting-tips__content-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-online-cockfighting-betting-tips__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-online-cockfighting-betting-tips__list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--text-secondary-color);
}

.page-blog-online-cockfighting-betting-tips__list li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-online-cockfighting-betting-tips__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* --- FAQ Section --- */
.page-blog-online-cockfighting-betting-tips__faq-list {
  margin-top: 40px;
}

.page-blog-online-cockfighting-betting-tips__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-blog-online-cockfighting-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
  user-select: none;
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-blog-online-cockfighting-betting-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-online-cockfighting-betting-tips__faq-question:hover {
  background-color: var(--primary-color);
}

.page-blog-online-cockfighting-betting-tips__faq-qtext {
  flex-grow: 1;
  color: var(--text-main-color);
}

.page-blog-online-cockfighting-betting-tips__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-online-cockfighting-betting-tips__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-blog-online-cockfighting-betting-tips__hero-content {
    max-width: 700px;
  }
  .page-blog-online-cockfighting-betting-tips__image-text-layout {
    flex-direction: column;
    gap: 30px;
  }
  .page-blog-online-cockfighting-betting-tips__image-text-layout--reverse {
    flex-direction: column; /* On smaller screens, reverse direction is less important */
  }
  .page-blog-online-cockfighting-betting-tips__content-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-online-cockfighting-betting-tips__hero-section {
    padding-bottom: 30px;
    padding-top: 10px !important; /* Ensure small top padding */
  }

  .page-blog-online-cockfighting-betting-tips__main-title {
    font-size: clamp(1.8rem, 6vw + 1rem, 2.5rem);
  }

  .page-blog-online-cockfighting-betting-tips__hero-description {
    font-size: 1rem;
  }

  .page-blog-online-cockfighting-betting-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-online-cockfighting-betting-tips__btn-primary,
  .page-blog-online-cockfighting-betting-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-blog-online-cockfighting-betting-tips__content-area,
  .page-blog-online-cockfighting-betting-tips__tips-section,
  .page-blog-online-cockfighting-betting-tips__risk-control-section,
  .page-blog-online-cockfighting-betting-tips__platform-benefits,
  .page-blog-online-cockfighting-betting-tips__faq-section,
  .page-blog-online-cockfighting-betting-tips__conclusion-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-online-cockfighting-betting-tips__section-title {
    font-size: clamp(1.5rem, 5vw + 1rem, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-online-cockfighting-betting-tips__text-block,
  .page-blog-online-cockfighting-betting-tips__list li,
  .page-blog-online-cockfighting-betting-tips__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-online-cockfighting-betting-tips__features-grid,
  .page-blog-online-cockfighting-betting-tips__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-online-cockfighting-betting-tips__feature-card,
  .page-blog-online-cockfighting-betting-tips__benefit-card {
    padding: 20px;
  }

  .page-blog-online-cockfighting-betting-tips__card-title {
    font-size: 1.3rem;
  }

  .page-blog-online-cockfighting-betting-tips__content-image,
  .page-blog-online-cockfighting-betting-tips__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Ensure all image containers also conform */
  .page-blog-online-cockfighting-betting-tips__image-text-layout,
  .page-blog-online-cockfighting-betting-tips__features-grid,
  .page-blog-online-cockfighting-betting-tips__benefits-grid,
  .page-blog-online-cockfighting-betting-tips__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-blog-online-cockfighting-betting-tips__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-online-cockfighting-betting-tips__faq-toggle {
    font-size: 1.5rem;
  }
}

/* Image CSS rules for minimum size and no filters */
.page-blog-online-cockfighting-betting-tips img {
  min-width: 200px;
  min-height: 200px;
  filter: none !important; /* Absolutely no CSS filters */
}

/* Specific rule to prevent images from being too small in content areas */
.page-blog-online-cockfighting-betting-tips__content-area img,
.page-blog-online-cockfighting-betting-tips__tips-section img,
.page-blog-online-cockfighting-betting-tips__risk-control-section img,
.page-blog-online-cockfighting-betting-tips__platform-benefits img {
  min-width: 200px;
  min-height: 200px;
  width: auto;
  height: auto;
  max-width: 100%;
}

/* Overriding any potential smaller sizes in media queries if not explicitly handled */
@media (max-width: 768px) {
  .page-blog-online-cockfighting-betting-tips img {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}