/* style/cockfighting-analysis-betting-tips.css */
.page-cockfighting-analysis-betting-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

/* HERO Section */
.page-cockfighting-analysis-betting-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden; /* Ensure no overflow */
  background: linear-gradient(180deg, #F4F7FB 0%, #E0E7F5 100%); /* Light gradient for hero section background */
}

.page-cockfighting-analysis-betting-tips__hero-container {
  position: relative;
  max-width: 1200px;
  width: 100%; /* Ensure full width within max-width */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cockfighting-analysis-betting-tips__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-analysis-betting-tips__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  filter: none; /* Ensure no filter applied */
}

.page-cockfighting-analysis-betting-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.page-cockfighting-analysis-betting-tips__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font-size clamp */
  font-weight: 700;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.page-cockfighting-analysis-betting-tips__tagline {
  font-size: 1.25rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-analysis-betting-tips__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 15px; /* Add padding to buttons container */
}

.page-cockfighting-analysis-betting-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 180px; /* Ensure buttons are not too small */
  text-align: center;
  max-width: 100%; /* Important for responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-cockfighting-analysis-betting-tips__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button Color */
  border: none;
}

.page-cockfighting-analysis-betting-tips__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-analysis-betting-tips__btn-secondary {
  background: #ffffff;
  color: #2F6BFF; /* Main Color */
  border: 2px solid #2F6BFF; /* Main Color */
}

.page-cockfighting-analysis-betting-tips__btn-secondary:hover {
  background: #2F6BFF;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* General Section Styles */
.page-cockfighting-analysis-betting-tips__section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-cockfighting-analysis-betting-tips__dark-section {
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
}

.page-cockfighting-analysis-betting-tips__section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #2F6BFF; /* Main Color */
}

.page-cockfighting-analysis-betting-tips__dark-section .page-cockfighting-analysis-betting-tips__section-title {
  color: #ffffff;
}

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

.page-cockfighting-analysis-betting-tips__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting-analysis-betting-tips__dark-section .page-cockfighting-analysis-betting-tips__text-block {
  color: #f0f0f0;
}

/* Content Grid */
.page-cockfighting-analysis-betting-tips__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-cockfighting-analysis-betting-tips__card {
  background: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border Color */
  color: #1F2D3D; /* Text Main */
}

.page-cockfighting-analysis-betting-tips__dark-section .page-cockfighting-analysis-betting-tips__card {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.page-cockfighting-analysis-betting-tips__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}