/* style/cockfighting-betting-platform-features.css */
.page-cockfighting-betting-platform-features {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-cockfighting-betting-platform-features__hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.page-cockfighting-betting-platform-features__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-cockfighting-betting-platform-features__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.7), rgba(255, 193, 7, 0.7));
  z-index: 2;
}

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

.page-cockfighting-betting-platform-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-betting-platform-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e9ecef;
}

.page-cockfighting-betting-platform-features__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting-betting-platform-features__section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-cockfighting-betting-platform-features__features-grid {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-cockfighting-betting-platform-features__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 10px;
  background-color: #f8f9fa;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-betting-platform-features__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-betting-platform-features__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid #007bff;
}

.page-cockfighting-betting-platform-features__feature-heading {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting-betting-platform-features__feature-text {
  font-size: 1em;
  color: #495057;
  margin-bottom: 10px;
}

.page-cockfighting-betting-platform-features__cta {
  background: linear-gradient(90deg, #007bff, #ffc107);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

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

.page-cockfighting-betting-platform-features__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e9ecef;
}

.page-cockfighting-betting-platform-features__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-cockfighting-betting-platform-features__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-cockfighting-betting-platform-features__btn--primary {
  background-color: #0056b3; /* Darker blue for contrast */
  color: #fff;
  border: 2px solid #0056b3;
}

.page-cockfighting-betting-platform-features__btn--primary:hover {
  background-color: #004085;
  border-color: #004085;
  transform: translateY(-2px);
}

.page-cockfighting-betting-platform-features__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-cockfighting-betting-platform-features__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.page-cockfighting-betting-platform-features__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-cockfighting-betting-platform-features__features-grid .page-cockfighting-betting-platform-features__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .page-cockfighting-betting-platform-features__hero {
    height: 500px;
  }
  .page-cockfighting-betting-platform-features__hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting-betting-platform-features__hero-description,
  .page-cockfighting-betting-platform-features__cta-description {
    font-size: 1.1em;
  }
  .page-cockfighting-betting-platform-features__section-title {
    font-size: 2em;
  }
  .page-cockfighting-betting-platform-features__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 767px) {
  .page-cockfighting-betting-platform-features__hero {
    height: 400px;
  }
  .page-cockfighting-betting-platform-features__hero-title {
    font-size: 2em;
  }
  .page-cockfighting-betting-platform-features__hero-description {
    font-size: 1em;
  }
  .page-cockfighting-betting-platform-features__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting-betting-platform-features__section-subtitle {
    font-size: 0.95em;
  }
  .page-cockfighting-betting-platform-features__feature-heading {
    font-size: 1.5em;
  }
  .page-cockfighting-betting-platform-features__cta-title {
    font-size: 2em;
  }
  .page-cockfighting-betting-platform-features__cta-description {
    font-size: 1em;
  }
  .page-cockfighting-betting-platform-features__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-cockfighting-betting-platform-features__btn {
    width: 80%;
    max-width: 300px;
  }
}

/* Ensure contrast for text on primary/secondary colors */
.page-cockfighting-betting-platform-features__hero-description,
.page-cockfighting-betting-platform-features__cta-description {
  color: #fff; /* White text on colored background for good contrast */
}

.page-cockfighting-betting-platform-features__btn--primary {
  background-color: #0056b3; /* Darker blue */
  color: #fff; /* White text */
}

.page-cockfighting-betting-platform-features__btn--secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.page-cockfighting-betting-platform-features__feature-text {
  color: #495057; /* Dark text on light background */
}