/* style/cockfighting.css */
.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Main text color */
  background-color: #08160F; /* Overall background color */
  line-height: 1.6;
}

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom padding */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-cockfighting__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-cockfighting__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-cockfighting__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting__cta-buttons--center {
  justify-content: center;
  margin-top: 40px;
}

.page-cockfighting__cta-buttons--faq {
  margin-top: 15px;
  justify-content: flex-start;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Main text color for buttons */
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-cockfighting__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-cockfighting__btn-secondary {
  background-color: transparent;
  border: 2px solid #22C768; /* Auxiliary color for border */
  color: #22C768; /* Auxiliary color for text */
}

.page-cockfighting__btn-secondary:hover {
  background-color: #22C768;
  color: #08160F; /* Dark background color for text on hover */
}

.page-cockfighting__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-cockfighting__btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.page-cockfighting__section {
  padding: 60px 0;
  box-sizing: border-box;
}

.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #F2FFF6; /* Main text color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(242, 255, 246, 0.3);
}

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

.page-cockfighting__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #A7D9B8; /* Secondary text color */
}

.page-cockfighting__text-block strong {
  color: #F2FFF6;
}

.page-cockfighting__card-bg {
  background-color: #11271B; /* Card background color */
}

.page-cockfighting__dark-bg {
  background-color: #08160F; /* Overall background color */
}

.page-cockfighting__about-cockfighting {
  background-color: #08160F;
}

.page-cockfighting__what-is-cockfighting .page-cockfighting__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-cockfighting__what-is-cockfighting .page-cockfighting__text-content {
  flex: 1;
}

.page-cockfighting__image-content {
  flex: 1;
  min-width: 300px;
}

.page-cockfighting__image-right {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting__card {
  background-color: #11271B; /* Card background color */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
  text-align: center;
}

.page-cockfighting__card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold color for card titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting__card-text {
  font-size: 1rem;
  color: #A7D9B8; /* Secondary text color */
  line-height: 1.7;
}

.page-cockfighting__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-cockfighting__list-item {
  background-color: #11271B; /* Card background color */
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
  position: relative;
  padding-left: 80px;
}

.page-cockfighting__list-item::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #F2C14E; /* Gold color for step numbers */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #0A4B2C; /* Deep Green */
  border: 2px solid #F2C14E;
}

.page-cockfighting__list-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-cockfighting__list-text {
  font-size: 1rem;
  color: #A7D9B8; /* Secondary text color */
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-cockfighting__tips-section .page-cockfighting__content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.page-cockfighting__tips-section .page-cockfighting__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-cockfighting__tips-section .page-cockfighting__text-content {
  flex: 1;
}

.page-cockfighting__image-left {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 500px;
}

.page-cockfighting__bullet-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-cockfighting__bullet-list .page-cockfighting__list-item {
  background-color: transparent;
  padding: 0;
  margin-bottom: 15px;
  box-shadow: none;
  border: none;
  position: relative;
  padding-left: 30px;
}

.page-cockfighting__bullet-list .page-cockfighting__list-item::before {
  content: '⚡'; /* Use an emoji or a custom icon */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: #57E38D; /* Glow color */
  background-color: transparent;
  border: none;
  width: auto;
  height: auto;
}

.page-cockfighting__bullet-list .page-cockfighting__list-item strong {
  color: #F2FFF6;
}

.page-cockfighting__why-choose-us .page-cockfighting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__feature-item {
  background-color: #11271B; /* Card background color */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-cockfighting__feature-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold color for feature titles */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-cockfighting__feature-text {
  font-size: 1rem;
  color: #A7D9B8; /* Secondary text color */
  line-height: 1.7;
}

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

.page-cockfighting__faq-item {
  background-color: #11271B; /* Card background color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6; /* Main text color */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider color */
  list-style: none; /* For details/summary native styling */
}

.page-cockfighting__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-cockfighting__faq-question .page-cockfighting__faq-qtext {
  flex-grow: 1;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F2C14E; /* Gold color for toggle icon */
  margin-left: 15px;
}

.page-cockfighting__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Secondary text color */
  line-height: 1.7;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-cockfighting__floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-cockfighting__floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 45px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: #F2FFF6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__floating-btn--register {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-cockfighting__floating-btn--login {
  background: #F2C14E; /* Gold color for login button */
  color: #08160F; /* Dark background color for text */
}

.page-cockfighting__floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__hero-section {
    padding-top: 10px;
  }

  .page-cockfighting__hero-content {
    padding: 0 15px;
  }

  .page-cockfighting__what-is-cockfighting .page-cockfighting__content-wrapper,
  .page-cockfighting__tips-section .page-cockfighting__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-cockfighting__tips-section .page-cockfighting__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-cockfighting__image-content {
    margin-top: 30px;
  }

  .page-cockfighting__image-left,
  .page-cockfighting__image-right {
    max-width: 100%;
  }

  .page-cockfighting__bullet-list .page-cockfighting__list-item::before {
    left: 15px;
  }

  .page-cockfighting__bullet-list .page-cockfighting__list-item {
    padding-left: 45px;
  }
}

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

  .page-cockfighting__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-cockfighting__main-title {
    font-size: 2rem;
  }

  .page-cockfighting__subtitle {
    font-size: 1rem;
  }

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

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__cta-buttons,
  .page-cockfighting__button-group,
  .page-cockfighting__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-cockfighting__cta-buttons--faq {
    flex-direction: row;
    justify-content: flex-start;
  }

  .page-cockfighting__section {
    padding: 40px 0;
  }

  .page-cockfighting__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-cockfighting__container {
    padding: 0 15px;
  }

  .page-cockfighting__text-block {
    font-size: 1rem;
  }

  .page-cockfighting__card {
    padding: 25px;
  }

  .page-cockfighting__card-title {
    font-size: 1.3rem;
  }

  .page-cockfighting__list-item {
    padding: 25px 25px 25px 70px;
  }

  .page-cockfighting__list-item::before {
    left: 20px;
    top: 25px;
    font-size: 1.1rem;
    width: 35px;
    height: 35px;
  }

  .page-cockfighting__list-title {
    font-size: 1.2rem;
  }

  .page-cockfighting__feature-item {
    padding: 25px;
  }

  .page-cockfighting__feature-title {
    font-size: 1.3rem;
  }

  .page-cockfighting__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-cockfighting__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__video-section {
    padding-top: 10px !important;
  }

  .page-cockfighting video,
  .page-cockfighting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__video-section,
  .page-cockfighting__video-container,
  .page-cockfighting__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-cockfighting__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting__floating-cta {
    flex-direction: row;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 15px;
    background-color: rgba(8, 22, 15, 0.9);
    border-top: 1px solid #1E3A2A;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }

  .page-cockfighting__floating-btn {
    flex: 1;
    width: auto;
    height: 40px;
    border-radius: 20px;
  }
}