.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main, #1F2D3D);
  background-color: var(--page-bg, #F4F7FB);
}

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

.page-cockfighting__section {
  padding: 60px 0;
  text-align: center;
}

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color, #2F6BFF);
  line-height: 1.2;
}

.page-cockfighting__section-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-main, #1F2D3D);
}

.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-bg, #F4F7FB);
  overflow: hidden;
}

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

.page-cockfighting__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-cockfighting__hero-title {
  color: var(--primary-color, #2F6BFF);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}

.page-cockfighting__hero-description {
  font-size: 20px;
  color: var(--text-main, #1F2D3D);
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

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

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

.page-cockfighting__card {
  background: var(--card-bg, #FFFFFF);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color, #D6E2FF);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cockfighting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color, #2F6BFF);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-cockfighting__card-title a {
  color: var(--primary-color, #2F6BFF);
  text-decoration: none;
}

.page-cockfighting__card-title a:hover {
  text-decoration: underline;
}

.page-cockfighting__card p {
  font-size: 16px;
  color: var(--text-main, #1F2D3D);
  margin-bottom: 20px;
}

.page-cockfighting__dark-section {
  background-color: var(--primary-color, #2F6BFF);
  color: #ffffff;
}

.page-cockfighting__dark-section .page-cockfighting__section-title,
.page-cockfighting__dark-section .page-cockfighting__section-description {
  color: #ffffff;
}

.page-cockfighting__dark-section .page-cockfighting__card {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.page-cockfighting__dark-section .page-cockfighting__card-title {
  color: #ffffff;
}

.page-cockfighting__dark-section .page-cockfighting__card p {
  color: #f0f0f0;
}

.page-cockfighting__light-bg {
  background-color: #ffffff;
}

.page-cockfighting__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
}

.page-cockfighting__btn-secondary {
  background: #ffffff;
  color: var(--primary-color, #2F6BFF);
  border: 2px solid var(--primary-color, #2F6BFF);
}

.page-cockfighting__btn-secondary:hover {
  background: var(--primary-color, #2F6BFF);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color, #6FA3FF);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: auto;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__btn-small:hover {
  background: var(--primary-color, #2F6BFF);
  transform: translateY(-2px);
}

.page-cockfighting__game-feature {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.page-cockfighting__game-feature--reverse {
  flex-direction: row-reverse;
}

.page-cockfighting__game-feature img {
  width: 50%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__game-content {
  width: 50%;
}

.page-cockfighting__game-content h3 {
  font-size: 28px;
  color: var(--primary-color, #2F6BFF);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-cockfighting__game-content p {
  font-size: 17px;
  color: var(--text-main, #1F2D3D);
  margin-bottom: 15px;
}

.page-cockfighting__game-content ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  text-align: left;
}

.page-cockfighting__game-content ul li {
  font-size: 16px;
  color: var(--text-main, #1F2D3D);
  margin-bottom: 8px;
}

.page-cockfighting__view-all-promos,
.page-cockfighting__view-all-articles {
  margin-top: 50px;
}

.page-cockfighting__security-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.page-cockfighting__security-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__security-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-cockfighting__security-item p {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-cockfighting__security-item a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

.page-cockfighting__security-item a:hover {
  color: var(--secondary-color, #6FA3FF);
}

.page-cockfighting__faq-list {
  margin-top: 40px;
  text-align: left;
}

details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color, #D6E2FF);
  overflow: hidden;
  background: var(--card-bg, #FFFFFF);
}

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main, #1F2D3D);
  font-weight: 600;
}

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question::-webkit-details-marker {
  display: none;
}

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question:hover {
  background: #f5f8fc;
}

.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
  color: var(--primary-color, #2F6BFF);
}

.page-cockfighting__faq-toggle {
  font-size: 26px;
  font-weight: bold;
  color: var(--primary-color, #2F6BFF);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 25px 25px;
  background: #f9fbfc;
  border-radius: 0 0 8px 8px;
  color: var(--text-main, #1F2D3D);
  font-size: 16px;
  line-height: 1.6;
}

.page-cockfighting__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
}

.page-cockfighting__faq-answer a {
  color: var(--primary-color, #2F6BFF);
  text-decoration: underline;
}

.page-cockfighting__article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting__article-card .page-cockfighting__card-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.page-cockfighting__article-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__section-title {
    font-size: 32px;
  }
  .page-cockfighting__section-description {
    font-size: 17px;
  }
  .page-cockfighting__game-feature {
    flex-direction: column;
    text-align: center;
  }
  .page-cockfighting__game-feature--reverse {
    flex-direction: column;
  }
  .page-cockfighting__game-feature img,
  .page-cockfighting__game-content {
    width: 100%;
  }
  .page-cockfighting__game-content ul {
    text-align: center;
    margin-left: 0;
    list-style-position: inside;
  }
  .page-cockfighting__game-content h3 {
    font-size: 24px;
  }
  .page-cockfighting__security-item img {
    
    
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__section {
    padding: 40px 0;
  }
  .page-cockfighting__section-title {
    font-size: 28px;
  }
  .page-cockfighting__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-cockfighting__hero-title {
    font-size: clamp(28px, 6vw, 36px);
  }
  .page-cockfighting__hero-description {
    font-size: 17px;
  }
  .page-cockfighting__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-cockfighting__button-group {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-cockfighting__grid-2-cols,
  .page-cockfighting__grid-3-cols {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  .page-cockfighting__card {
    padding: 25px;
  }
  .page-cockfighting__card-title {
    font-size: 20px;
  }
  .page-cockfighting__card p {
    font-size: 15px;
  }
  .page-cockfighting__game-content ul {
    margin-left: 0;
    list-style-position: inside;
  }
  .page-cockfighting__game-content ul li {
    font-size: 15px;
  }
  .page-cockfighting__security-item img {
    
    
    min-width: 200px !important;
    min-height: 200px !important;
  }
  details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    padding: 15px;
  }
  .page-cockfighting__faq-qtext {
    font-size: 15px;
  }
  details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 15px 15px;
  }
  .page-cockfighting__article-card img {
    
  }
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__game-feature img,
  .page-cockfighting__game-content,
  .page-cockfighting__security-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__view-all-promos .page-cockfighting__cta-button,
  .page-cockfighting__view-all-articles .page-cockfighting__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}