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

/* Base styles for the page */
.page-cockfighting-today-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default body background */
}

.page-cockfighting-today-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Sections */
.page-cockfighting-today-live__section {
  padding: 80px 0;
  text-align: center;
}

.page-cockfighting-today-live__dark-section {
  background-color: #26A9E0; /* Main brand color */
  color: #ffffff;
}

.page-cockfighting-today-live__light-bg {
  background-color: #f5f5f5; /* Light background for contrast */
  color: #333333;
}

.page-cockfighting-today-live__section-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section */
  font-weight: bold;
}

.page-cockfighting-today-live__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-cockfighting-today-live__btn-primary,
.page-cockfighting-today-live__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box; /* Crucial for button width calculations */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-cockfighting-today-live__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border-color: #EA7C07;
}

.page-cockfighting-today-live__btn-primary:hover {
  background-color: #d66d06;
  border-color: #d66d06;
}

.page-cockfighting-today-live__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0; /* Main brand color for secondary action */
  border-color: #26A9E0;
}

.page-cockfighting-today-live__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-cockfighting-today-live__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-cockfighting-today-live__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%; /* Ensure container respects max-width */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hero Section */
.page-cockfighting-today-live__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 700px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 60px;
}

.page-cockfighting-today-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-cockfighting-today-live__hero-title {
  font-size: 4.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-cockfighting-today-live__hero-description {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-cockfighting-today-live__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-cockfighting-today-live__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Introduction Section */
.page-cockfighting-today-live__introduction .page-cockfighting-today-live__section-title {
  color: #26A9E0;
}

.page-cockfighting-today-live__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-cockfighting-today-live__feature-item {
  text-align: left;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-cockfighting-today-live__feature-item:hover {
  transform: translateY(-5px);
}

.page-cockfighting-today-live__feature-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-cockfighting-today-live__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Schedule Section */
.page-cockfighting-today-live__schedule-section .page-cockfighting-today-live__section-title {
  color: #26A9E0;
}

.page-cockfighting-today-live__image-full-width {
  width: 100%;
  height: auto;
  max-width: 1000px; /* Example size */
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-cockfighting-today-live__schedule-item {
  text-align: left;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-cockfighting-today-live__schedule-title {
  font-size: 1.6em;
  color: #333333;
  margin-bottom: 10px;
}

.page-cockfighting-today-live__schedule-details {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

/* Betting Guide Section */
.page-cockfighting-today-live__betting-guide-section .page-cockfighting-today-live__section-title {
  color: #ffffff;
}

.page-cockfighting-today-live__betting-guide-section .page-cockfighting-today-live__text-block {
  color: #f0f0f0;
}

.page-cockfighting-today-live__image-centered {
  display: block;
  margin: 40px auto;
  max-width: 800px; /* Example size */
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-today-live__ordered-list {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
  max-width: 800px;
  margin: 50px auto;
  text-align: left;
}

.page-cockfighting-today-live__ordered-list li {
  counter-increment: my-awesome-counter;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-cockfighting-today-live__ordered-list li::before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #EA7C07; /* Login color for numbering */
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-cockfighting-today-live__list-title {
  color: #ffffff;
  font-size: 1.6em;
  margin-bottom: 10px;
}

/* Technology Section */
.page-cockfighting-today-live__technology-section .page-cockfighting-today-live__section-title {
  color: #26A9E0;
}

.page-cockfighting-today-live__unordered-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 50px auto;
  text-align: left;
}

.page-cockfighting-today-live__unordered-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-cockfighting-today-live__unordered-list li::before {
  content: '✓'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: #26A9E0;
  font-weight: bold;
}

/* Security Section */
.page-cockfighting-today-live__security-section .page-cockfighting-today-live__section-title {
  color: #ffffff;
}