/* style/cockfighting-betting-tips.css */
:root {
  --page-primary-color: #F2C14E;
  --page-secondary-color: #FFD36B;
  --page-card-bg: #111111;
  --page-background: #0A0A0A;
  --page-text-main: #FFF6D6;
  --page-border-color: #3A2A12;
  --page-glow-color: #FFD36B;
  --btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-cockfighting-betting-tips {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-main); /* Text Main color for overall page content */
  background-color: var(--page-background); /* Background color for the main content area */
}

.page-cockfighting-betting-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-cockfighting-betting-tips__section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.page-cockfighting-betting-tips__section-title,
.page-cockfighting-betting-tips__sub-title {
  color: var(--page-secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-cockfighting-betting-tips__section-title {
  font-size: clamp(2em, 4vw, 3.2em);
}

.page-cockfighting-betting-tips__sub-title {
  font-size: clamp(1.5em, 3vw, 2.5em);
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-cockfighting-betting-tips__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--page-text-main);
}

.page-cockfighting-betting-tips__list,
.page-cockfighting-betting-tips__numbered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-cockfighting-betting-tips__list-item,
.page-cockfighting-betting-tips__numbered-list .page-cockfighting-betting-tips__list-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--page-text-main);
  position: relative;
  padding-left: 40px; /* For custom bullet/number */
}

.page-cockfighting-betting-tips__list-item::before {
  content: '•';
  color: var(--page-primary-color);
  position: absolute;
  left: 15px;
  font-weight: bold;
  font-size: 1.2em;
}

.page-cockfighting-betting-tips__numbered-list .page-cockfighting-betting-tips__list-item {
  counter-increment: list-counter;
}

.page-cockfighting-betting-tips__numbered-list .page-cockfighting-betting-tips__list-item::before {
  content: counter(list-counter) '.';
  color: var(--page-primary-color);
  position: absolute;
  left: 15px;
  font-weight: bold;
  font-size: 1.1em;
}

.page-cockfighting-betting-tips__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

.page-cockfighting-betting-tips__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-cockfighting-betting-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting-betting-tips__hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual effect, but not text on image */
  background: rgba(10, 10, 10, 0.8);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.page-cockfighting-betting-tips__main-title {
  font-size: clamp(2.5em, 5vw, 4em);
  color: var(--page-primary-color);
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
  line-height: 1.2;
}

.page-cockfighting-betting-tips__intro-text {
  font-size: 1.2em;
  color: var(--page-text-main);
  margin-bottom: 30px;
  line-height: 1.7;
}

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

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

.page-cockfighting-betting-tips__btn-primary {
  background: var(--btn-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-cockfighting-betting-tips__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-cockfighting-betting-tips__btn-secondary {
  background: var(--page-card-bg);
  color: var(--page-primary-color);
  border: 2px solid var(--page-primary-color);
}

.page-cockfighting-betting-tips__btn-secondary:hover {
  background: var(--page-primary-color);
  color: var(--page-card-bg);
  transform: translateY(-3px);
}

/* Why ev99 game Section */
.page-cockfighting-betting-tips__why-ev99 {
  background-color: var(--page-card-bg);
  padding: 80px 0;
}

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

.page-cockfighting-betting-tips__feature-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--page-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-betting-tips__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-cockfighting-betting-tips__card-title {
  color: var(--page-secondary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-cockfighting-betting-tips__card-text {
  color: var(--page-text-main);
  font-size: 1em;
  line-height: 1.6;
}

/* How to Bet Section */
.page-cockfighting-betting-tips__how-to-bet {
  background-color: var(--page-background);
}

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

/* FAQ Section */
.page-cockfighting-betting-tips__faq-section {
  background-color: var(--page-card-bg);
}

.page-cockfighting-betting-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-cockfighting-betting-tips__faq-item {
  background-color: #1a1a1a;
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-cockfighting-betting-tips__faq-item[open] {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-primary-color);
  cursor: pointer;
  list-style: none; /* Remove default marker for summary */
  transition: background-color 0.3s ease;
}

.page-cockfighting-betting-tips__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit browsers */
}

.page-cockfighting-betting-tips__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-cockfighting-betting-tips__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-cockfighting-betting-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--page-secondary-color);
  transition: transform 0.3s ease;
}

.page-cockfighting-betting-tips__faq-item[open] .page-cockfighting-betting-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-cockfighting-betting-tips__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--page-text-main);
}

.page-cockfighting-betting-tips__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

/* Link styles */
.page-cockfighting-betting-tips a {
  color: var(--page-primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting-betting-tips a:hover {
  color: var(--page-secondary-color);
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting-betting-tips__hero-content {
    margin-top: -80px;
    padding: 20px;
  }

  .page-cockfighting-betting-tips__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
  }

  .page-cockfighting-betting-tips__intro-text {
    font-size: 1.1em;
  }

  .page-cockfighting-betting-tips__section {
    padding: 50px 0;
  }
}

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

  .page-cockfighting-betting-tips__hero-section {
    padding-bottom: 40px;
  }

  .page-cockfighting-betting-tips__hero-image-wrapper {
    max-height: 400px;
  }

  .page-cockfighting-betting-tips__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

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

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

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

  .page-cockfighting-betting-tips__btn-primary,
  .page-cockfighting-betting-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-cockfighting-betting-tips__section-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 30px;
  }

  .page-cockfighting-betting-tips__sub-title {
    font-size: clamp(1.3em, 5vw, 2em);
    margin-top: 40px;
    margin-bottom: 20px;
  }

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

  .page-cockfighting-betting-tips__list-item,
  .page-cockfighting-betting-tips__numbered-list .page-cockfighting-betting-tips__list-item {
    font-size: 0.95em;
    padding: 12px 15px 12px 35px;
  }

  .page-cockfighting-betting-tips__image {
    margin: 30px auto;
  }

  /* Mobile image, video, and container adaptations */
  .page-cockfighting-betting-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-cockfighting-betting-tips video,
  .page-cockfighting-betting-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting-betting-tips__section,
  .page-cockfighting-betting-tips__card,
  .page-cockfighting-betting-tips__container,
  .page-cockfighting-betting-tips__cta-buttons,
  .page-cockfighting-betting-tips__button-group,
  .page-cockfighting-betting-tips__btn-container,
  .page-cockfighting-betting-tips__video-section,
  .page-cockfighting-betting-tips__video-container,
  .page-cockfighting-betting-tips__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-cockfighting-betting-tips__video-section {
    padding-top: 10px !important;
  }

  .page-cockfighting-betting-tips__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-cockfighting-betting-tips__faq-answer {
    font-size: 1em;
    padding: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-betting-tips__hero-content {
    margin-top: -40px;
  }

  .page-cockfighting-betting-tips__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-cockfighting-betting-tips__intro-text {
    font-size: 0.95em;
  }

  .page-cockfighting-betting-tips__btn-primary,
  .page-cockfighting-betting-tips__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }

  .page-cockfighting-betting-tips__section-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-cockfighting-betting-tips__sub-title {
    font-size: clamp(1.1em, 6vw, 1.5em);
  }

  .page-cockfighting-betting-tips__faq-question {
    font-size: 1em;
  }

  .page-cockfighting-betting-tips__faq-answer {
    font-size: 0.95em;
  }
}