/* style/cockfighting-live-tutorial.css */
.page-cockfighting-live-tutorial {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
}

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

.page-cockfighting-live-tutorial__hero {
  background: linear-gradient(135deg, #B22222, #FFD700);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-cockfighting-live-tutorial__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF; /* Ensures high contrast */
  font-weight: bold;
}

.page-cockfighting-live-tutorial__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF; /* Ensures high contrast */
}

.page-cockfighting-live-tutorial__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-cockfighting-live-tutorial__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-cockfighting-live-tutorial__button--primary {
  background-color: #B22222;
  color: #FFFFFF;
}

.page-cockfighting-live-tutorial__button--primary:hover {
  background-color: #991e1e;
  transform: translateY(-2px);
}

.page-cockfighting-live-tutorial__button--secondary {
  background-color: #FFD700;
  color: #333333;
}

.page-cockfighting-live-tutorial__button--secondary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-cockfighting-live-tutorial__button--tertiary {
  background-color: #555555;
  color: #FFFFFF;
}

.page-cockfighting-live-tutorial__button--tertiary:hover {
  background-color: #444444;
  transform: translateY(-2px);
}

.page-cockfighting-live-tutorial__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.page-cockfighting-live-tutorial__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-cockfighting-live-tutorial__section-title {
  font-size: 2.5em;
  color: #B22222;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting-live-tutorial__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-cockfighting-live-tutorial__subtitle {
  font-size: 1.8em;
  color: #B22222;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-cockfighting-live-tutorial__step {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 5px;
}

.page-cockfighting-live-tutorial__step-title {
  font-size: 1.6em;
  color: #B22222;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-cockfighting-live-tutorial__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-cockfighting-live-tutorial__image--small {
  max-width: 600px;
}

.page-cockfighting-live-tutorial__image--medium {
  max-width: 800px;
}

.page-cockfighting-live-tutorial__image--large {
  max-width: 1000px;
}

.page-cockfighting-live-tutorial__list {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-cockfighting-live-tutorial__list li {
  margin-bottom: 10px;
  color: #555555;
}

.page-cockfighting-live-tutorial__faq-item {
  margin-bottom: 30px;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 5px;
}

.page-cockfighting-live-tutorial__faq-question {
  font-size: 1.4em;
  color: #B22222;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-cockfighting-live-tutorial__tip-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.page-cockfighting-live-tutorial__tip-title {
  font-size: 1.5em;
  color: #B22222;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-cockfighting-live-tutorial__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting-live-tutorial__hero-title {
    font-size: 2.5em;
  }
  .page-cockfighting-live-tutorial__hero-description {
    font-size: 1.1em;
  }
  .page-cockfighting-live-tutorial__hero-actions {
    flex-direction: column;
  }
  .page-cockfighting-live-tutorial__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-cockfighting-live-tutorial__section-title {
    font-size: 2em;
  }
  .page-cockfighting-live-tutorial__step-title,
  .page-cockfighting-live-tutorial__faq-question,
  .page-cockfighting-live-tutorial__tip-title {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-live-tutorial__hero-title {
    font-size: 2em;
  }
  .page-cockfighting-live-tutorial__hero-description {
    font-size: 1em;
  }
  .page-cockfighting-live-tutorial__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-cockfighting-live-tutorial__section {
    padding: 40px 0;
  }
  .page-cockfighting-live-tutorial__section-title {
    font-size: 1.8em;
  }
}