/* style/live-cockfighting-beginner-guide.css */

.page-live-cockfighting-beginner-guide {
  font-family: 'Arial', sans-serif;
  color: #2C3E50; /* Auxiliary color for general text */
  line-height: 1.6;
}

.page-live-cockfighting-beginner-guide__hero-section {
  background: linear-gradient(135deg, #C0392B 0%, #86281e 100%); /* Main color with darker variant */
  color: #FFFFFF; /* White text for contrast */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live-cockfighting-beginner-guide__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-live-cockfighting-beginner-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-live-cockfighting-beginner-guide__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #F39C12; /* Accent color for subtitle */
}

.page-live-cockfighting-beginner-guide__cta-button {
  display: inline-block;
  background-color: #F39C12; /* Accent color for CTA */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-live-cockfighting-beginner-guide__cta-button:hover {
  background-color: #e08e0b; /* Slightly darker accent on hover */
  transform: translateY(-3px);
}

.page-live-cockfighting-beginner-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.page-live-cockfighting-beginner-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-live-cockfighting-beginner-guide__section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-live-cockfighting-beginner-guide__section:nth-of-type(even) {
  background-color: #FFFFFF;
}

.page-live-cockfighting-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-live-cockfighting-beginner-guide__section-title {
  font-size: 2.5em;
  color: #C0392B; /* Main color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-live-cockfighting-beginner-guide__section-title .highlight {
  color: #2C3E50; /* Auxiliary color for highlight in titles */
}

.page-live-cockfighting-beginner-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F39C12; /* Accent color for underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-live-cockfighting-beginner-guide__intro-section p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
}

.page-live-cockfighting-beginner-guide__intro-section .keyword {
  color: #C0392B;
  font-weight: bold;
}

.page-live-cockfighting-beginner-guide__text-link {
  color: #C0392B;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-live-cockfighting-beginner-guide__text-link:hover {
  color: #e08e0b; /* Accent color on hover */
  text-decoration: underline;
}

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

.page-live-cockfighting-beginner-guide__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-cockfighting-beginner-guide__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-live-cockfighting-beginner-guide__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-live-cockfighting-beginner-guide__step-item h3 {
  font-size: 1.5em;
  color: #2C3E50;
  margin-bottom: 15px;
}

.page-live-cockfighting-beginner-guide__step-item p {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-live-cockfighting-beginner-guide__step-button {
  display: inline-block;
  background-color: #C0392B; /* Main color for step buttons */
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-live-cockfighting-beginner-guide__step-button:hover {
  background-color: #a73023; /* Darker main color on hover */
}

.page-live-cockfighting-beginner-guide__betting-guide ul,
.page-live-cockfighting-beginner-guide__betting-guide ol {
  margin-left: 25px;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #333;
}

.page-live-cockfighting-beginner-guide__betting-guide ul li,
.page-live-cockfighting-beginner-guide__betting-guide ol li {
  margin-bottom: 10px;
}

.page-live-cockfighting-beginner-guide__betting-guide h3 {
  font-size: 1.8em;
  color: #2C3E50;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #F39C12;
  padding-bottom: 10px;
}

.page-live-cockfighting-beginner-guide__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-live-cockfighting-beginner-guide__tips-section ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #333;
}

.page-live-cockfighting-beginner-guide__tips-section ul li {
  margin-bottom: 10px;
}

.page-live-cockfighting-beginner-guide__app-download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-live-cockfighting-beginner-guide__app-button {
  background-color: #2C3E50; /* Auxiliary color for app buttons */
  padding: 12px 25px;
  font-size: 1em;
}

.page-live-cockfighting-beginner-guide__app-button:hover {
  background-color: #3b506b; /* Darker auxiliary on hover */
}

.page-live-cockfighting-beginner-guide__faq-item {
  background-color: #f0f4f7;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 5px solid #C0392B;
}

.page-live-cockfighting-beginner-guide__faq-item h3 {
  color: #C0392B;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-live-cockfighting-beginner-guide__faq-item p {
  color: #444;
}

.page-live-cockfighting-beginner-guide__cta-final {
  background: #2C3E50; /* Auxiliary color for final CTA section */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-live-cockfighting-beginner-guide__cta-final .page-live-cockfighting-beginner-guide__section-title {
  color: #FFFFFF; /* White title for contrast */
}

.page-live-cockfighting-beginner-guide__cta-final .page-live-cockfighting-beginner-guide__section-title .highlight {
  color: #F39C12;
}

.page-live-cockfighting-beginner-guide__cta-final .page-live-cockfighting-beginner-guide__section-title::after {
  background-color: #F39C12;
}

.page-live-cockfighting-beginner-guide__cta-final p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-live-cockfighting-beginner-guide__cta-large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #F39C12;
  color: #FFFFFF;
}

.page-live-cockfighting-beginner-guide__cta-large:hover {
  background-color: #e08e0b;
}

.page-live-cockfighting-beginner-guide__disclaimer {
  font-size: 0.9em;
  color: #a0a0a0;
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-live-cockfighting-beginner-guide__main-title {
    font-size: 2.5em;
  }

  .page-live-cockfighting-beginner-guide__subtitle {
    font-size: 1.2em;
  }

  .page-live-cockfighting-beginner-guide__section-title {
    font-size: 2em;
  }

  .page-live-cockfighting-beginner-guide__step-grid {
    grid-template-columns: 1fr;
  }

  .page-live-cockfighting-beginner-guide__app-download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-live-cockfighting-beginner-guide__app-button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-live-cockfighting-beginner-guide__main-title {
    font-size: 2em;
  }

  .page-live-cockfighting-beginner-guide__subtitle {
    font-size: 1em;
  }

  .page-live-cockfighting-beginner-guide__section-title {
    font-size: 1.8em;
  }

  .page-live-cockfighting-beginner-guide__cta-button,
  .page-live-cockfighting-beginner-guide__cta-large {
    padding: 12px 25px;
    font-size: 1em;
  }
}