/* style/index-cockfighting-betting-intro.css */

/* General Styles */
.page-index-cockfighting-betting-intro {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-index-cockfighting-betting-intro__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-cockfighting-betting-intro__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-cockfighting-betting-intro__section:nth-child(even) {
  background-color: #e9ecef;
}

.page-index-cockfighting-betting-intro__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-index-cockfighting-betting-intro__subsection-title {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-index-cockfighting-betting-intro__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-index-cockfighting-betting-intro__btn--primary {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-index-cockfighting-betting-intro__btn--primary:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.6);
  transform: translateY(-2px);
}

.page-index-cockfighting-betting-intro__btn--secondary {
  background-color: #ffc107;
  color: #333;
  margin-left: 15px;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-index-cockfighting-betting-intro__btn--secondary:hover {
  background-color: #e0a800;
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
  transform: translateY(-2px);
}

.page-index-cockfighting-betting-intro__btn--link {
  background: none;
  color: #007bff;
  padding: 0;
  margin-top: 10px;
  font-size: 0.9em;
  text-decoration: underline;
}

.page-index-cockfighting-betting-intro__btn--link:hover {
  color: #0056b3;
}

.page-index-cockfighting-betting-intro__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-index-cockfighting-betting-intro__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #ffc107 100%);
  padding: 100px 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-index-cockfighting-betting-intro__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-index-cockfighting-betting-intro__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-index-cockfighting-betting-intro__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  color: #fff;
}

.page-index-cockfighting-betting-intro__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #eee;
}

.page-index-cockfighting-betting-intro__hero-actions {
  margin-top: 30px;
}

.page-index-cockfighting-betting-intro__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-index-cockfighting-betting-intro__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Content Grid */
.page-index-cockfighting-betting-intro__content-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-index-cockfighting-betting-intro__content-grid .page-index-cockfighting-betting-intro__text-content {
  flex: 2;
  min-width: 300px;
}

.page-index-cockfighting-betting-intro__content-grid .page-index-cockfighting-betting-intro__image-wrapper {
  flex: 1;
  min-width: 250px;
}

.page-index-cockfighting-betting-intro__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-index-cockfighting-betting-intro__section--about .page-index-cockfighting-betting-intro__content-grid {
  flex-direction: row;
}

.page-index-cockfighting-betting-intro__section--responsible-gambling .page-index-cockfighting-betting-intro__content-grid {
  flex-direction: row-reverse;
}

/* Features Section */
.page-index-cockfighting-betting-intro__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-cockfighting-betting-intro__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-cockfighting-betting-intro__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.page-index-cockfighting-betting-intro__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #007bff;
}

.page-index-cockfighting-betting-intro__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-cockfighting-betting-intro__cta-bottom {
  margin-top: 50px;
}

/* Guide Section */
.page-index-cockfighting-betting-intro__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-cockfighting-betting-intro__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: left;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-index-cockfighting-betting-intro__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  background-color: #ffc107;
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.page-index-cockfighting-betting-intro__step-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-cockfighting-betting-intro__guide-note {
  margin-top: 40px;
  font-style: italic;
  color: #555;
}

/* Tips Section */
.page-index-cockfighting-betting-intro__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-cockfighting-betting-intro__tip-item {
  background-color: #fff;
  padding: 30px;
  border-left: 5px solid #007bff;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: left;
}

.page-index-cockfighting-betting-intro__tip-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

/* Responsible Gambling Section */
.page-index-cockfighting-betting-intro__section--responsible-gambling {
  background-color: #f0f8ff;
}

.page-index-cockfighting-betting-intro__section--responsible-gambling ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-index-cockfighting-betting-intro__section--responsible-gambling ul li {
  background-color: #e6f3ff;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-left: 4px solid #007bff;
  border-radius: 5px;
  color: #333;
  text-align: left;
}

/* FAQ Section */
.page-index-cockfighting-betting-intro__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-index-cockfighting-betting-intro__faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.page-index-cockfighting-betting-intro__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-cockfighting-betting-intro__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffc107;
}

.page-index-cockfighting-betting-intro__faq-question.active::after {
  content: '-';
}

.page-index-cockfighting-betting-intro__faq-answer {
  font-size: 1em;
  color: #555;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-index-cockfighting-betting-intro__faq-answer.active {
  display: block;
}

/* Final CTA Section */
.page-index-cockfighting-betting-intro__cta-final {
  background: linear-gradient(45deg, #0056b3, #007bff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-index-cockfighting-betting-intro__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-index-cockfighting-betting-intro__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-cockfighting-betting-intro__hero-title {
    font-size: 2.8em;
  }
  .page-index-cockfighting-betting-intro__section-title {
    font-size: 2em;
  }
  .page-index-cockfighting-betting-intro__content-grid {
    flex-direction: column;
  }
  .page-index-cockfighting-betting-intro__content-grid .page-index-cockfighting-betting-intro__image-wrapper {
    order: -1; /* Image first on mobile */
  }
  .page-index-cockfighting-betting-intro__section--responsible-gambling .page-index-cockfighting-betting-intro__content-grid {
    flex-direction: column; /* Revert order for this section */
  }
}

@media (max-width: 768px) {
  .page-index-cockfighting-betting-intro__hero-section {
    padding: 80px 0;
  }
  .page-index-cockfighting-betting-intro__hero-title {
    font-size: 2.2em;
  }
  .page-index-cockfighting-betting-intro__hero-description {
    font-size: 1.1em;
  }
  .page-index-cockfighting-betting-intro__hero-actions .page-index-cockfighting-betting-intro__btn {
    margin: 10px 0;
    width: 100%;
  }
  .page-index-cockfighting-betting-intro__btn--secondary {
    margin-left: 0;
  }
  .page-index-cockfighting-betting-intro__section {
    padding: 40px 0;
  }
  .page-index-cockfighting-betting-intro__section-title {
    font-size: 1.8em;
  }
  .page-index-cockfighting-betting-intro__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-index-cockfighting-betting-intro__hero-title {
    font-size: 1.8em;
  }
  .page-index-cockfighting-betting-intro__hero-description {
    font-size: 1em;
  }
  .page-index-cockfighting-betting-intro__section-title {
    font-size: 1.5em;
  }
  .page-index-cockfighting-betting-intro__feature-item,
  .page-index-cockfighting-betting-intro__step-item,
  .page-index-cockfighting-betting-intro__tip-item {
    padding: 20px;
  }
  .page-index-cockfighting-betting-intro__step-number {
    top: 15px;
    left: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-index-cockfighting-betting-intro__step-item {
    padding-top: 50px;
  }
  .page-index-cockfighting-betting-intro__cta-title {
    font-size: 1.8em;
  }
  .page-index-cockfighting-betting-intro__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}