/* style/resources-88-cockfighting-live-guide.css */

:root {
  --page-primary-color: #B22222;
  --page-secondary-color: #FFD700;
  --page-text-light: #ffffff;
  --page-text-dark: #333333;
  --page-bg-dark: #000;
  --page-card-bg: rgba(255, 255, 255, 0.05);
  --page-border-color: rgba(255, 255, 255, 0.1);
}

.page-resources-88-cockfighting-live-guide {
  color: var(--page-text-light);
  background-color: var(--page-bg-dark);
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
  padding-top: 0; /* HERO section is full width and at the very top */
}

/* General Section Styling */
.page-resources-88-cockfighting-live-guide__section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--page-bg-dark);
}

.page-resources-88-cockfighting-live-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-88-cockfighting-live-guide__heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--page-secondary-color); /* Gold color for headings */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-resources-88-cockfighting-live-guide__paragraph {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--page-text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-88-cockfighting-live-guide__paragraph a {
  color: var(--page-secondary-color);
  text-decoration: none;
}

.page-resources-88-cockfighting-live-guide__paragraph a:hover {
  text-decoration: underline;
}

.page-resources-88-cockfighting-live-guide__highlight {
  color: var(--page-secondary-color);
  font-weight: bold;
}

.page-resources-88-cockfighting-live-guide__cta-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-88-cockfighting-live-guide__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
}

.page-resources-88-cockfighting-live-guide__btn--primary {
  background-color: var(--page-primary-color);
  color: var(--page-text-light);
  border-color: var(--page-primary-color);
}

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

.page-resources-88-cockfighting-live-guide__btn--secondary {
  background-color: transparent;
  color: var(--page-secondary-color);
  border-color: var(--page-secondary-color);
}

.page-resources-88-cockfighting-live-guide__btn--secondary:hover {
  background-color: var(--page-secondary-color);
  color: var(--page-bg-dark);
  transform: translateY(-2px);
}

.page-resources-88-cockfighting-live-guide__btn--small {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
}

/* HERO Section Styles */
.page-resources-88-cockfighting-live-guide__hero-section {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0; /* No margin-top needed as it's the first element */
}

.page-resources-88-cockfighting-live-guide__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-resources-88-cockfighting-live-guide__hero-image {
  width: 100%;
  margin: 0;
}

.page-resources-88-cockfighting-live-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* LOGO Carousel Section Styles */
.page-resources-88-cockfighting-live-guide__logo-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.03); /* Slightly lighter dark background */
  border-bottom: 1px solid var(--page-border-color);
}

.page-resources-88-cockfighting-live-guide__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-resources-88-cockfighting-live-guide__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;
}

.page-resources-88-cockfighting-live-guide__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-resources-88-cockfighting-live-guide__logo-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

.page-resources-88-cockfighting-live-guide__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-resources-88-cockfighting-live-guide__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
  pointer-events: auto;
}

.page-resources-88-cockfighting-live-guide__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Games Section Styles */
.page-resources-88-cockfighting-live-guide__games-section {
  width: 100%;
  padding: 60px 20px;
  background: var(--page-bg-dark);
}

.page-resources-88-cockfighting-live-guide__games-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-resources-88-cockfighting-live-guide__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-resources-88-cockfighting-live-guide__featured-game-area {
  width: 100%;
}

.page-resources-88-cockfighting-live-guide__featured-game-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: var(--page-secondary-color);
  text-align: left;
  text-transform: uppercase;
}

.page-resources-88-cockfighting-live-guide__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-88-cockfighting-live-guide__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-resources-88-cockfighting-live-guide__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-resources-88-cockfighting-live-guide__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.page-resources-88-cockfighting-live-guide__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-88-cockfighting-live-guide__games-grid-area {
  width: 100%;
}

.page-resources-88-cockfighting-live-guide__games-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: flex-start;
}

.page-resources-88-cockfighting-live-guide__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, text-decoration 0.3s ease;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}

.page-resources-88-cockfighting-live-guide__games-tab:hover {
  color: var(--page-text-light);
}

.page-resources-88-cockfighting-live-guide__games-tab.active {
  color: var(--page-primary-color); /* Red color for active tab */
  text-decoration: underline;
}

.page-resources-88-cockfighting-live-guide__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}

.page-resources-88-cockfighting-live-guide__games-grid.active {
  display: grid;
}

.page-resources-88-cockfighting-live-guide__game-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-88-cockfighting-live-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.page-resources-88-cockfighting-live-guide__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-resources-88-cockfighting-live-guide__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.page-resources-88-cockfighting-live-guide__game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-88-cockfighting-live-guide__game-card-title {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 10px 0;
  padding: 0 5px;
  color: var(--page-text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Quick Access Section Styles */
.page-resources-88-cockfighting-live-guide__section--quick-access {
  background-color: rgba(255, 255, 255, 0.03);
}

.page-resources-88-cockfighting-live-guide__link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-resources-88-cockfighting-live-guide__link-card {
  background: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-88-cockfighting-live-guide__link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-88-cockfighting-live-guide__link-card-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--page-secondary-color);
  margin-bottom: 15px;
}

.page-resources-88-cockfighting-live-guide__link-card-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

/* Games Categories Section Styles */
.page-resources-88-cockfighting-live-guide__section--games {
  background-color: var(--page-bg-dark);
}

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

.page-resources-88-cockfighting-live-guide__game-category-card {
  background: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-88-cockfighting-live-guide__game-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-88-cockfighting-live-guide__game-category-img {
  width: 100%;
  max-width: 250px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
}

.page-resources-88-cockfighting-live-guide__game-category-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

.page-resources-88-cockfighting-live-guide__game-category-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

/* Promotions Section Styles */
.page-resources-88-cockfighting-live-guide__section--promotions {
  background-color: rgba(255, 255, 255, 0.03);
}

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

.page-resources-88-cockfighting-live-guide__promo-card {
  background: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-88-cockfighting-live-guide__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-88-cockfighting-live-guide__promo-img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
}

.page-resources-88-cockfighting-live-guide__promo-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--page-secondary-color);
  margin-bottom: 10px;
}

.page-resources-88-cockfighting-live-guide__promo-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* Security & Support Section Styles */
.page-resources-88-cockfighting-live-guide__section--security-support {
  background-color: var(--page-bg-dark);
}

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

.page-resources-88-cockfighting-live-guide__security-item {
  background: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-88-cockfighting-live-guide__security-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-88-cockfighting-live-guide__security-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-resources-88-cockfighting-live-guide__security-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

.page-resources-88-cockfighting-live-guide__security-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* FAQ Section Styles */
.page-resources-88-cockfighting-live-guide__section--faq {
  background-color: rgba(255, 255, 255, 0.03);
}

.page-resources-88-cockfighting-live-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-88-cockfighting-live-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
}

.page-resources-88-cockfighting-live-guide__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: rgba(255, 255, 255, 0.8);
  text-align: left;
}

.page-resources-88-cockfighting-live-guide__faq-item.active .page-resources-88-cockfighting-live-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
}

.page-resources-88-cockfighting-live-guide__faq-answer p {
  margin: 0;
  font-size: 16px;
}

.page-resources-88-cockfighting-live-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid var(--page-border-color);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-88-cockfighting-live-guide__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-resources-88-cockfighting-live-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--page-secondary-color);
  text-align: left;
}

.page-resources-88-cockfighting-live-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--page-text-light);
  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: 32px;
  height: 32px;
}

.page-resources-88-cockfighting-live-guide__faq-item.active .page-resources-88-cockfighting-live-guide__faq-toggle {
  color: var(--page-primary-color);
  transform: rotate(45deg);
}

/* Blog Section Styles */
.page-resources-88-cockfighting-live-guide__section--blog {
  background-color: var(--page-bg-dark);
}

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

.page-resources-88-cockfighting-live-guide__blog-card {
  background: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-88-cockfighting-live-guide__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-88-cockfighting-live-guide__blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-resources-88-cockfighting-live-guide__blog-title {
  font-size: 22px;
  font-weight: bold;
  margin: 20px 20px 10px 20px;
  line-height: 1.3;
}

.page-resources-88-cockfighting-live-guide__blog-title a {
  color: var(--page-secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-88-cockfighting-live-guide__blog-title a:hover {
  color: var(--page-primary-color);
  text-decoration: underline;
}

.page-resources-88-cockfighting-live-guide__blog-summary {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 20px 15px 20px;
}

.page-resources-88-cockfighting-live-guide__blog-summary a {
  color: var(--page-primary-color);
  text-decoration: none;
}

.page-resources-88-cockfighting-live-guide__blog-summary a:hover {
  text-decoration: underline;
}

.page-resources-88-cockfighting-live-guide__blog-date {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 20px 20px 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-88-cockfighting-live-guide__heading {
    font-size: 32px;
  }

  .page-resources-88-cockfighting-live-guide__paragraph {
    font-size: 17px;
  }

  .page-resources-88-cockfighting-live-guide__games-layout {
    grid-template-columns: 1fr;
  }
  
  .page-resources-88-cockfighting-live-guide__featured-game-image {
    height: 400px;
  }

  .page-resources-88-cockfighting-live-guide__games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-resources-88-cockfighting-live-guide__logo-carousel-item {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-resources-88-cockfighting-live-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-88-cockfighting-live-guide__heading {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-resources-88-cockfighting-live-guide__paragraph {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .page-resources-88-cockfighting-live-guide__section {
    padding: 40px 15px;
  }

  .page-resources-88-cockfighting-live-guide__cta-group {
    gap: 15px;
  }

  .page-resources-88-cockfighting-live-guide__btn {
    padding: 12px 25px;
    font-size: 16px;
  }
  
  /* HERO section mobile */
  .page-resources-88-cockfighting-live-guide__hero-section {
    padding: 0;
  }
  
  .page-resources-88-cockfighting-live-guide__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* LOGO carousel mobile */
  .page-resources-88-cockfighting-live-guide__logo-carousel-section {
    padding: 30px 15px;
  }
  
  .page-resources-88-cockfighting-live-guide__logo-item {
    width: 150px;
    height: 150px;
  }
  
  .page-resources-88-cockfighting-live-guide__logo-carousel {
    gap: 15px;
  }
  
  /* Games section mobile */
  .page-resources-88-cockfighting-live-guide__games-section {
    padding: 40px 15px;
  }

  .page-resources-88-cockfighting-live-guide__games-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-resources-88-cockfighting-live-guide__featured-game-title {
    font-size: 20px;
  }
  
  .page-resources-88-cockfighting-live-guide__featured-game-image {
    height: 300px;
  }
  
  .page-resources-88-cockfighting-live-guide__games-tabs {
    gap: 15px;
  }
  
  .page-resources-88-cockfighting-live-guide__games-tab {
    font-size: 16px;
  }
  
  .page-resources-88-cockfighting-live-guide__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .page-resources-88-cockfighting-live-guide__game-card-image {
    height: 150px;
  }
  
  .page-resources-88-cockfighting-live-guide__game-card-title {
    font-size: 13px;
    margin: 8px 0 0 0;
    padding: 0 3px;
  }

  .page-resources-88-cockfighting-live-guide__link-cards,
  .page-resources-88-cockfighting-live-guide__game-categories,
  .page-resources-88-cockfighting-live-guide__promo-grid,
  .page-resources-88-cockfighting-live-guide__security-grid,
  .page-resources-88-cockfighting-live-guide__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-88-cockfighting-live-guide__link-card,
  .page-resources-88-cockfighting-live-guide__game-category-card,
  .page-resources-88-cockfighting-live-guide__promo-card,
  .page-resources-88-cockfighting-live-guide__security-item,
  .page-resources-88-cockfighting-live-guide__blog-card {
    padding: 20px;
  }

  .page-resources-88-cockfighting-live-guide__link-card-title,
  .page-resources-88-cockfighting-live-guide__game-category-title,
  .page-resources-88-cockfighting-live-guide__promo-title,
  .page-resources-88-cockfighting-live-guide__security-title,
  .page-resources-88-cockfighting-live-guide__blog-title {
    font-size: 20px;
  }

  .page-resources-88-cockfighting-live-guide__faq-question {
    padding: 15px;
  }

  .page-resources-88-cockfighting-live-guide__faq-question h3 {
    font-size: 16px;
  }

  .page-resources-88-cockfighting-live-guide__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-resources-88-cockfighting-live-guide__faq-answer {
    padding: 0 15px;
  }
  
  .page-resources-88-cockfighting-live-guide__faq-item.active .page-resources-88-cockfighting-live-guide__faq-answer {
    padding: 15px !important;
  }
  
  /* Ensure all images and containers are responsive */
  .page-resources-88-cockfighting-live-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-88-cockfighting-live-guide__section,
  .page-resources-88-cockfighting-live-guide__card,
  .page-resources-88-cockfighting-live-guide__container,
  .page-resources-88-cockfighting-live-guide__link-card,
  .page-resources-88-cockfighting-live-guide__game-category-card,
  .page-resources-88-cockfighting-live-guide__promo-card,
  .page-resources-88-cockfighting-live-guide__security-item,
  .page-resources-88-cockfighting-live-guide__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}