/* style/cockfighting-betting-match-types.css */

/* Biến màu */
:root {
  --mcw-red: #CC0000;
  --mcw-gold: #FFD700;
  --mcw-dark-bg: #1a1a1a; /* Gần đen để nổi bật nội dung */
  --mcw-text-light: #ffffff;
  --mcw-text-dark: #333333;
  --mcw-grey-text: #cccccc;
  --mcw-border-color: #444444;
}

.page-cockfighting-betting-match-types {
  font-family: 'Arial', sans-serif;
  color: var(--mcw-text-light);
  background-color: var(--mcw-dark-bg);
  line-height: 1.6;
}

.page-cockfighting-betting-match-types__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-cockfighting-betting-match-types__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--mcw-red) 0%, #a30000 100%); /* Màu đỏ đậm hơn */
  color: var(--mcw-text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cockfighting-betting-match-types__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-cockfighting-betting-match-types__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--mcw-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-cockfighting-betting-match-types__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--mcw-text-light);
}

.page-cockfighting-betting-match-types__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-cockfighting-betting-match-types__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-cockfighting-betting-match-types__btn--primary {
  background-color: var(--mcw-gold);
  color: var(--mcw-dark-bg);
  border: 2px solid var(--mcw-gold);
}

.page-cockfighting-betting-match-types__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-3px);
}

.page-cockfighting-betting-match-types__btn--secondary {
  background-color: transparent;
  color: var(--mcw-gold);
  border: 2px solid var(--mcw-gold);
}

.page-cockfighting-betting-match-types__btn--secondary:hover {
  background-color: var(--mcw-gold);
  color: var(--mcw-dark-bg);
  transform: translateY(-3px);
}

.page-cockfighting-betting-match-types__hero-image-wrapper {
  margin-top: 40px;
  max-width: 900px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-match-types__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* General Section Styling */
.page-cockfighting-betting-match-types__intro,
.page-cockfighting-betting-match-types__match-types,
.page-cockfighting-betting-match-types__betting-guide,
.page-cockfighting-betting-match-types__tips,
.page-cockfighting-betting-match-types__cta {
  padding: 60px 0;
  border-bottom: 1px solid var(--mcw-border-color);
}

.page-cockfighting-betting-match-types__section-title {
  font-size: 2.8em;
  color: var(--mcw-gold);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-cockfighting-betting-match-types__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--mcw-red);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-cockfighting-betting-match-types__text-content {
  font-size: 1.1em;
  color: var(--mcw-grey-text);
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting-betting-match-types__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Match Types Grid */
.page-cockfighting-betting-match-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-betting-match-types__grid-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-betting-match-types__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-betting-match-types__item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-cockfighting-betting-match-types__item-title {
  font-size: 1.8em;
  color: var(--mcw-gold);
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-cockfighting-betting-match-types__item-description {
  font-size: 1em;
  color: var(--mcw-grey-text);
  padding: 0 20px;
  text-align: justify;
}

/* Lists */
.page-cockfighting-betting-match-types__ordered-list,
.page-cockfighting-betting-match-types__unordered-list {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--mcw-grey-text);
}

.page-cockfighting-betting-match-types__ordered-list li,
.page-cockfighting-betting-match-types__unordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-cockfighting-betting-match-types__ordered-list li strong {
  color: var(--mcw-gold);
}

.page-cockfighting-betting-match-types__unordered-list li::marker {
  color: var(--mcw-red);
  font-weight: bold;
}

.page-cockfighting-betting-match-types__image-centered {
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.page-cockfighting-betting-match-types__cta {
  text-align: center;
  background-color: #222222;
  border-bottom: none;
}

.page-cockfighting-betting-match-types__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting-betting-match-types__hero-title {
    font-size: 2.8em;
  }

  .page-cockfighting-betting-match-types__hero-description {
    font-size: 1.1em;
  }

  .page-cockfighting-betting-match-types__section-title {
    font-size: 2.2em;
  }

  .page-cockfighting-betting-match-types__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-cockfighting-betting-match-types__hero {
    padding: 60px 15px;
  }

  .page-cockfighting-betting-match-types__hero-title {
    font-size: 2.2em;
  }

  .page-cockfighting-betting-match-types__hero-description {
    font-size: 1em;
  }

  .page-cockfighting-betting-match-types__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting-betting-match-types__btn {
    width: 80%;
    max-width: 300px;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-cockfighting-betting-match-types__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-betting-match-types__intro,
  .page-cockfighting-betting-match-types__match-types,
  .page-cockfighting-betting-match-types__betting-guide,
  .page-cockfighting-betting-match-types__tips,
  .page-cockfighting-betting-match-types__cta {
    padding: 40px 0;
  }

  .page-cockfighting-betting-match-types__text-content,
  .page-cockfighting-betting-match-types__ordered-list li,
  .page-cockfighting-betting-match-types__unordered-list li {
    font-size: 0.95em;
  }

  .page-cockfighting-betting-match-types__grid {
    gap: 20px;
  }

  .page-cockfighting-betting-match-types__item-title {
    font-size: 1.5em;
  }

  .page-cockfighting-betting-match-types__item-description {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-betting-match-types__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting-betting-match-types__hero-description {
    font-size: 0.9em;
  }
  .page-cockfighting-betting-match-types__section-title {
    font-size: 1.5em;
  }
  .page-cockfighting-betting-match-types__btn {
    width: 90%;
  }
  .page-cockfighting-betting-match-types__container {
    padding: 0 15px;
  }
  .page-cockfighting-betting-match-types__grid-item {
    padding-bottom: 15px;
  }
  .page-cockfighting-betting-match-types__item-image {
    height: 180px;
  }
  .page-cockfighting-betting-match-types__item-title {
    font-size: 1.3em;
  }
  .page-cockfighting-betting-match-types__item-description {
    font-size: 0.85em;
  }
}