/* style/cockfighting-strategy-beginner-betting.css */
.page-cockfighting-strategy-beginner-betting {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-cockfighting-strategy-beginner-betting a {
  color: #E53E3E; /* Auxiliary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting-strategy-beginner-betting a:hover {
  color: #FF6347; /* Slightly brighter red on hover */
}

.page-cockfighting-strategy-beginner-betting .highlight {
  color: #E53E3E;
  font-weight: bold;
}

.page-cockfighting-strategy-beginner-betting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-strategy-beginner-betting__hero {
  background: linear-gradient(135deg, #1A202C 0%, #4A0000 100%); /* Dark gradient for hero */
  padding: 80px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cockfighting-strategy-beginner-betting__hero-content {
  z-index: 1;
  position: relative;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-cockfighting-strategy-beginner-betting__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF; /* White for main title */
  line-height: 1.2;
}

.page-cockfighting-strategy-beginner-betting__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #CCCCCC; /* Lighter gray for subtitle */
}

.page-cockfighting-strategy-beginner-betting__cta-button {
  display: inline-block;
  background-color: #E53E3E; /* Auxiliary color for CTA */
  color: #FFFFFF; /* White text on CTA */
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting-strategy-beginner-betting__cta-button:hover {
  background-color: #FF6347; /* Brighter red on hover */
  transform: translateY(-2px);
}

.page-cockfighting-strategy-beginner-betting__hero-image-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  height: auto;
  opacity: 0.3; /* Subtle background image */
  z-index: 0;
}

.page-cockfighting-strategy-beginner-betting__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-cockfighting-strategy-beginner-betting__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting-strategy-beginner-betting__section:last-of-type {
  border-bottom: none;
}

.page-cockfighting-strategy-beginner-betting__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-cockfighting-strategy-beginner-betting p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-cockfighting-strategy-beginner-betting h3 {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-cockfighting-strategy-beginner-betting ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-cockfighting-strategy-beginner-betting ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-cockfighting-strategy-beginner-betting__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-cockfighting-strategy-beginner-betting__content-grid.reverse {
  flex-direction: row-reverse;
}

.page-cockfighting-strategy-beginner-betting__text-content {
  flex: 1;
}

.page-cockfighting-strategy-beginner-betting__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-cockfighting-strategy-beginner-betting__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

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

.page-cockfighting-strategy-beginner-betting__tip-card {
  background-color: #2A303C; /* Slightly lighter dark background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #E53E3E;
}

.page-cockfighting-strategy-beginner-betting__tip-card h3 {
  color: #E53E3E;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-cockfighting-strategy-beginner-betting__tip-card p {
  font-size: 1em;
  color: #CCCCCC;
}

.page-cockfighting-strategy-beginner-betting__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #2A303C;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-strategy-beginner-betting__cta-block p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.page-cockfighting-strategy-beginner-betting__cta-final {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-cockfighting-strategy-beginner-betting__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-cockfighting-strategy-beginner-betting__cta-link {
  color: #CCCCCC;
  font-size: 1.1em;
  text-decoration: underline;
}

.page-cockfighting-strategy-beginner-betting__cta-link:hover {
  color: #E53E3E;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-cockfighting-strategy-beginner-betting__title {
    font-size: 2.8em;
  }
  .page-cockfighting-strategy-beginner-betting__subtitle {
    font-size: 1.2em;
  }
  .page-cockfighting-strategy-beginner-betting__section-title {
    font-size: 2em;
  }
  .page-cockfighting-strategy-beginner-betting__content-grid {
    flex-direction: column;
  }
  .page-cockfighting-strategy-beginner-betting__content-grid.reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-strategy-beginner-betting__hero {
    padding: 60px 0 30px;
  }
  .page-cockfighting-strategy-beginner-betting__title {
    font-size: 2.2em;
  }
  .page-cockfighting-strategy-beginner-betting__subtitle {
    font-size: 1em;
  }
  .page-cockfighting-strategy-beginner-betting__section {
    padding: 40px 0;
  }
  .page-cockfighting-strategy-beginner-betting__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting-strategy-beginner-betting p, .page-cockfighting-strategy-beginner-betting ul li {
    font-size: 1em;
  }
  .page-cockfighting-strategy-beginner-betting__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting-strategy-beginner-betting__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting-strategy-beginner-betting__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-strategy-beginner-betting__hero-content {
    margin-bottom: 20px;
  }
  .page-cockfighting-strategy-beginner-betting__title {
    font-size: 1.8em;
  }
  .page-cockfighting-strategy-beginner-betting__subtitle {
    font-size: 0.9em;
  }
  .page-cockfighting-strategy-beginner-betting__section-title {
    font-size: 1.5em;
  }
  .page-cockfighting-strategy-beginner-betting h3 {
    font-size: 1.3em;
  }
}