/* style/cockfighting.css */
.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Sẽ được phủ bởi màu chữ cụ thể của từng phần tử */
  background-color: #121212; /* Màu nền body từ shared.css */
}

/* HERO Section Styles */
.page-cockfighting__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* shared đã xử lý padding-top cho body */
  margin-top: 0;
  width: 100%;
  overflow: hidden;
}

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

.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 Styles */
.page-cockfighting__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background: #0A2342;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.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: 8px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

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

.page-cockfighting__logo-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

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

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

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

/* Games Section Styles */
.page-cockfighting__games-section {
  width: 100%;
  padding: 60px 20px;
  background: #121212;
  color: #ffffff;
}

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

.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 25px 0;
  color: #E0B400; /* Vàng */
  text-align: left;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

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

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

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

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

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

.page-cockfighting__games-grid-area {
  width: 100%;
}

.page-cockfighting__games-tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting__games-tab {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.page-cockfighting__games-tab:hover {
  color: #ffffff;
}

.page-cockfighting__games-tab.active {
  color: #E0B400;
  border-bottom: 3px solid #E0B400;
}

.page-cockfighting__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}

.page-cockfighting__games-grid.active {
  display: grid;
}

.page-cockfighting__game-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting__game-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

.page-cockfighting__game-card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 12px 0;
  padding: 0 8px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Common Section Styles */
.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #E0B400; /* Màu vàng cho tiêu đề chính */
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.page-cockfighting__section-description {
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: rgba(255, 255, 255, 0.8);
}

.page-cockfighting__dark-section {
  background-color: #0A2342;
  color: #ffffff;
}

/* Introduction Section Styles */
.page-cockfighting__introduction-section {
  padding: 80px 0;
}

.page-cockfighting__intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-cockfighting__feature-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: #E0B400;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.page-cockfighting__feature-item p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Quick Access Section Styles */
.page-cockfighting__quick-access-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-cockfighting__access-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.page-cockfighting__access-card {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-decoration: none;
  color: #ffffff;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting__access-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.page-cockfighting__access-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #E0B400;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.page-cockfighting__access-card p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

/* Core Games Section Styles */
.page-cockfighting__core-games-section {
  padding: 80px 0;
}

.page-cockfighting__game-types-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-cockfighting__game-type-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  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;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting__game-type-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__game-type-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-cockfighting__game-type-title {
  font-size: 22px;
  font-weight: bold;
  color: #E0B400;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.page-cockfighting__game-type-item p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Promotions Section Styles */
.page-cockfighting__promotions-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-cockfighting__promo-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  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;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__promo-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-cockfighting__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: #E0B400;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.page-cockfighting__promo-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

/* Security & Support Section Styles */
.page-cockfighting__security-support-section {
  padding: 80px 0;
}

.page-cockfighting__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-cockfighting__security-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting__security-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__security-title {
  font-size: 22px;
  font-weight: bold;
  color: #E0B400;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.page-cockfighting__security-item p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.page-cockfighting__contact-info {
  text-align: center;
  margin-top: 50px;
}

.page-cockfighting__contact-info p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 25px;
}

/* FAQ Section Styles */
.page-cockfighting__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-cockfighting__faq-list {
  margin-top: 50px;
}

.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting__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.85);
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-cockfighting__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-cockfighting__faq-question:active {
  background: rgba(255, 255, 255, 0.18);
}

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

.page-cockfighting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  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__faq-item.active .page-cockfighting__faq-toggle {
  color: #E0B400;
  transform: rotate(45deg);
}

/* Blog Section Styles */
.page-cockfighting__blog-section {
  padding: 80px 0;
}

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

.page-cockfighting__blog-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__blog-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 20px 10px 20px;
  line-height: 1.4;
}

.page-cockfighting__blog-card h3 a {
  color: #E0B400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting__blog-card h3 a:hover {
  color: #ffffff;
}

.page-cockfighting__blog-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 20px 15px 20px;
}

.page-cockfighting__blog-date {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 20px 20px 20px;
}

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

.page-cockfighting__cta-buttons--blog {
  margin-top: 60px;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary,
.page-cockfighting__btn-small {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-cockfighting__btn-primary {
  background: #E0B400;
  color: #0A2342;
  border: 2px solid #E0B400;
}

.page-cockfighting__btn-primary:hover {
  background: #ffc900;
  border-color: #ffc900;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-cockfighting__btn-secondary:hover {
  background: #E0B400;
  color: #0A2342;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

.page-cockfighting__btn-small {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 6px;
  background: #0A2342;
  color: #E0B400;
  border: 1px solid #E0B400;
}

.page-cockfighting__btn-small:hover {
  background: #E0B400;
  color: #0A2342;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(224, 180, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .page-cockfighting__container {
    padding: 0 15px;
  }
}

@media (max-width: 1024px) {
  .page-cockfighting__games-layout {
    grid-template-columns: 1fr;
  }

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

  .page-cockfighting__featured-game-image {
    height: 400px;
  }

  .page-cockfighting__section-title {
    font-size: 28px;
  }

  .page-cockfighting__section-description {
    font-size: 16px;
  }

  .page-cockfighting__intro-features,
  .page-cockfighting__access-links,
  .page-cockfighting__game-types-carousel,
  .page-cockfighting__promo-grid,
  .page-cockfighting__security-grid,
  .page-cockfighting__blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .page-cockfighting__game-card-image {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0 !important;
    margin-top: 0;
  }

  .page-cockfighting__hero-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  .page-cockfighting__logo-carousel-section {
    padding: 20px 15px;
  }

  .page-cockfighting__logo-carousel {
    gap: 15px;
  }

  .page-cockfighting__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
  }
  .page-cockfighting__logo-item a {
    padding: 10px;
  }

  .page-cockfighting__games-section {
    padding: 40px 15px;
  }

  .page-cockfighting__games-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__featured-game-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-cockfighting__featured-game-image {
    height: 280px;
  }

  .page-cockfighting__games-tabs {
    gap: 15px;
    margin-bottom: 20px;
  }

  .page-cockfighting__games-tab {
    font-size: 17px;
    padding: 8px 0;
  }

  .page-cockfighting__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .page-cockfighting__game-card-image {
    height: 140px;
  }

  .page-cockfighting__game-card-title {
    font-size: 14px;
    margin: 10px 0;
    padding: 0 5px;
  }

  .page-cockfighting__section-title {
    font-size: 26px;
  }

  .page-cockfighting__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-cockfighting__introduction-section,
  .page-cockfighting__quick-access-section,
  .page-cockfighting__core-games-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__security-support-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__blog-section {
    padding: 50px 0;
  }

  .page-cockfighting__intro-features,
  .page-cockfighting__access-links,
  .page-cockfighting__game-types-carousel,
  .page-cockfighting__promo-grid,
  .page-cockfighting__security-grid,
  .page-cockfighting__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-cockfighting__feature-title,
  .page-cockfighting__access-card-title,
  .page-cockfighting__game-type-title,
  .page-cockfighting__promo-title,
  .page-cockfighting__security-title,
  .page-cockfighting__blog-card h3 {
    font-size: 20px;
  }

  .page-cockfighting__feature-item p,
  .page-cockfighting__access-card p,
  .page-cockfighting__game-type-item p,
  .page-cockfighting__promo-card p,
  .page-cockfighting__security-item p,
  .page-cockfighting__blog-excerpt {
    font-size: 15px;
  }

  .page-cockfighting__faq-question {
    padding: 15px;
  }

  .page-cockfighting__faq-question h3 {
    font-size: 16px;
  }

  .page-cockfighting__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
  }

  .page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    padding: 15px !important;
  }

  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary,
  .page-cockfighting__btn-small {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 15px;
  }

  /* Ensure all images inside .page-cockfighting are responsive */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
  }

  /* Exclude specific logo items from general image responsiveness */
  .page-cockfighting__logo-item img {
    width: 100% !important; /* This applies to the img inside the 80x80 container */
    height: 100% !important;
    max-width: 100% !important;
  }

  .page-cockfighting__container,
  .page-cockfighting__section,
  .page-cockfighting__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Override for specific elements that should not have padding */
  .page-cockfighting__hero-section .page-cockfighting__container,
  .page-cockfighting__logo-carousel-section .page-cockfighting__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-cockfighting__logo-carousel-section .page-cockfighting__logo-carousel-container {
    padding: 0;
  }
}