.page-cockfighting-live-stream {
  --primary-color: #4A00B7;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body bg */
  background-color: var(--dark-bg-1);
}

.page-cockfighting-live-stream__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-cockfighting-live-stream__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

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

/* Header Offset */
.page-cockfighting-live-stream__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-cockfighting-live-stream__section-title {
  font-size: 2.5em;
  color: inherit;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting-live-stream__section-description {
  font-size: 1.1em;
  color: inherit;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Hero Section */
.page-cockfighting-live-stream__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-cockfighting-live-stream__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-cockfighting-live-stream__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-cockfighting-live-stream__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-cockfighting-live-stream__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-cockfighting-live-stream__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-cockfighting-live-stream__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-cockfighting-live-stream__btn-primary,
.page-cockfighting-live-stream__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%;
  box-sizing: border-box;
}

.page-cockfighting-live-stream__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

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

.page-cockfighting-live-stream__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-cockfighting-live-stream__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Video Section */
.page-cockfighting-live-stream__video-section {
  padding: 80px 0;
  text-align: center;
}

.page-cockfighting-live-stream__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-stream__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-cockfighting-live-stream__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

/* Why Choose Us Section */
.page-cockfighting-live-stream__why-choose-us {
  padding: 80px 0;
}

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

.page-cockfighting-live-stream__feature-item {
  background-color: #ffffff;
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-cockfighting-live-stream__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting-live-stream__feature-text {
  font-size: 1em;
  color: var(--text-dark);
}

/* Arena Showcase Section */
.page-cockfighting-live-stream__arena-showcase {
  padding: 80px 0;
}

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

.page-cockfighting-live-stream__arena-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-cockfighting-live-stream__arena-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-cockfighting-live-stream__arena-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin: 20px 15px 10px;
}

.page-cockfighting-live-stream__arena-text {
  font-size: 1em;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-cockfighting-live-stream__arena-types {
  margin-top: 60px;
  text-align: center;
}

.page-cockfighting-live-stream__arena-subtitle {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}