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

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

.page-cockfighting-betting-strategies .hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-cockfighting-betting-strategies .hero-section h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-strategies .hero-section p {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-cockfighting-betting-strategies .cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-cockfighting-betting-strategies .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-strategies .btn-primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #333; /* Dark text for contrast */
  border: none;
}

.page-cockfighting-betting-strategies .btn-primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-cockfighting-betting-strategies .btn-secondary {
  background-color: #007bff; /* Primary color */
  color: #fff;
  border: 1px solid #0056b3;
}

.page-cockfighting-betting-strategies .btn-secondary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-cockfighting-betting-strategies .btn-lg {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-cockfighting-betting-strategies .content-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting-betting-strategies .content-section h2 {
  font-size: 2.5em;
  color: #007bff; /* Primary color for headings */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting-betting-strategies .content-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Auxiliary color for accent */
  border-radius: 2px;
}

.page-cockfighting-betting-strategies .content-section h3 {
  font-size: 1.8em;
  color: #0056b3; /* Darker primary for subheadings */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-cockfighting-betting-strategies .content-section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
}

.page-cockfighting-betting-strategies .img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-cockfighting-betting-strategies .strategy-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-cockfighting-betting-strategies .strategy-item:hover {
  transform: translateY(-5px);
}

.page-cockfighting-betting-strategies .strategy-item h3 {
  color: #007bff;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-cockfighting-betting-strategies .strategy-item p {
  font-size: 1em;
  color: #666;
}

.page-cockfighting-betting-strategies .strategy-item .img-fluid {
  margin-top: 20px;
  max-height: 200px; /* Constrain image height in grid */
  object-fit: cover;
}

.page-cockfighting-betting-strategies ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-cockfighting-betting-strategies ul li {
  background-color: #e9f7ff; /* Light blue background for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
}

.page-cockfighting-betting-strategies ul li strong {
  color: #0056b3;
}

.page-cockfighting-betting-strategies .cta-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
}

.page-cockfighting-betting-strategies .cta-section h2 {
  color: #ffc107; /* Auxiliary color for CTA heading */
  font-size: 3em;
  margin-bottom: 20px;
}

.page-cockfighting-betting-strategies .cta-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-cockfighting-betting-strategies .hero-section h1 {
    font-size: 2.5em;
  }

  .page-cockfighting-betting-strategies .hero-section p {
    font-size: 1em;
  }

  .page-cockfighting-betting-strategies .content-section h2 {
    font-size: 2em;
  }

  .page-cockfighting-betting-strategies .content-section h3 {
    font-size: 1.5em;
  }

  .page-cockfighting-betting-strategies .strategy-grid {
    grid-template-columns: 1fr;
  }

  .page-cockfighting-betting-strategies .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting-betting-strategies .btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-betting-strategies .hero-section {
    padding: 60px 0;
  }

  .page-cockfighting-betting-strategies .hero-section h1 {
    font-size: 2em;
  }

  .page-cockfighting-betting-strategies .cta-section h2 {
    font-size: 2.2em;
  }
}