/* style/-g-lut-chi.css */
.page--g-lut-chi {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ sáng cho nền tối */
  background-color: #1A1A2E; /* Màu nền chính */
  line-height: 1.6;
}

.page--g-lut-chi .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page--g-lut-chi .section-title {
  font-size: 2.5em;
  color: #E94560; /* Màu nhấn */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  position: relative;
  font-weight: bold;
}

.page--g-lut-chi .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E94560;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page--g-lut-chi h3 {
  color: #E94560;
  font-size: 1.8em;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page--g-lut-chi h4 {
  color: #F0F0F0;
  font-size: 1.4em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page--g-lut-chi p {
  margin-bottom: 15px;
  color: #D0D0D0;
}

.page--g-lut-chi ul,
.page--g-lut-chi ol {
  margin-bottom: 15px;
  padding-left: 25px;
  color: #D0D0D0;
}

.page--g-lut-chi li {
  margin-bottom: 8px;
}

.page--g-lut-chi .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page--g-lut-chi .btn-primary {
  background-color: #E94560; /* Màu nhấn */
  color: #FFFFFF;
  border: 2px solid #E94560;
}

.page--g-lut-chi .btn-primary:hover {
  background-color: #C23850;
  border-color: #C23850;
  transform: translateY(-2px);
}

.page--g-lut-chi .btn-secondary {
  background-color: transparent;
  color: #E94560;
  border: 2px solid #E94560;
}

.page--g-lut-chi .btn-secondary:hover {
  background-color: #E94560;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page--g-lut-chi .btn-warning {
  background-color: #FFC107;
  color: #1A1A2E;
  border: 2px solid #FFC107;
}

.page--g-lut-chi .btn-warning:hover {
  background-color: #E0A800;
  border-color: #E0A800;
  transform: translateY(-2px);
}

.page--g-lut-chi .btn-text-link {
  color: #E94560;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
}

.page--g-lut-chi .btn-text-link:hover {
  color: #C23850;
}

/* Hero Section */
.page--g-lut-chi .hero-section {
  position: relative;
  background-image: url('[GALLERY:hero:cockfighting_arena,dynamic_action,blurred_background]');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page--g-lut-chi .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.page--g-lut-chi .hero-section .container {
  position: relative;
  z-index: 2;
}

.page--g-lut-chi .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #E94560;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page--g-lut-chi .hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page--g-lut-chi .hero-section .btn {
  font-size: 1.2em;
  padding: 15px 35px;
}

/* Introduction Section */
.page--g-lut-chi .introduction-section {
  padding: 60px 0;
  background-color: #1A1A2E;
}

.page--g-lut-chi .introduction-section .content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page--g-lut-chi .introduction-section .content-text {
  flex: 1;
}

.page--g-lut-chi .introduction-section .content-image {
  flex: 1;
  text-align: center;
}

.page--g-lut-chi .introduction-section .img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Rules Section */
.page--g-lut-chi .rules-section {
  padding: 60px 0;
  background-color: #24243E;
}

.page--g-lut-chi .rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page--g-lut-chi .rule-card {
  background-color: #1A1A2E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g-lut-chi .rule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page--g-lut-chi .rule-card .card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page--g-lut-chi .rule-card .card-title {
  font-size: 1.6em;
  color: #E94560;
  margin-bottom: 15px;
}

.page--g-lut-chi .rule-card ul {
  text-align: left;
  padding-left: 20px;
}

.page--g-lut-chi .rule-card li {
  color: #D0D0D0;
}

/* Betting Rules Section */
.page--g-lut-chi .betting-rules-section {
  padding: 60px 0;
  background-color: #1A1A2E;
}

.page--g-lut-chi .betting-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page--g-lut-chi .bet-card {
  background-color: #24243E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page--g-lut-chi .bet-card .icon-image {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page--g-lut-chi .bet-card .card-title {
  font-size: 1.5em;
  color: #E94560;
  margin-bottom: 15px;
}

.page--g-lut-chi .note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  color: #F0F0F0;
}

/* Match Process Section */
.page--g-lut-chi .match-process-section {
  padding: 60px 0;
  background-color: #24243E;
}

.page--g-lut-chi .process-list {
  counter-reset: process-counter;
  list-style: none;
  padding: 0;
}

.page--g-lut-chi .process-list li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
}

.page--g-lut-chi .process-list li::before {
  counter-increment: process-counter;
  content: counter(process-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #E94560;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page--g-lut-chi .process-list li h3 {
  color: #E94560;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.8em;
}

.page--g-lut-chi .process-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Winning Conditions Section */
.page--g-lut-chi .winning-conditions-section {
  padding: 60px 0;
  background-color: #1A1A2E;
}

.page--g-lut-chi .winning-criteria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page--g-lut-chi .criteria-item {
  background-color: #24243E;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page--g-lut-chi .criteria-item .icon-image {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page--g-lut-chi .criteria-item h3 {
  font-size: 1.5em;
  color: #E94560;
  margin-bottom: 10px;
}

.page--g-lut-chi .conclusion-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #F0F0F0;
}

/* Tips Section */
.page--g-lut-chi .tips-section {
  padding: 60px 0;
  background-color: #24243E;
}

.page--g-lut-chi .tips-list {
  list-style: none;
  padding: 0;
}

.page--g-lut-chi .tips-list li {
  background-color: #1A1A2E;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page--g-lut-chi .tips-list li h4 {
  color: #E94560;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page--g-lut-chi .call-to-action-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.2em;
  color: #F0F0F0;
}

/* Responsible Gambling Section */
.page--g-lut-chi .responsible-gambling-section {
  padding: 60px 0;
  background-color: #1A1A2E;
  text-align: center;
}

.page--g-lut-chi .responsible-gambling-section ul {
  list-style: disc;
  text-align: left;
  max-width: 800px;
  margin: 20px auto 30px;
  padding-left: 40px;
}

.page--g-lut-chi .responsible-gambling-section li {
  margin-bottom: 10px;
}

/* FAQ Section */
.page--g-lut-chi .faq-section {
  padding: 60px 0;
  background-color: #24243E;
}

.page--g-lut-chi .faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page--g-lut-chi .accordion-item {
  background-color: #1A1A2E;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page--g-lut-chi .accordion-header {
  background-color: #33334F;
  color: #F0F0F0;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page--g-lut-chi .accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page--g-lut-chi .accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page--g-lut-chi .accordion-header:hover {
  background-color: #44446A;
}

.page--g-lut-chi .accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: #D0D0D0;
}

.page--g-lut-chi .accordion-content p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
}

/* CTA Section */
.page--g-lut-chi .cta-section {
  background: linear-gradient(135deg, #1A1A2E, #E94560);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page--g-lut-chi .cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page--g-lut-chi .cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #F0F0F0;
}

.page--g-lut-chi .cta-buttons .btn {
  margin: 0 15px;
  font-size: 1.3em;
  padding: 15px 40px;
}

.page--g-lut-chi .cta-buttons .btn-primary {
  background-color: #1A1A2E;
  border-color: #1A1A2E;
  color: #E94560;
}

.page--g-lut-chi .cta-buttons .btn-primary:hover {
  background-color: #0F0F1A;
  border-color: #0F0F1A;
  color: #E94560;
}

.page--g-lut-chi .cta-buttons .btn-secondary {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.page--g-lut-chi .cta-buttons .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #E94560;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page--g-lut-chi .hero-title {
    font-size: 2.8em;
  }
  .page--g-lut-chi .hero-subtitle {
    font-size: 1.3em;
  }
  .page--g-lut-chi .section-title {
    font-size: 2em;
  }
  .page--g-lut-chi .introduction-section .content-grid {
    flex-direction: column;
  }
  .page--g-lut-chi .rules-grid,
  .page--g-lut-chi .betting-types,
  .page--g-lut-chi .winning-criteria {
    grid-template-columns: 1fr;
  }
  .page--g-lut-chi .cta-buttons .btn {
    margin: 10px 0;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page--g-lut-chi .hero-title {
    font-size: 2.2em;
  }
  .page--g-lut-chi .hero-subtitle {
    font-size: 1.1em;
  }
  .page--g-lut-chi .hero-section {
    padding: 80px 0;
  }
  .page--g-lut-chi .section-title {
    font-size: 1.8em;
  }
  .page--g-lut-chi h3 {
    font-size: 1.5em;
  }
  .page--g-lut-chi h4 {
    font-size: 1.2em;
  }
  .page--g-lut-chi .process-list li {
    padding-left: 60px;
  }
  .page--g-lut-chi .process-list li::before {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
  }
  .page--g-lut-chi .accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page--g-lut-chi .cta-title {
    font-size: 2.2em;
  }
  .page--g-lut-chi .cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page--g-lut-chi .hero-title {
    font-size: 1.8em;
  }
  .page--g-lut-chi .hero-subtitle {
    font-size: 1em;
  }
  .page--g-lut-chi .hero-section .btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page--g-lut-chi .section-title {
    font-size: 1.5em;
  }
  .page--g-lut-chi .btn-large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page--g-lut-chi .cta-buttons .btn {
    width: 95%;
  }
}