/* style/live-cockfighting-today.css */

/* Variables */
:root {
  --primary-color: #B22222; /* Firebrick */
  --secondary-color: #FFD700; /* Gold */
  --dark-background: #1a1a1a; /* Dark grey for contrast */
  --light-text: #ffffff; /* White for dark backgrounds */
  --dark-text: #333333; /* Dark grey for light backgrounds */
  --accent-blue: #4ddddd; /* Complementary to primary for emphasis */
  --accent-purple: #0028ff; /* Complementary to secondary for details */
}

.page-live-cockfighting-today {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--light-text);
  background-color: var(--dark-background);
  line-height: 1.6;
}

.page-live-cockfighting-today__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live-cockfighting-today__hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: var(--light-text);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(135deg, var(--primary-color) 0%, darken(var(--primary-color), 15%) 100%); /* Darker primary for depth */
  padding-bottom: 20px;
}

.page-live-cockfighting-today__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15;
}

.page-live-cockfighting-today__hero .page-live-cockfighting-today__container {
  position: relative;
  z-index: 1;
}

.page-live-cockfighting-today__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-live-cockfighting-today__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-text);
}

.page-live-cockfighting-today__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-live-cockfighting-today__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-live-cockfighting-today__btn--primary {
  background-color: var(--secondary-color); /* Gold button */
  color: var(--dark-text); /* Dark text on gold */
}

.page-live-cockfighting-today__btn--primary:hover {
  background-color: darken(var(--secondary-color), 10%);
  transform: translateY(-2px);
}

.page-live-cockfighting-today__btn--secondary {
  background-color: transparent;
  color: var(--secondary-color); /* Gold border, gold text */
  border: 2px solid var(--secondary-color);
}

.page-live-cockfighting-today__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--dark-text);
  transform: translateY(-2px);
}

.page-live-cockfighting-today__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-live-cockfighting-today__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-live-cockfighting-today__section {
  padding: 60px 0;
  text-align: center;
}

.page-live-cockfighting-today__section:nth-of-type(even) {
  background-color: lighten(var(--dark-background), 5%);
}

.page-live-cockfighting-today__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--primary-color); /* Firebrick for section titles */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-live-cockfighting-today__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--light-text);
}

.page-live-cockfighting-today__schedule {
  background-color: var(--dark-background);
}

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

.page-live-cockfighting-today__event-card {
  background-color: lighten(var(--dark-background), 10%);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  color: var(--light-text);
}

.page-live-cockfighting-today__event-card:hover {
  transform: translateY(-5px);
}

.page-live-cockfighting-today__event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary-color);
}

.page-live-cockfighting-today__event-card h3 {
  font-size: 1.5em;
  margin: 20px 20px 10px 20px;
  color: var(--secondary-color);
}

.page-live-cockfighting-today__event-card p {
  margin: 0 20px 10px 20px;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-live-cockfighting-today__event-card p i {
  color: var(--primary-color);
}

.page-live-cockfighting-today__event-status {
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-live-cockfighting-today__event-status--live {
  background-color: #e74c3c; /* Red */
  color: var(--light-text);
}

.page-live-cockfighting-today__event-status--upcoming {
  background-color: #f39c12; /* Orange */
  color: var(--light-text);
}

.page-live-cockfighting-today__event-card .page-live-cockfighting-today__btn {
  margin: 0 20px 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
  background-color: var(--primary-color); /* Firebrick button */
  color: var(--light-text); /* White text on firebrick */
}

.page-live-cockfighting-today__event-card .page-live-cockfighting-today__btn:hover {
  background-color: darken(var(--primary-color), 10%);
}

.page-live-cockfighting-today__highlights .page-live-cockfighting-today__content-grid,
.page-live-cockfighting-today__tips .page-live-cockfighting-today__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  text-align: left;
  align-items: center;
}

.page-live-cockfighting-today__content-grid--reverse {
  grid-template-areas: "image text"; /* Default order for tips */
}

@media (min-width: 768px) {
  .page-live-cockfighting-today__content-grid--reverse {
    grid-template-areas: "text image"; /* Reverse order for tips on larger screens */
  }
}

.page-live-cockfighting-today__text-content {
  padding-right: 20px;
}

.page-live-cockfighting-today__image-content {
  padding-left: 20px;
}

.page-live-cockfighting-today__feature-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 3px solid var(--secondary-color);
}

.page-live-cockfighting-today__highlights p,
.page-live-cockfighting-today__tips p {
  margin-bottom: 20px;
  color: var(--light-text);
}

.page-live-cockfighting-today__betting-guide {
  background-color: lighten(var(--dark-background), 5%);
}

.page-live-cockfighting-today__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-cockfighting-today__step-card {
  background-color: var(--dark-background);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: var(--light-text);
}

.page-live-cockfighting-today__step-icon {
  font-size: 3em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-live-cockfighting-today__step-card h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-live-cockfighting-today__step-card p {
  font-size: 1em;
  margin-bottom: 20px;
  color: var(--light-text);
}

.page-live-cockfighting-today__disclaimer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #aaa;
}

.page-live-cockfighting-today__faq-item {
  background-color: lighten(var(--dark-background), 10%);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live-cockfighting-today__faq-question {
  font-size: 1.3em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-live-cockfighting-today__faq-answer {
  color: var(--light-text);
  font-size: 1em;
}

.page-live-cockfighting-today__faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-live-cockfighting-today__call-to-action {
  background: linear-gradient(90deg, var(--primary-color), darken(var(--primary-color), 10%));
  padding: 80px 0;
}

.page-live-cockfighting-today__call-to-action-content {
  max-width: 900px;
}

.page-live-cockfighting-today__call-to-action .page-live-cockfighting-today__section-title {
  color: var(--light-text);
  text-shadow: none;
}

.page-live-cockfighting-today__call-to-action p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--light-text);
}

.page-live-cockfighting-today__call-to-action .page-live-cockfighting-today__btn {
  margin: 0 10px;
}

.page-live-cockfighting-today__call-to-action .page-live-cockfighting-today__btn--primary {
  background-color: var(--secondary-color);
  color: var(--dark-text);
}

.page-live-cockfighting-today__call-to-action .page-live-cockfighting-today__btn--secondary {
  background-color: transparent;
  border: 2px solid var(--light-text);
  color: var(--light-text);
}

.page-live-cockfighting-today__call-to-action .page-live-cockfighting-today__btn--secondary:hover {
  background-color: var(--light-text);
  color: var(--dark-text);
}

.highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-live-cockfighting-today__title {
    font-size: 2.8em;
  }
  .page-live-cockfighting-today__subtitle {
    font-size: 1.2em;
  }
  .page-live-cockfighting-today__section-title {
    font-size: 2em;
  }
  .page-live-cockfighting-today__highlights .page-live-cockfighting-today__content-grid,
  .page-live-cockfighting-today__tips .page-live-cockfighting-today__content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-live-cockfighting-today__text-content,
  .page-live-cockfighting-today__image-content {
    padding: 0;
  }
  .page-live-cockfighting-today__content-grid--reverse {
    grid-template-areas: unset; /* Reset for mobile */
  }
}

@media (max-width: 768px) {
  .page-live-cockfighting-today__hero {
    padding: 80px 0 20px 0;
  }
  .page-live-cockfighting-today__title {
    font-size: 2.2em;
  }
  .page-live-cockfighting-today__subtitle {
    font-size: 1.1em;
  }
  .page-live-cockfighting-today__cta-group {
    flex-direction: column;
  }
  .page-live-cockfighting-today__btn {
    width: 80%;
    margin: 0 auto 15px auto;
  }
  .page-live-cockfighting-today__section {
    padding: 40px 0;
  }
  .page-live-cockfighting-today__section-title {
    font-size: 1.8em;
  }
  .page-live-cockfighting-today__event-grid,
  .page-live-cockfighting-today__steps {
    grid-template-columns: 1fr;
  }
  .page-live-cockfighting-today__call-to-action .page-live-cockfighting-today__btn {
    width: 90%;
    margin: 10px auto;
  }
}

@media (max-width: 480px) {
  .page-live-cockfighting-today__title {
    font-size: 1.8em;
  }
  .page-live-cockfighting-today__subtitle {
    font-size: 1em;
  }
  .page-live-cockfighting-today__btn--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
  .page-live-cockfighting-today__section-title {
    font-size: 1.6em;
  }
  .page-live-cockfighting-today__event-card h3 {
    font-size: 1.3em;
  }
  .page-live-cockfighting-today__faq-question {
    font-size: 1.1em;
  }
}