/* style/thomo-cockfighting-culture.css */

/* Biến màu sắc */
:root {
  --primary-color: #FF4500;
  --secondary-color: #008080;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-card: rgba(255, 255, 255, 0.1);
  --border-gold: #ffd700;
  --bg-light-grey: #f9f9f9;
  --bg-white: #ffffff;
  --border-grey: #e0e0e0;
}

.page-thomo-cockfighting-culture {
  color: var(--text-light); /* Giả định body là nền tối, sử dụng chữ sáng */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden; /* Ngăn chặn cuộn ngang */
}

.page-thomo-cockfighting-culture__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px; /* Khoảng cách cho thanh nav cố định */
  margin-top: 0;
  background-color: #0d0d0d; /* Màu nền dự phòng nếu hình ảnh không tải */
}

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

.page-thomo-cockfighting-culture__hero-image {
  width: 100%;
  margin: 0;
}

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

.page-thomo-cockfighting-culture__products-section {
  width: 100%;
  padding: 60px 20px;
  background: #1a1a1a; /* Nền tối cho phần sản phẩm */
  color: var(--text-light);
}

.page-thomo-cockfighting-culture__products-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: 20px;
}

.page-thomo-cockfighting-culture__products-grid {
  display: grid;
  gap: 20px;
}

.page-thomo-cockfighting-culture__products-grid--small {
  grid-template-columns: repeat(4, 1fr);
}

.page-thomo-cockfighting-culture__products-grid--large {
  grid-template-columns: repeat(2, 1fr);
}

.page-thomo-cockfighting-culture__product-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08); /* Nền hơi trong suốt */
  border: 3px solid var(--border-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1 / 1; /* Đảm bảo hình vuông */
}

.page-thomo-cockfighting-culture__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-thomo-cockfighting-culture__product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.page-thomo-cockfighting-culture__product-card-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.page-thomo-cockfighting-culture__section {
  padding: 80px 20px;
  background-color: #0d0d0d; /* Nền tối mặc định */
  color: var(--text-light);
}

.page-thomo-cockfighting-culture__introduction-section {
  padding-top: 80px; /* Khoảng cách cho nội dung đầu tiên nếu không có hero */
}

.page-thomo-cockfighting-culture__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-thomo-cockfighting-culture__main-heading,
.page-thomo-cockfighting-culture__section-heading {
  font-size: 3.2em;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-thomo-cockfighting-culture__sub-heading {
  font-size: 2.2em;
  color: var(--text-light);
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-thomo-cockfighting-culture__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

.page-thomo-cockfighting-culture__text-block strong.keyword {
  color: var(--primary-color);
}

.page-thomo-cockfighting-culture__link-inline {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-thomo-cockfighting-culture__link-inline:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-thomo-cockfighting-culture__quick-access-section {
  background-color: #1a1a1a;
}

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

.page-thomo-cockfighting-culture__link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-light);
  border: 2px solid var(--border-gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-align: center;
}

.page-thomo-cockfighting-culture__link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.page-thomo-cockfighting-culture__link-card-icon {
  font-size: 3.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1;
}

.page-thomo-cockfighting-culture__link-card-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--text-light);
}

.page-thomo-cockfighting-culture__link-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  margin: 10px 10px 30px 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-thomo-cockfighting-culture__link-button:hover {
  background-color: #e63c00;
  transform: translateY(-2px);
}

.page-thomo-cockfighting-culture__core-games-section {
  background-color: #0d0d0d;
}

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

.page-thomo-cockfighting-culture__game-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-gold);
}

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

.page-thomo-cockfighting-culture__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-thomo-cockfighting-culture__game-card-title {
  font-size: 1.6em;
  font-weight: 700;
  padding: 20px 20px 10px;
  color: var(--text-light);
}

.page-thomo-cockfighting-culture__game-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-thomo-cockfighting-culture__game-card-title a:hover {
  color: var(--primary-color);
}

.page-thomo-cockfighting-culture__game-card-description {
  font-size: 1em;
  color: #e0e0e0;
  padding: 0 20px 25px;
  text-align: justify;
}

.page-thomo-cockfighting-culture__promotions-section {
  background-color: #1a1a1a;
}

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

.page-thomo-cockfighting-culture__promo-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-thomo-cockfighting-culture__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-thomo-cockfighting-culture__promo-card-title {
  font-size: 1.4em;
  font-weight: 700;
  padding: 20px 20px 10px;
  color: var(--text-light);
}

.page-thomo-cockfighting-culture__promo-card-description {
  font-size: 1em;
  color: #e0e0e0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-thomo-cockfighting-culture__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-thomo-cockfighting-culture__btn-primary:hover {
  background-color: #e63c00;
  transform: translateY(-2px);
}

.page-thomo-cockfighting-culture__security-cs-section {
  background-color: #0d0d0d;
}

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

.page-thomo-cockfighting-culture__feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid var(--border-gold);
}

.page-thomo-cockfighting-culture__feature-card-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.page-thomo-cockfighting-culture__feature-card-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-thomo-cockfighting-culture__feature-card-description {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-thomo-cockfighting-culture__faq-section {
  background-color: #1a1a1a;
}

.page-thomo-cockfighting-culture__faq-list {
  margin-top: 40px;
}

.page-thomo-cockfighting-culture__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
}

.page-thomo-cockfighting-culture__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-thomo-cockfighting-culture__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-thomo-cockfighting-culture__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-light);
}

.page-thomo-cockfighting-culture__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  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: 28px;
  height: 28px;
}

.page-thomo-cockfighting-culture__faq-item.active .page-thomo-cockfighting-culture__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(180deg);
}

.page-thomo-cockfighting-culture__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #e0e0e0;
}

.page-thomo-cockfighting-culture__faq-item.active .page-thomo-cockfighting-culture__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-thomo-cockfighting-culture__latest-blog-section {
  background-color: #0d0d0d;
}

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

.page-thomo-cockfighting-culture__blog-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-gold);
}

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

.page-thomo-cockfighting-culture__blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-thomo-cockfighting-culture__blog-card-title {
  font-size: 1.4em;
  font-weight: 700;
  padding: 20px 20px 10px;
  color: var(--text-light);
}

.page-thomo-cockfighting-culture__blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-thomo-cockfighting-culture__blog-card-title a:hover {
  color: var(--primary-color);
}

.page-thomo-cockfighting-culture__blog-card-excerpt {
  font-size: 0.95em;
  color: #e0e0e0;
  padding: 0 20px 15px;
}

.page-thomo-cockfighting-culture__blog-card-date {
  font-size: 0.85em;
  color: #aaa;
  padding: 0 20px 20px;
  display: block;
}

.page-thomo-cockfighting-culture .highlight {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-thomo-cockfighting-culture__main-heading {
    font-size: 2.8em;
  }
  .page-thomo-cockfighting-culture__sub-heading {
    font-size: 2em;
  }
  .page-thomo-cockfighting-culture__section-heading {
    font-size: 2.5em;
  }
  .page-thomo-cockfighting-culture__products-container {
    grid-template-columns: 1fr; /* Stack grids */
  }
  .page-thomo-cockfighting-culture__products-grid--small {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-thomo-cockfighting-culture__products-grid--large {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-thomo-cockfighting-culture__game-cards-wrapper,
  .page-thomo-cockfighting-culture__promo-grid,
  .page-thomo-cockfighting-culture__feature-grid,
  .page-thomo-cockfighting-culture__blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-thomo-cockfighting-culture {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-thomo-cockfighting-culture__hero-section {
    padding-top: 10px; 
  }
  .page-thomo-cockfighting-culture__main-heading {
    font-size: 2.2em;
    margin-bottom: 30px;
  }
  .page-thomo-cockfighting-culture__sub-heading {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-thomo-cockfighting-culture__section-heading {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-thomo-cockfighting-culture__section {
    padding: 50px 15px;
  }
  .page-thomo-cockfighting-culture__container {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .page-thomo-cockfighting-culture__text-block {
    font-size: 1em;
  }
  .page-thomo-cockfighting-culture__products-section {
    padding: 40px 15px;
  }
  .page-thomo-cockfighting-culture__products-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-thomo-cockfighting-culture__products-grid--small {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page-thomo-cockfighting-culture__products-grid--small .page-thomo-cockfighting-culture__product-card {
    aspect-ratio: 1 / 1;
  }
  .page-thomo-cockfighting-culture__products-grid--small .page-thomo-cockfighting-culture__product-card-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
  }
  .page-thomo-cockfighting-culture__products-grid--small .page-thomo-cockfighting-culture__product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page-thomo-cockfighting-culture__products-grid--large {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-thomo-cockfighting-culture__products-grid--large .page-thomo-cockfighting-culture__product-card {
    aspect-ratio: 1 / 1;
  }
  .page-thomo-cockfighting-culture__products-grid--large .page-thomo-cockfighting-culture__product-card-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
  }
  .page-thomo-cockfighting-culture__products-grid--large .page-thomo-cockfighting-culture__product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page-thomo-cockfighting-culture__link-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-thomo-cockfighting-culture__link-card-icon {
    font-size: 3em;
  }
  .page-thomo-cockfighting-culture__link-card-title {
    font-size: 1.2em;
  }
  .page-thomo-cockfighting-culture__game-cards-wrapper,
  .page-thomo-cockfighting-culture__promo-grid,
  .page-thomo-cockfighting-culture__feature-grid,
  .page-thomo-cockfighting-culture__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-thomo-cockfighting-culture__game-card-title,
  .page-thomo-cockfighting-culture__promo-card-title,
  .page-thomo-cockfighting-culture__feature-card-title,
  .page-thomo-cockfighting-culture__blog-card-title {
    font-size: 1.3em;
  }
  .page-thomo-cockfighting-culture__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-thomo-cockfighting-culture__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-thomo-cockfighting-culture__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-thomo-cockfighting-culture__faq-answer {
    padding: 0 15px;
  }
  .page-thomo-cockfighting-culture__faq-item.active .page-thomo-cockfighting-culture__faq-answer {
    padding: 15px !important;
  }
  .page-thomo-cockfighting-culture img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-thomo-cockfighting-culture__section,
  .page-thomo-cockfighting-culture__card,
  .page-thomo-cockfighting-culture__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-thomo-cockfighting-culture__main-heading {
    font-size: 1.8em;
  }
  .page-thomo-cockfighting-culture__section-heading {
    font-size: 1.8em;
  }
  .page-thomo-cockfighting-culture__link-card {
    padding: 20px;
  }
  .page-thomo-cockfighting-culture__link-card-icon {
    font-size: 2.5em;
  }
  .page-thomo-cockfighting-culture__link-card-title {
    font-size: 1.1em;
  }
}