.page-index-thomo-cockfighting-platform {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --background-light: #f4f7f6;
  --background-dark: #071a47;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-index-thomo-cockfighting-platform .section-intro, 
.page-index-thomo-cockfighting-platform .section-quick-links, 
.page-index-thomo-cockfighting-platform .section-games, 
.page-index-thomo-cockfighting-platform .section-promotions, 
.page-index-thomo-cockfighting-platform .section-security-support, 
.page-index-thomo-cockfighting-platform .section-faq, 
.page-index-thomo-cockfighting-platform .section-blog {
  padding: 60px 0;
}

.page-index-thomo-cockfighting-platform h1, 
.page-index-thomo-cockfighting-platform h2, 
.page-index-thomo-cockfighting-platform h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
}

.page-index-thomo-cockfighting-platform h1 {
  font-size: 2.8em;
  color: var(--text-color-light);
}

.page-index-thomo-cockfighting-platform h2 {
  font-size: 2.2em;
}

.page-index-thomo-cockfighting-platform h3 {
  font-size: 1.6em;
}

.page-index-thomo-cockfighting-platform p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-index-thomo-cockfighting-platform .text-center {
  text-align: center;
}

.page-index-thomo-cockfighting-platform .button-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-thomo-cockfighting-platform .button-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-thomo-cockfighting-platform .button-small {
  display: inline-block;
  padding: 8px 18px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-thomo-cockfighting-platform .button-small:hover {
  background: var(--primary-color);
  color: var(--text-color-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-index-thomo-cockfighting-platform .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--background-dark); /* Fallback background */
}

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

.page-index-thomo-cockfighting-platform .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-thomo-cockfighting-platform .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-thomo-cockfighting-platform .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-color-light);
}

.page-index-thomo-cockfighting-platform .hero-content h1 {
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-thomo-cockfighting-platform .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-thomo-cockfighting-platform .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-index-thomo-cockfighting-platform .cta-button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Section Intro */
.page-index-thomo-cockfighting-platform .section-intro {
  background: var(--background-light);
  color: var(--text-color-dark);
}

.page-index-thomo-cockfighting-platform .intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-index-thomo-cockfighting-platform .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-thomo-cockfighting-platform .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-thomo-cockfighting-platform .feature-icon {
  width: 100px; /* Min 200x200px requirement, adjust image source to be larger if needed */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-thomo-cockfighting-platform .feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.4em;
}

/* Quick Links */
.page-index-thomo-cockfighting-platform .section-quick-links {
  background: var(--background-dark);
  color: var(--text-color-light);
}

.page-index-thomo-cockfighting-platform .section-quick-links h2 {
  color: var(--secondary-color);
}

.page-index-thomo-cockfighting-platform .section-quick-links p {
  text-align: center;
  margin-bottom: 40px;
}

.page-index-thomo-cockfighting-platform .link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-index-thomo-cockfighting-platform .quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1a3c7c; /* Darker blue from primary */
  padding: 25px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-color-light);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-thomo-cockfighting-platform .quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: var(--primary-color);
}

.page-index-thomo-cockfighting-platform .link-card-img {
  width: 120px; /* Min 200x200px requirement, adjust image source to be larger if needed */
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
}

.page-index-thomo-cockfighting-platform .quick-link-card h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 1.3em;
}

.page-index-thomo-cockfighting-platform .quick-link-card p {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.8);
}

/* Games Section */
.page-index-thomo-cockfighting-platform .section-games {
  background: var(--background-light);
}

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

.page-index-thomo-cockfighting-platform .game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-thomo-cockfighting-platform .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-thomo-cockfighting-platform .game-card-img {
  width: 100%;
  height: 200px; /* Ensure images are large enough */
  object-fit: cover;
}

.page-index-thomo-cockfighting-platform .game-card h3 {
  padding: 20px 20px 10px;
  margin-bottom: 0;
  text-align: left;
  color: var(--primary-color);
}

.page-index-thomo-cockfighting-platform .game-card p {
  padding: 0 20px 20px;
  text-align: justify;
  flex-grow: 1;
}

.page-index-thomo-cockfighting-platform .game-card .button-small {
  margin: 0 20px 20px;
  align-self: flex-start;
}

/* Promotions Section */
.page-index-thomo-cockfighting-platform .section-promotions {
  background: var(--background-dark);
  color: var(--text-color-light);
}

.page-index-thomo-cockfighting-platform .section-promotions h2 {
  color: var(--secondary-color);
}

.page-index-thomo-cockfighting-platform .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-thomo-cockfighting-platform .promo-card {
  background: #1a3c7c; /* Darker blue from primary */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-thomo-cockfighting-platform .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: var(--primary-color);
}

.page-index-thomo-cockfishing-platform .promo-card-img {
  width: 100%;
  height: 200px; /* Ensure images are large enough */
  object-fit: cover;
}

.page-index-thomo-cockfighting-platform .promo-card h3 {
  padding: 20px 20px 10px;
  margin-bottom: 0;
  text-align: left;
  color: var(--secondary-color);
}

.page-index-thomo-cockfighting-platform .promo-card p {
  padding: 0 20px 20px;
  text-align: justify;
  color: rgba(255, 255, 255, 0.85);
  flex-grow: 1;
}

.page-index-thomo-cockfighting-platform .promo-card .button-small {
  margin: 0 20px 20px;
  align-self: flex-start;
  color: var(--primary-color);
  background-color: var(--secondary-color);
}

.page-index-thomo-cockfighting-platform .promo-card .button-small:hover {
  background-color: var(--text-color-light);
}

/* Security & Support */
.page-index-thomo-cockfighting-platform .section-security-support {
  background: var(--background-light);
}

.page-index-thomo-cockfighting-platform .security-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-thomo-cockfighting-platform .ss-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-thomo-cockfighting-platform .ss-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-thomo-cockfighting-platform .ss-icon {
  width: 100px; /* Min 200x200px requirement, adjust image source to be larger if needed */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-thomo-cockfighting-platform .ss-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.4em;
}

/* FAQ Section */
.page-index-thomo-cockfighting-platform .section-faq {
  background: var(--background-dark);
  color: var(--text-color-light);
}

.page-index-thomo-cockfighting-platform .section-faq h2 {
  color: var(--secondary-color);
}

.page-index-thomo-cockfighting-platform .section-faq p {
  text-align: center;
  margin-bottom: 40px;
}

.page-index-thomo-cockfighting-platform .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-thomo-cockfighting-platform .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-index-thomo-cockfighting-platform .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.page-index-thomo-cockfighting-platform .faq-question:hover {
  background: #1a3c7c; /* Slightly lighter primary */
}

.page-index-thomo-cockfighting-platform .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-index-thomo-cockfighting-platform .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  text-align: left;
  color: var(--text-color-light);
  flex-grow: 1;
}

.page-index-thomo-cockfighting-platform .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.page-index-thomo-cockfighting-platform .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--text-color-light);
}

.page-index-thomo-cockfighting-platform .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #ffffff;
  color: var(--text-color-dark);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-index-thomo-cockfighting-platform .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index-thomo-cockfighting-platform .faq-answer p {
  margin: 0;
  text-align: justify;
}

/* Blog Section */
.page-index-thomo-cockfighting-platform .section-blog {
  background: var(--background-light);
}

.page-index-thomo-cockfighting-platform .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-thomo-cockfighting-platform .blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-color-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-thomo-cockfighting-platform .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-thomo-cockfighting-platform .blog-card-img {
  width: 100%;
  height: 200px; /* Ensure images are large enough */
  object-fit: cover;
}

.page-index-thomo-cockfighting-platform .blog-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-thomo-cockfighting-platform .blog-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.25em;
  text-align: left;
  color: var(--primary-color);
}

.page-index-thomo-cockfighting-platform .blog-card p {
  font-size: 0.95em;
  margin-bottom: 15px;
  text-align: justify;
  flex-grow: 1;
}

.page-index-thomo-cockfighting-platform .blog-date {
  font-size: 0.85em;
  color: #777;
  align-self: flex-end;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-thomo-cockfighting-platform h1 {
    font-size: 2.4em;
  }
  .page-index-thomo-cockfighting-platform h2 {
    font-size: 1.8em;
  }
  .page-index-thomo-cockfighting-platform .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-index-thomo-cockfighting-platform .hero-content p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index-thomo-cockfighting-platform .section-intro, 
  .page-index-thomo-cockfighting-platform .section-quick-links, 
  .page-index-thomo-cockfighting-platform .section-games, 
  .page-index-thomo-cockfighting-platform .section-promotions, 
  .page-index-thomo-cockfighting-platform .section-security-support, 
  .page-index-thomo-cockfighting-platform .section-faq, 
  .page-index-thomo-cockfighting-platform .section-blog {
    padding: 40px 0;
  }
  .page-index-thomo-cockfighting-platform h1 {
    font-size: 2em;
  }
  .page-index-thomo-cockfighting-platform h2 {
    font-size: 1.6em;
  }
  .page-index-thomo-cockfighting-platform h3 {
    font-size: 1.3em;
  }
  .page-index-thomo-cockfighting-platform .hero-section {
    padding: 40px 15px;
  }
  .page-index-thomo-cockfighting-platform .hero-image img {
    border-radius: 4px;
  }
  .page-index-thomo-cockfighting-platform .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-thomo-cockfighting-platform .intro-features, 
  .page-index-thomo-cockfighting-platform .link-grid, 
  .page-index-thomo-cockfighting-platform .game-grid, 
  .page-index-thomo-cockfighting-platform .promo-grid, 
  .page-index-thomo-cockfighting-platform .security-support-grid, 
  .page-index-thomo-cockfighting-platform .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-thomo-cockfighting-platform .feature-item, 
  .page-index-thomo-cockfighting-platform .quick-link-card, 
  .page-index-thomo-cockfighting-platform .game-card, 
  .page-index-thomo-cockfighting-platform .promo-card, 
  .page-index-thomo-cockfighting-platform .ss-item, 
  .page-index-thomo-cockfighting-platform .blog-card {
    padding: 20px;
  }
  .page-index-thomo-cockfighting-platform .faq-question {
    padding: 15px 20px;
  }
  .page-index-thomo-cockfighting-platform .faq-answer {
    padding: 0 20px;
  }
  .page-index-thomo-cockfighting-platform .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-index-thomo-cockfighting-platform h1 {
    font-size: 1.8em;
  }
  .page-index-thomo-cockfighting-platform h2 {
    font-size: 1.4em;
  }
  .page-index-thomo-cockfighting-platform .hero-content p {
    font-size: 1em;
  }
  .page-index-thomo-cockfighting-platform .cta-button {
    font-size: 0.9em;
    padding: 10px 25px;
  }
  .page-index-thomo-cockfighting-platform .feature-icon, 
  .page-index-thomo-cockfighting-platform .link-card-img, 
  .page-index-thomo-cockfighting-platform .ss-icon {
    width: 80px;
    height: 80px;
  }
  .page-index-thomo-cockfighting-platform .faq-toggle {
    font-size: 20px;
  }
  .page-index-thomo-cockfighting-platform .faq-question h3 {
    font-size: 1em;
  }
}