.page-index-upcoming-cockfighting-events {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #FFFFFF);
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-index-upcoming-cockfighting-events__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

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

.page-index-upcoming-cockfighting-events__section--introduction,
.page-index-upcoming-cockfighting-events__section--security-support,
.page-index-upcoming-cockfighting-events__section--faq {
  background-color: #ffffff;
}

.page-index-upcoming-cockfighting-events__section--quick-access,
.page-index-upcoming-cockfighting-events__section--promotions,
.page-index-upcoming-cockfighting-events__section--latest-blog {
  background-color: #26A9E0; /* Primary color as background */
  color: #ffffff; /* White text for primary color background */
}

.page-index-upcoming-cockfighting-events__section-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from section for contrast */
  font-weight: bold;
}

.page-index-upcoming-cockfighting-events__paragraph {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-index-upcoming-cockfighting-events__text-center {
    text-align: center;
}

.page-index-upcoming-cockfighting-events__button-group--margin-top {
    margin-top: 40px;
}

/* HERO Section */
.page-index-upcoming-cockfighting-events__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #26A9E0, #FFFFFF);
}

.page-index-upcoming-cockfighting-events__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-upcoming-cockfighting-events__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-upcoming-cockfighting-events__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-upcoming-cockfighting-events__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff; /* White text on hero for better visibility */
}

.page-index-upcoming-cockfighting-events__main-title {
  font-size: 48px;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-upcoming-cockfighting-events__intro-text {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-upcoming-cockfighting-events__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-upcoming-cockfighting-events__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-upcoming-cockfighting-events__cta-button--primary {
  background: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-index-upcoming-cockfighting-events__cta-button--primary:hover {
  background: #d46f06; /* Darken #EA7C07 by 10% */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-upcoming-cockfighting-events__cta-button--secondary {
  background: #ffffff;
  color: #26A9E0; /* Primary color */
  border: 2px solid #26A9E0;
}

.page-index-upcoming-cockfighting-events__cta-button--secondary:hover {
  background: #f0f0f0;
  color: #1f8ec4; /* Darken #26A9E0 by 10% */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* General Buttons */
.page-index-upcoming-cockfighting-events__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #26A9E0; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  border: none;
}

.page-index-upcoming-cockfighting-events__btn-primary:hover {
  background: #1f8ec4; /* Darken #26A9E0 by 10% */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-upcoming-cockfighting-events__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: #ffffff;
  color: #26A9E0; /* Primary color */
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  border: 2px solid #26A9E0;
}

.page-index-upcoming-cockfighting-events__btn-secondary:hover {
  background: #f0f0f0;
  color: #1f8ec4; /* Darken #26A9E0 by 10% */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Grid Layouts */
.page-index-upcoming-cockfighting-events__grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-upcoming-cockfighting-events__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Cards */
.page-index-upcoming-cockfighting-events__card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333333; /* Default text color for light card background */
}