:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-dark: #017439;
  --button-register: #C30808;
  --button-login: #C30808;
  --button-text-yellow: #FFFF00;
  --border-light: #e0e0e0;
}

.page-cockfighting-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  padding-top: var(--header-offset, 120px);
}

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

.page-cockfighting-tips__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-cockfighting-tips__section-title--white {
  color: var(--text-light);
}

.page-cockfighting-tips__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-cockfighting-tips__intro-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 20px auto 40px auto;
  text-align: center;
}

.page-cockfighting-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #00a859 100%);
  color: var(--text-light);
}

.page-cockfighting-tips__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-cockfighting-tips__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-cockfighting-tips__main-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.page-cockfighting-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  text-align: center;
}

.page-cockfighting-tips__btn-primary {
  background: var(--button-register);
  color: var(--button-text-yellow);
  border: 2px solid var(--button-text-yellow);
}

.page-cockfighting-tips__btn-primary:hover {
  background: #a90707;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-tips__btn-secondary {
  background: var(--button-login);
  color: var(--button-text-yellow);
  border: 2px solid var(--button-text-yellow);
}

.page-cockfighting-tips__btn-secondary:hover {
  background: #a90707;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting-tips__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-cockfighting-tips__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-cockfighting-tips__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-tips__grid-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-tips__dark-bg .page-cockfighting-tips__grid-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-tips__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-tips__dark-bg .page-cockfighting-tips__grid-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-tips__grid-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-cockfighting-tips__dark-bg .page-cockfighting-tips__grid-title {
  color: var(--text-light);
}

.page-cockfighting-tips__grid-item p {
  font-size: 16px;
  line-height: 1.7;
}

.page-cockfighting-tips__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

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

.page-cockfighting-tips__image-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-tips__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting-tips__text-content {
  flex: 2;
}

.page-cockfighting-tips__image-centered {
  text-align: center;
  margin-top: 40px;
}

.page-cockfighting-tips__image-centered img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting-tips__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-cockfighting-tips__list-item {
  background-color: var(--secondary-color);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 17px;
  line-height: 1.6;
  border-left: 5px solid var(--primary-color);
  transition: transform 0.2s ease;
}

.page-cockfighting-tips__list-item:hover {
  transform: translateX(5px);
}

.page-cockfighting-tips__list-item strong {
  color: var(--primary-color);
}

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

.page-cockfighting-tips__faq-list {
  margin-top: 40px;
}

.page-cockfighting-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--secondary-color);
}

.page-cockfighting-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
  padding: 0 25px;
  opacity: 0;
  color: var(--text-dark);
}

.page-cockfighting-tips__faq-item.active .page-cockfighting-tips__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 10px 10px;
}

.page-cockfighting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: var(--secondary-color);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-cockfighting-tips__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-cockfighting-tips__faq-question:active {
  background: #eeeeee;
}

.page-cockfighting-tips__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  pointer-events: none;
}

.page-cockfighting-tips__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-cockfighting-tips__faq-item.active .page-cockfighting-tips__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg);
}

.page-cockfighting-tips__text-center {
  text-align: center;
}

@media (max-width: 1024px) {
  .page-cockfighting-tips__main-title {
    font-size: 42px;
  }
  .page-cockfighting-tips__section-title {
    font-size: 32px;
  }
  .page-cockfighting-tips__sub-title {
    font-size: 22px;
  }
  .page-cockfighting-tips__grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-cockfighting-tips {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important;
  }

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

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

  .page-cockfighting-tips__main-title {
    font-size: 36px;
  }

  .page-cockfighting-tips__intro-text {
    font-size: 16px;
    margin: 15px auto 30px auto;
  }

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

  .page-cockfighting-tips__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  
  .page-cockfighting-tips__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-cockfighting-tips__section-title {
    font-size: 28px;
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .page-cockfighting-tips__sub-title {
    font-size: 20px;
    margin-top: 25px;
  }

  .page-cockfighting-tips__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-cockfighting-tips__image-text-layout {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .page-cockfighting-tips__image-text-layout--reverse {
    flex-direction: column;
  }

  .page-cockfighting-tips__image-wrapper {
    width: 100%;
    min-width: unset;
  }

  .page-cockfighting-tips__image-wrapper img,
  .page-cockfighting-tips__image-centered img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }
  
  .page-cockfighting-tips__image-centered {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-cockfighting-tips__list-item {
    font-size: 16px;
    padding: 15px 20px;
  }

  .page-cockfighting-tips__faq-question {
    padding: 18px 20px;
    flex-wrap: wrap;
  }
  
  .page-cockfighting-tips__faq-question h3 {
    font-size: 16px;
    width: calc(100% - 40px);
  }
  
  .page-cockfighting-tips__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  
  .page-cockfighting-tips__faq-answer {
    padding: 0 20px;
  }
  
  .page-cockfighting-tips__faq-item.active .page-cockfighting-tips__faq-answer {
    padding: 15px 20px !important;
  }
  
  .page-cockfighting-tips__content-section {
    padding: 40px 0;
  }
  .page-cockfighting-tips__content-section .page-cockfighting-tips__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.page-cockfighting-tips img {
  filter: none !important;
}