/* style/cockfighting-event-analysis.css */

/* Base Styles for Page Content */
.page-cockfighting-event-analysis {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  line-height: 1.6;
  padding-top: 120px; /* Spacing for fixed header on desktop */
}

.page-cockfighting-event-analysis__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-event-analysis__heading {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Primary brand color */
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.page-cockfighting-event-analysis__sub-heading {
  font-size: 24px;
  font-weight: bold;
  color: #DC143C; /* Secondary brand color */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-cockfighting-event-analysis__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-cockfighting-event-analysis__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-cockfighting-event-analysis__list li {
  margin-bottom: 10px;
}

.page-cockfighting-event-analysis__text-link {
  color: #FFD700; /* Link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting-event-analysis__text-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-cockfighting-event-analysis__highlight {
  color: #FFD700;
  font-weight: bold;
}

/* HERO Section */
.page-cockfighting-event-analysis__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: -120px; /* Compensate for main padding-top */
}

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

.page-cockfighting-event-analysis__hero-image {
  width: 100%;
  margin: 0;
}

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

/* LOGO Carousel Section */
.page-cockfighting-event-analysis__logo-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background: #0d0d0d; /* Slightly lighter dark background */
}

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

.page-cockfighting-event-analysis__logo-carousel {
  display: flex;
  gap: 20px;
  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 the carousel track */
}

.page-cockfighting-event-analysis__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-cockfighting-event-analysis__logo-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: #222222; /* Darker background for logo item */
  border: 1px solid #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; /* Allow logo item itself to be clickable */
}

.page-cockfighting-event-analysis__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

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

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

/* Game Display Section */
.page-cockfighting-event-analysis__games-section {
  width: 100%;
  padding: 60px 20px;
  background: #000000; /* Body background color */
}

.page-cockfighting-event-analysis__games-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.page-cockfighting-event-analysis__featured-game-area {
  width: 100%;
}

.page-cockfighting-event-analysis__featured-game-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #FFD700; /* Yellow text */
  text-align: left;
}

.page-cockfighting-event-analysis__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #222222;
  border: 1px solid #444444;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-event-analysis__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.page-cockfighting-event-analysis__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-cockfighting-event-analysis__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.page-cockfighting-event-analysis__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-cockfighting-event-analysis__games-grid-area {
  width: 100%;
}

.page-cockfighting-event-analysis__games-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.page-cockfighting-event-analysis__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.page-cockfighting-event-analysis__games-tab:hover {
  color: #FFD700;
}

.page-cockfighting-event-analysis__games-tab.active {
  color: #FFD700; /* Primary brand color */
  text-decoration: underline;
}

.page-cockfighting-event-analysis__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none; /* Default hidden */
}

.page-cockfighting-event-analysis__games-grid.active {
  display: grid; /* Active display */
}

.page-cockfighting-event-analysis__game-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #222222;
  border: 1px solid #444444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-event-analysis__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.page-cockfighting-event-analysis__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-cockfighting-event-analysis__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.page-cockfighting-event-analysis__game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-cockfighting-event-analysis__game-card-title {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 0 0;
  padding: 0 5px 10px;
  color: #ffffff; /* Light text for dark card background */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Intro Section */
.page-cockfighting-event-analysis__intro-section {
  padding: 60px 20px;
  background: #1a1a1a; /* Darker background */
}

/* Quick Links Section */
.page-cockfighting-event-analysis__quick-links-section {
  padding: 60px 20px;
  background: #0d0d0d;
  text-align: center;
}

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

.page-cockfighting-event-analysis__quick-link-card {
  background: #222222;
  border-radius: 12px;
  padding: 30px;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #444444;
}

.page-cockfighting-event-analysis__quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.page-cockfighting-event-analysis__quick-link-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-cockfighting-event-analysis__quick-link-title {
  font-size: 18px;
  font-weight: bold;
  color: #FFD700;
}

.page-cockfighting-event-analysis__backup-links {
  margin-top: 60px;
  color: #f0f0f0;
}

.page-cockfighting-event-analysis__backup-links .page-cockfighting-event-analysis__sub-heading {
  color: #FFD700;
}

.page-cockfighting-event-analysis__backup-links ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-cockfighting-event-analysis__backup-links li a {
  background: #DC143C;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-cockfighting-event-analysis__backup-links li a:hover {
  background: #FFD700;
  color: #000000;
  transform: translateY(-3px);
}

/* Core Games Section */
.page-cockfighting-event-analysis__core-games-section {
  padding: 60px 20px;
  background: #f0f0f0; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-cockfighting-event-analysis__core-games-section .page-cockfighting-event-analysis__heading {
  color: #DC143C;
}

.page-cockfighting-event-analysis__core-games-section .page-cockfighting-event-analysis__sub-heading {
  color: #333333;
}

.page-cockfighting-event-analysis__core-games-section .page-cockfighting-event-analysis__text-block,
.page-cockfighting-event-analysis__core-games-section .page-cockfighting-event-analysis__list {
  color: #333333;
}

.page-cockfighting-event-analysis__core-games-section .page-cockfighting-event-analysis__text-link {
  color: #DC143C;
}

.page-cockfighting-event-analysis__core-games-section .page-cockfighting-event-analysis__text-link:hover {
  color: #FFD700;
}

.page-cockfighting-event-analysis__core-games-section .page-cockfighting-event-analysis__highlight {
  color: #DC143C;
}

/* Promotions Section */
.page-cockfighting-event-analysis__promotions-section {
  padding: 60px 20px;
  background: #1a1a1a;
}

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

.page-cockfighting-event-analysis__promo-card {
  background: #222222;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #444444;
}

.page-cockfighting-event-analysis__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.page-cockfighting-event-analysis__promo-card img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting-event-analysis__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting-event-analysis__promo-description {
  font-size: 15px;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-cockfighting-event-analysis__btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #000000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting-event-analysis__btn-primary:hover {
  background: #DC143C;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Security & Customer Service Section */
.page-cockfighting-event-analysis__security-cs-section {
  padding: 60px 20px;
  background: #f0f0f0;
  color: #333333;
}

.page-cockfighting-event-analysis__security-cs-section .page-cockfighting-event-analysis__heading {
  color: #DC143C;
}

.page-cockfighting-event-analysis__security-cs-section .page-cockfighting-event-analysis__sub-heading {
  color: #333333;
}

.page-cockfighting-event-analysis__security-cs-section .page-cockfighting-event-analysis__text-link {
  color: #DC143C;
}

.page-cockfighting-event-analysis__security-cs-section .page-cockfighting-event-analysis__text-link:hover {
  color: #FFD700;
}

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

.page-cockfighting-event-analysis__feature-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.page-cockfighting-event-analysis__feature-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting-event-analysis__feature-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 15px;
}

.page-cockfighting-event-analysis__feature-description {
  font-size: 15px;
  color: #555555;
}

.page-cockfighting-event-analysis__contact-info {
  margin-top: 50px;
  text-align: center;
}

/* FAQ Section */
.page-cockfighting-event-analysis__faq-section {
  padding: 60px 20px;
  background: #1a1a1a;
}

.page-cockfighting-event-analysis__faq-list {
  margin-top: 40px;
}

.page-cockfighting-event-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #222222;
  border: 1px solid #444444;
}

.page-cockfighting-event-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #2c2c2c;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-cockfighting-event-analysis__faq-question:hover {
  background: #3a3a3a;
}

.page-cockfighting-event-analysis__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-cockfighting-event-analysis__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-cockfighting-event-analysis__faq-item.active .page-cockfighting-event-analysis__faq-toggle {
  color: #DC143C;
  transform: rotate(45deg); /* Rotate to form 'X' or '−' */
}

.page-cockfighting-event-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #f0f0f0;
}

.page-cockfighting-event-analysis__faq-item.active .page-cockfighting-event-analysis__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px !important;
  opacity: 1;
  background: #222222;
  border-radius: 0 0 8px 8px;
}

/* Blog Section */
.page-cockfighting-event-analysis__blog-section {
  padding: 60px 20px;
  background: #f0f0f0;
  color: #333333;
}

.page-cockfighting-event-analysis__blog-section .page-cockfighting-event-analysis__heading {
  color: #DC143C;
}

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

.page-cockfighting-event-analysis__blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-cockfighting-event-analysis__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-event-analysis__blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-cockfighting-event-analysis__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-cockfighting-event-analysis__blog-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  padding: 20px 20px 10px;
}

.page-cockfighting-event-analysis__blog-excerpt {
  font-size: 15px;
  color: #555555;
  padding: 0 20px 15px;
}

.page-cockfighting-event-analysis__blog-date {
  font-size: 13px;
  color: #888888;
  padding: 0 20px 20px;
  display: block;
}

/* Footer Placeholder */
.page-cockfighting-event-analysis__footer-placeholder {
  padding: 30px 20px;
  background: #0d0d0d;
  text-align: center;
  color: #999999;
  font-size: 14px;
  border-top: 1px solid #222222;
}

.page-cockfighting-event-analysis__copyright {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting-event-analysis__heading {
    font-size: 32px;
  }

  .page-cockfighting-event-analysis__sub-heading {
    font-size: 22px;
  }

  .page-cockfighting-event-analysis__games-layout {
    grid-template-columns: 1fr;
  }

  .page-cockfighting-event-analysis__featured-game-image {
    height: 400px;
  }

  .page-cockfighting-event-analysis__games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-cockfighting-event-analysis__quick-links-section .page-cockfighting-event-analysis__links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-cockfighting-event-analysis__promotions-grid,
  .page-cockfighting-event-analysis__features-grid,
  .page-cockfighting-event-analysis__blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-cockfighting-event-analysis {
    padding-top: 100px !important; /* Mobile fixed header spacing */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-cockfighting-event-analysis__hero-section {
    margin-top: -100px !important; /* Compensate for mobile main padding-top */
  }

  .page-cockfighting-event-analysis__container,
  .page-cockfighting-event-analysis__intro-section,
  .page-cockfighting-event-analysis__quick-links-section,
  .page-cockfighting-event-analysis__core-games-section,
  .page-cockfighting-event-analysis__promotions-section,
  .page-cockfighting-event-analysis__security-cs-section,
  .page-cockfighting-event-analysis__faq-section,
  .page-cockfighting-event-analysis__blog-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting-event-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-cockfighting-event-analysis__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-cockfighting-event-analysis__sub-heading {
    font-size: 20px;
  }

  .page-cockfighting-event-analysis__logo-carousel-section {
    padding: 30px 15px;
  }
  
  .page-cockfighting-event-analysis__logo-item {
    width: 150px;
    height: 150px;
  }
  
  .page-cockfighting-event-analysis__logo-carousel {
    gap: 15px;
  }

  .page-cockfighting-event-analysis__games-section {
    padding: 40px 15px;
  }
  
  .page-cockfighting-event-analysis__featured-game-title {
    font-size: 20px;
  }
  
  .page-cockfighting-event-analysis__featured-game-image {
    height: 300px;
  }
  
  .page-cockfighting-event-analysis__games-tabs {
    gap: 15px;
  }
  
  .page-cockfighting-event-analysis__games-tab {
    font-size: 16px;
  }
  
  .page-cockfighting-event-analysis__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .page-cockfighting-event-analysis__game-card-image {
    height: 150px;
  }
  
  .page-cockfighting-event-analysis__game-card-title {
    font-size: 13px;
    margin: 8px 0 0 0;
    padding: 0 3px;
  }

  .page-cockfighting-event-analysis__quick-links-section .page-cockfighting-event-analysis__links-grid {
    grid-template-columns: 1fr;
  }

  .page-cockfighting-event-analysis__quick-link-card img {
    width: 80px;
    height: 80px;
  }

  .page-cockfighting-event-analysis__quick-link-title {
    font-size: 16px;
  }

  .page-cockfighting-event-analysis__backup-links ul {
    flex-direction: column;
    align-items: center;
  }

  .page-cockfighting-event-analysis__promotions-grid,
  .page-cockfighting-event-analysis__features-grid,
  .page-cockfighting-event-analysis__blog-grid {
    grid-template-columns: 1fr;
  }

  .page-cockfighting-event-analysis__promo-card img {
    width: 100%;
    height: 180px;
  }

  .page-cockfighting-event-analysis__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-cockfighting-event-analysis__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-cockfighting-event-analysis__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-cockfighting-event-analysis__faq-answer {
    padding: 0 15px;
  }
  
  .page-cockfighting-event-analysis__faq-item.active .page-cockfighting-event-analysis__faq-answer {
    padding: 15px !important;
  }

  .page-cockfighting-event-analysis__blog-card img {
    height: 180px;
  }

  .page-cockfighting-event-analysis__footer-placeholder {
    padding: 20px 15px;
  }
}