.page-cockfighting-tips {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main dark background */
}

.page-cockfighting-tips-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-tips-hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #343a40 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  border-bottom: 2px solid #FFD700;
}

.page-cockfighting-tips-main-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-tips-subtitle {
  font-size: 1.5em;
  color: #D3D3D3;
  margin-bottom: 40px;
}

.page-cockfighting-tips-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-cockfighting-tips-section:last-of-type {
  border-bottom: none;
}

.page-cockfighting-tips-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting-tips-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-cockfighting-tips-sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Accent color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-cockfighting-tips-introduction p, 
.page-cockfighting-tips-why-nohu90 p, 
.page-cockfighting-tips-analysis-factors p, 
.page-cockfighting-tips-effective-tips p, 
.page-cockfighting-tips-conclusion p,
.page-cockfighting-tips-faq-answer {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-cockfighting-tips-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-cockfighting-tips-list li {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #D3D3D3;
}

.page-cockfighting-tips-list li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

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

.page-cockfighting-tips-grid-item {
  background-color: #2A303C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-cockfighting-tips-grid-item:hover {
  transform: translateY(-5px);
  background-color: #3A404C;
}

.page-cockfighting-tips-grid-item .page-cockfighting-tips-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #FFD700;
}

.page-cockfighting-tips-grid-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-cockfighting-tips-grid-item p {
  font-size: 1em;
  color: #C0C0C0;
}

.page-cockfighting-tips-grid-item ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
}

.page-cockfighting-tips-grid-item ul li {
  color: #C0C0C0;
  font-size: 0.95em;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.page-cockfighting-tips-grid-item ul li::before {
  content: '•';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-cockfighting-tips-ordered-list {
  list-style: none;
  padding: 0;
}

.page-cockfighting-tips-ordered-list li {
  margin-bottom: 40px;
  background-color: #2A303C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-tips-ordered-list li h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 1px dashed rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-cockfighting-tips-ordered-list li p {
  color: #E0E0E0;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-cockfighting-tips-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  border: 1px solid #FFD700;
}

.page-cockfighting-tips-image-full-width {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.page-cockfighting-tips-image-small {
  max-width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  height: 250px;
  object-fit: cover;
}

.page-cockfighting-tips-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  margin-top: 30px;
  margin-right: 15px;
  margin-left: 15px;
  text-align: center;
}

.page-cockfighting-tips-btn-primary {
  background-color: #FFD700; /* Accent color for primary buttons */
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-cockfighting-tips-btn-primary:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-cockfighting-tips-btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-cockfighting-tips-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-cockfighting-tips-btn-highlight {
  background-color: #FF4500; /* A vibrant red/orange for high impact */
  color: #FFFFFF;
  border: 2px solid #FF4500;
  animation: pulse 2s infinite;
}

.page-cockfighting-tips-btn-highlight:hover {
  background-color: #e03d00;
  border-color: #e03d00;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 69, 0, 0.6);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 69, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

.page-cockfighting-tips-btn-download {
  background-color: #1E90FF; /* Dodger Blue for download */
  color: #FFFFFF;
  border: 2px solid #1E90FF;
}

.page-cockfighting-tips-btn-download:hover {
  background-color: #187bcd;
  border-color: #187bcd;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(30, 144, 255, 0.4);
}

.page-cockfighting-tips-call-to-action-text {
  text-align: center;
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-cockfighting-tips-cta {
  background: linear-gradient(45deg, #1A202C, #3A404C);
  padding: 80px 0;
  text-align: center;
}

.page-cockfighting-tips-cta-content {
  background-color: #2A303C;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
}

.page-cockfighting-tips-cta-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 40px auto;
  max-width: 800px;
}

.page-cockfighting-tips-cta-list li {
  font-size: 1.2em;
  color: #D3D3D3;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
  text-align: left;
}

.page-cockfighting-tips-cta-list li::before {
  content: '⭐';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-cockfighting-tips-faq-item {
  background-color: #2A303C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-cockfighting-tips-faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-cockfighting-tips-faq-answer {
  font-size: 1.05em;
  color: #C0C0C0;
  display: none;
  margin-bottom: 0;
}

.page-cockfighting-tips-faq-item.active .page-cockfighting-tips-faq-answer {
  display: block;
}

.page-cockfighting-tips-responsible-gambling {
  font-size: 0.9em;
  color: #888;
  text-align: center;
  margin-top: 50px;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting-tips-main-title {
    font-size: 2.5em;
  }

  .page-cockfighting-tips-subtitle {
    font-size: 1.2em;
  }

  .page-cockfighting-tips-section-title {
    font-size: 2em;
  }

  .page-cockfighting-tips-sub-title {
    font-size: 1.5em;
  }

  .page-cockfighting-tips-grid {
    grid-template-columns: 1fr;
  }

  .page-cockfighting-tips-btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px auto;
    display: block;
    width: fit-content;
  }

  .page-cockfighting-tips-cta-list li {
    font-size: 1em;
    padding-left: 30px;
  }

  .page-cockfighting-tips-faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-tips-main-title {
    font-size: 2em;
  }

  .page-cockfighting-tips-subtitle {
    font-size: 1em;
  }

  .page-cockfighting-tips-section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-tips-sub-title {
    font-size: 1.3em;
  }

  .page-cockfighting-tips-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}