/* style/cockfighting.css */
.page-cockfighting {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--dark-bg-1);
}

.page-content {
  padding-top: 80px; /* Adjusted for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-content {
    padding-top: 60px; /* Adjusted for fixed header on mobile */
  }
}

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

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Gold color for titles */
  text-transform: uppercase;
}

.page-cockfighting__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

.page-cockfighting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-cockfighting__btn-primary {
  background: #FFD700;
  color: #8B0000; /* Dark red text for contrast */
  border-color: #FFD700;
}

.page-cockfighting__btn-primary:hover {
  background: #e6c200;
  color: #6a0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__btn-secondary {
  background: #8B0000;
  color: #FFD700; /* Gold text for contrast */
  border-color: #8B0000;
}

.page-cockfighting__btn-secondary:hover {
  background: #6a0000;
  color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* HERO Section */
.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 40px;
}

.page-cockfighting__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-cockfighting__hero-image {
  width: 100%;
  margin: 0;
}

.page-cockfighting__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* LOGO Carousel Section */
.page-cockfighting__logo-carousel-section {
  width: 100%;
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
  margin-bottom: 40px;
}

.page-cockfighting__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-cockfighting__logo-carousel {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 10px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; /* Disable user interaction for auto-scroll */
  white-space: nowrap; /* Prevent items from wrapping */
}

.page-cockfighting__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-cockfighting__logo-item {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a; /* Darker background for logo items */
  border: 1px solid #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; /* Allow logo item itself to be clickable */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-cockfighting__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  pointer-events: auto; /* Allow link inside to be clickable */
}

.page-cockfighting__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Game Display Section */
.page-cockfighting__games-section {
  width: 100%;
  padding: 60px 0;
  background: var(--dark-bg-1);
  margin-bottom: 40px;
}

.page-cockfighting__games-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-cockfighting__featured-game-area {
  width: 100%;
}

.page-cockfighting__featured-game-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #FFD700; /* Gold color */
  text-align: left;
  text-transform: uppercase;
}

.page-cockfighting__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid #333333;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}