/* style/cockfighting-arena-event-calendar.css */
.page-cockfighting-arena-event-calendar {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text for dark background */
  background-color: #0A2342; /* Main dark background */
  line-height: 1.6;
}

.page-cockfighting-arena-event-calendar__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2342, #1A3A5B); /* Dark blue gradient */
  position: relative;
  overflow: hidden;
}

.page-cockfighting-arena-event-calendar__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-cockfighting-arena-event-calendar__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-cockfighting-arena-event-calendar__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-cockfighting-arena-event-calendar__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-cockfighting-arena-event-calendar__hero-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-cockfighting-arena-event-calendar__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 1000px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-arena-event-calendar__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-cockfighting-arena-event-calendar__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-cockfighting-arena-event-calendar__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-arena-event-calendar__section-intro {
  font-size: 1.1em;
  color: #CCCCCC;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-arena-event-calendar__why-mcw77 {
  background-color: #1A3A5B;
}

.page-cockfighting-arena-event-calendar__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting-arena-event-calendar__feature-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-cockfighting-arena-event-calendar__feature-item:hover {
  transform: translateY(-10px);
}

.page-cockfighting-arena-event-calendar__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-cockfighting-arena-event-calendar__feature-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting-arena-event-calendar__feature-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-cockfighting-arena-event-calendar__feature-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-cockfighting-arena-event-calendar__feature-button:hover {
  background-color: #E6C200;
}

.page-cockfighting-arena-event-calendar__top-tournaments {
  background-color: #0A2342;
}

.page-cockfighting-arena-event-calendar__tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting-arena-event-calendar__tournament-item {
  background-color: #1A3A5B;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-cockfighting-arena-event-calendar__tournament-item:hover {
  transform: translateY(-8px);
}

.page-cockfighting-arena-event-calendar__tournament-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting-arena-event-calendar__tournament-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-cockfighting-arena-event-calendar__tournament-item p {
  color: #CCCCCC;
  font-size: 0.95em;
}

.page-cockfighting-arena-event-calendar__guide {
  background-color: #1A3A5B;
}

.page-cockfighting-arena-event-calendar__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-cockfighting-arena-event-calendar__guide-step {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-cockfighting-arena-event-calendar__guide-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-cockfighting-arena-event-calendar__guide-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-cockfighting-arena-event-calendar__guide-step p {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-cockfighting-arena-event-calendar__betting-tips {
  background-color: #0A2342;
  text-align: left;
}

.page-cockfighting-arena-event-calendar__tips-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-cockfighting-arena-event-calendar__tips-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-arena-event-calendar__tips-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-cockfighting-arena-event-calendar__tips-list li {
  background-color: #1A3A5B;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #E0E0E0;
  font-size: 1.1em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-arena-event-calendar__tips-list li strong {
  color: #FFD700;
}

.page-cockfighting-arena-event-calendar__tips-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-cockfighting-arena-event-calendar__tips-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-cockfighting-arena-event-calendar__mcw77-platform {
  background-color: #1A3A5B;
}

.page-cockfighting-arena-event-calendar__platform-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-cockfighting-arena-event-calendar__platform-text {
  max-width: 700px;
}

.page-cockfighting-arena-event-calendar__platform-text p {
  color: #E0E0E0;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-cockfighting-arena-event-calendar__platform-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-cockfighting-arena-event-calendar__platform-text li {
  color: #E0E0E0;
  font-size: 1.05em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-cockfighting-arena-event-calendar__platform-text li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-cockfighting-arena-event-calendar__platform-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-cockfighting-arena-event-calendar__platform-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-cockfighting-arena-event-calendar__platform-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-arena-event-calendar__cta {
  background: linear-gradient(135deg, #0A2342, #1A3A5B);
  padding: 80px 20px;
  text-align: center;
}

.page-cockfighting-arena-event-calendar__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-cockfighting-arena-event-calendar__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-arena-event-calendar__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-cockfighting-arena-event-calendar__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-arena-event-calendar__cta-button--primary {
  background-color: #FFD700;
  color: #0A2342;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-cockfighting-arena-event-calendar__cta-button--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-cockfighting-arena-event-calendar__cta-button--secondary {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-cockfighting-arena-event-calendar__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-cockfighting-arena-event-calendar__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-cockfighting-arena-event-calendar__hero-content {
    text-align: left;
    max-width: 50%;
    margin-right: 40px;
  }

  .page-cockfighting-arena-event-calendar__hero-image-wrapper {
    margin-top: 0;
    max-width: 45%;
  }

  .page-cockfighting-arena-event-calendar__hero-title {
    font-size: 4em;
  }

  .page-cockfighting-arena-event-calendar__section {
    padding: 80px 40px;
  }

  .page-cockfighting-arena-event-calendar__section-title {
    font-size: 3em;
  }

  .page-cockfighting-arena-event-calendar__tips-content {
    flex-direction: row;
    text-align: left;
  }

  .page-cockfighting-arena-event-calendar__platform-content {
    flex-direction: row;
    text-align: left;
  }

  .page-cockfighting-arena-event-calendar__platform-text {
    margin-right: 40px;
  }
}

@media (max-width: 767px) {
  .page-cockfighting-arena-event-calendar__hero-title {
    font-size: 2.5em;
  }
  .page-cockfighting-arena-event-calendar__section-title {
    font-size: 2em;
  }
  .page-cockfighting-arena-event-calendar__cta-title {
    font-size: 2.2em;
  }
  .page-cockfighting-arena-event-calendar__tips-content,
  .page-cockfighting-arena-event-calendar__platform-content {
    flex-direction: column;
  }
  .page-cockfighting-arena-event-calendar__platform-text {
    order: 2;
  }
  .page-cockfighting-arena-event-calendar__platform-image {
    order: 1;
  }
  .page-cockfighting-arena-event-calendar__cta-buttons {
    flex-direction: column;
  }
  .page-cockfighting-arena-event-calendar__cta-button {
    width: 100%;
    max-width: 300px;
  }
}