/* style/cockfighting.css */

:root {
  --primary-color: #FFD700;
  --secondary-color: #1E90FF;
  --dark-bg-color: #121212;
  --light-text-color: #ffffff;
  --dark-text-color: #333333;
  --card-bg-dark: rgba(255, 255, 255, 0.08);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-cockfighting {
  color: var(--light-text-color); /* Body is dark, so text is light */
  background-color: var(--dark-bg-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Adjust for fixed header */
}

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

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-cockfighting__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--light-text-color);
}

/* --- Video Section --- */
.page-cockfighting__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust for fixed navigation bar */
  background: linear-gradient(135deg, #0a0a0a, #2a2a2a);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cockfighting__main-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__video-description {
  font-size: 20px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
}

.page-cockfighting__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none; /* Prevents video controls from blocking click event */
}

.page-cockfighting__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-cockfighting__video-link:hover .page-cockfighting__video-overlay {
  opacity: 1;
}

.page-cockfighting__video-click-hint {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  padding: 15px 30px;
  background: rgba(30, 144, 255, 0.8); /* Using secondary color with transparency */
  border-radius: 8px;
  white-space: nowrap;
}

.page-cockfighting__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.page-cockfighting__play-now-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--primary-color);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 10px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-cockfighting__play-now-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.page-cockfighting__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Introduction Section --- */
.page-cockfighting__introduction-section {
  background-color: var(--light-text-color);
  color: var(--dark-text-color);
  padding: 80px 0;
}

.page-cockfighting__introduction-section .page-cockfighting__section-title {
  color: var(--dark-text-color);
}

.page-cockfighting__introduction-section .page-cockfighting__section-description {
  color: var(--dark-text-color);
}

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

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-cockfighting__btn-primary {
  background: var(--primary-color);
  color: #1a1a1a;
  border: 2px solid var(--primary-color);
}

.page-cockfighting__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

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

.page-cockfighting__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--light-text-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* --- Features Section --- */
.page-cockfighting__features-section {
  background: linear-gradient(135deg, #1e90ff, #0056b3);
  padding: 80px 0;
  color: var(--light-text-color);
}

.page-cockfighting__features-section .page-cockfighting__section-title {
  color: var(--light-text-color);
}

.page-cockfighting__features-section .page-cockfighting__section-description {
  color: #f0f0f0;
}

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

.page-cockfighting__feature-item {
  background: var(--card-bg-dark);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-cockfighting__feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-cockfighting__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting__feature-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* --- Guide Section --- */
.page-cockfighting__guide-section {
  background-color: var(--light-text-color);
  color: var(--dark-text-color);
  padding: 80px 0;
}

.page-cockfighting__guide-section .page-cockfighting__section-title {
  color: var(--dark-text-color);
}

.page-cockfighting__guide-section .page-cockfighting__section-description {
  color: var(--dark-text-color);
}

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

.page-cockfighting__guide-item {
  background: var(--card-bg-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-cockfighting__guide-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #1a1a1a;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__guide-step-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-cockfighting__guide-step-description {
  font-size: 16px;
  color: var(--dark-text-color);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-cockfighting__guide-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--light-text-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__guide-button:hover {
  background: #1a7ae6; /* Slightly darker secondary */
  transform: translateY(-2px);
}

/* --- Tips Section --- */
.page-cockfighting__tips-section {
  background-color: var(--dark-bg-color);
  padding: 80px 0;
  color: var(--light-text-color);
}

.page-cockfighting__tips-section .page-cockfighting__section-title {
  color: var(--primary-color);
}

.page-cockfighting__tips-section .page-cockfighting__section-description {
  color: #f0f0f0;
}

.page-cockfighting__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-cockfighting__tips-item {
  background: var(--card-bg-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-cockfighting__tips-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-cockfighting__tips-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting__tips-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-cockfighting__tips-item p {
  font-size: 16px;
  color: #f0f0f0;
}

/* --- FAQ Section --- */
.page-cockfighting__faq-section {
  background-color: var(--light-text-color);
  color: var(--dark-text-color);
  padding: 80px 0;
}

.page-cockfighting__faq-section .page-cockfighting__section-title {
  color: var(--dark-text-color);
}

.page-cockfighting__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-bg-light);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-cockfighting__faq-question:hover {
  background: #f5f5f5;
}

.page-cockfighting__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--dark-text-color);
  pointer-events: none; /* Prevents h3 from blocking click */
}

.page-cockfighting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none; /* Prevents icon from blocking click */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-question {
  background: #e9ecef;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-toggle {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.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 25px;
  opacity: 0;
  background: #f9f9f9;
  color: var(--dark-text-color);
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid var(--border-color);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-cockfighting__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-text-color);
}

/* --- Brand Section --- */
.page-cockfighting__brand-section {
  background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
  padding: 80px 0;
  color: var(--light-text-color);
}

.page-cockfighting__brand-section .page-cockfighting__section-title {
  color: var(--primary-color);
}

.page-cockfighting__brand-section .page-cockfighting__section-description {
  color: #f0f0f0;
}

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

.page-cockfighting__brand-item {
  background: var(--card-bg-dark);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-cockfighting__brand-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-cockfighting__brand-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting__brand-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-cockfighting__brand-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* --- Blog Section --- */
.page-cockfighting__blog-section {
  background-color: var(--light-text-color);
  color: var(--dark-text-color);
  padding: 80px 0;
}

.page-cockfighting__blog-section .page-cockfighting__section-title {
  color: var(--dark-text-color);
}

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

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

.page-cockfighting__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-cockfighting__blog-item-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-cockfighting__blog-link {
  text-decoration: none;
  color: inherit;
}

.page-cockfighting__blog-item-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--dark-text-color);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.page-cockfighting__blog-item-link:hover .page-cockfighting__blog-item-title,
.page-cockfighting__blog-item-title:hover {
  color: var(--secondary-color);
}

.page-cockfighting__blog-item-excerpt {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-cockfighting__blog-item-date {
  font-size: 14px;
  color: #999;
  text-align: right;
  display: block;
}

/* --- General Button Styles --- */
.page-cockfighting a[class*="button"],
.page-cockfighting a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-cockfighting__main-title {
    font-size: 40px;
  }
  .page-cockfighting__video-description {
    font-size: 18px;
  }
  .page-cockfighting__play-now-button {
    font-size: 20px;
    padding: 15px 40px;
  }
  .page-cockfighting__section-title {
    font-size: 32px;
  }
}

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

  .page-cockfighting__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-cockfighting__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-cockfighting__video-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* Video Section Mobile */
  .page-cockfighting__video-section {
    padding-top: 10px !important; /* Mobile: Adjust for fixed navigation bar */
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-cockfighting__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-cockfighting__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 8px;
    overflow: hidden !important;
  }

  .page-cockfighting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    object-fit: contain;
  }

  .page-cockfighting__video-click-hint {
    font-size: 18px;
    padding: 10px 20px;
  }

  .page-cockfighting__video-cta {
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-cockfighting__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 30px !important;
    font-size: 18px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* General Section Titles & Descriptions */
  .page-cockfighting__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-cockfighting__section-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  /* CTA Buttons Mobile */
  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-cockfighting__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px;
    padding: 12px 25px;
  }

  /* Features Grid Mobile */
  .page-cockfighting__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting__feature-item {
    padding: 25px;
  }
  .page-cockfighting__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-cockfighting__feature-title {
    font-size: 20px;
  }

  /* Guide Steps Mobile */
  .page-cockfighting__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting__guide-item {
    padding: 25px;
  }
  .page-cockfighting__guide-step-number {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
  .page-cockfighting__guide-step-title {
    font-size: 20px;
  }
  .page-cockfighting__guide-button {
    font-size: 15px;
    padding: 10px 20px;
  }

  /* Tips List Mobile */
  .page-cockfighting__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting__tips-item {
    padding: 25px;
  }
  .page-cockfighting__tips-icon {
    width: 70px;
    height: 70px;
  }
  .page-cockfighting__tips-title {
    font-size: 20px;
  }

  /* FAQ Section Mobile */
  .page-cockfighting__faq-list {
    margin-top: 30px;
  }
  .page-cockfighting__faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting__faq-question h3 {
    font-size: 16px;
  }
  .page-cockfighting__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
    margin-left: 15px;
  }
  .page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    padding: 15px 20px !important;
  }

  /* Brand Section Mobile */
  .page-cockfighting__brand-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting__brand-item {
    padding: 25px;
  }
  .page-cockfighting__brand-image {
    width: 100px;
    height: 100px;
  }
  .page-cockfighting__brand-subtitle {
    font-size: 20px;
  }

  /* Blog Section Mobile */
  .page-cockfighting__blog-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting__blog-item-image {
    height: 180px;
  }
  .page-cockfighting__blog-item-content {
    padding: 20px;
  }
  .page-cockfighting__blog-item-title {
    font-size: 18px;
  }
  .page-cockfighting__blog-item-excerpt {
    font-size: 14px;
  }
  .page-cockfighting__blog-item-date {
    font-size: 13px;
  }

  /* All images mobile responsive */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__video-section,
  .page-cockfighting__video-container,
  .page-cockfighting__video-wrapper,
  .page-cockfighting__cta-buttons,
  .page-cockfighting__button-group,
  .page-cockfighting__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Ensure video wrapper maintains aspect ratio */
  .page-cockfighting__video-wrapper {
    padding-bottom: 56.25% !important;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__main-title {
    font-size: 28px;
  }
  .page-cockfighting__section-title {
    font-size: 24px;
  }
  .page-cockfighting__play-now-button {
    font-size: 16px !important;
    padding: 12px 25px !important;
  }
  .page-cockfighting__video-click-hint {
    font-size: 16px;
    padding: 8px 16px;
  }
}