/* style/sports.css */
.page-sports {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-sports .section-title {
  color: #001F3F;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-sports .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #001F3F;
  overflow: hidden;
}

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

.page-sports .hero-image-full {
  width: 100%;
  height: 500px; /* Chiều cao cố định cho hình ảnh hero */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.page-sports .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff;
  padding: 0 20px;
}

.page-sports .hero-title {
  font-size: 52px;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-sports .hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #001F3F;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-sports .cta-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-sports .cta-button-secondary {
  display: inline-block;
  padding: 15px 35px;
  background: #001F3F;
  color: #FFD700;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #FFD700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-sports .cta-button-secondary:hover {
  background: #FFD700;
  color: #001F3F;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-sports .intro-section,
.page-sports .sports-types-section,
.page-sports .features-section,
.page-sports .promotions-section,
.page-sports .guide-section,
.page-sports .security-section,
.page-sports .faq-section,
.page-sports .call-to-action-section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-sports .intro-section p,
.page-sports .security-section p {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #555;
}

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

.page-sports .sport-card {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.page-sports .sport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports .sport-card .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-sports .sport-card .card-title {
  color: #001F3F;
  font-size: 24px;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-sports .sport-card p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
  padding: 0 15px;
}

.page-sports .sport-card .card-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FFD700;
  color: #001F3F;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-sports .sport-card .card-button:hover {
  background-color: #FFA500;
  transform: translateY(-2px);
}

.page-sports .features-section {
  background-color: #f0f4f8;
}

.page-sports .feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports .feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-sports .feature-item:hover {
  transform: translateY(-5px);
}

.page-sports .feature-item .feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-sports .feature-item h3 {
  color: #001F3F;
  font-size: 22px;
  margin-bottom: 15px;
}

.page-sports .feature-item p {
  color: #666;
  font-size: 16px;
}

.page-sports .promotions-section {
  background-color: #e6f0f7;
}

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

.page-sports .promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.page-sports .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-sports .promo-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-sports .promo-card .card-title {
  color: #001F3F;
  font-size: 24px;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-sports .promo-card p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
  padding: 0 15px;
}

.page-sports .promo-card .card-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FFD700;
  color: #001F3F;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-sports .promo-card .card-button:hover {
  background-color: #FFA500;
  transform: translateY(-2px);
}

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

.page-sports .step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-sports .step-item .step-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 50%;
  border: 4px solid #FFD700;
  padding: 10px;
}

.page-sports .step-item h3 {
  color: #001F3F;
  font-size: 24px;
  margin-bottom: 15px;
}

.page-sports .step-item p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
}

.page-sports .step-item .step-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #001F3F;
  color: #FFD700;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-sports .step-item .step-button:hover {
  background-color: #FFD700;
  color: #001F3F;
}

.page-sports .security-section {
  background-color: #fcfcfc;
}

.page-sports .security-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-sports .security-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports .security-text {
  flex: 2;
  min-width: 300px;
  text-align: left;
}

.page-sports .security-text p {
  text-align: left;
  font-size: 18px;
  margin-bottom: 20px;
}

.page-sports .faq-section {
  background-color: #f0f4f8;
}

.page-sports .faq-list {
  margin-top: 40px;
}

.page-sports .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-sports .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-sports .faq-question:hover {
  background: #f5f5f5;
}

.page-sports .faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #001F3F;
}

.page-sports .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-sports .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-sports .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background: #f9f9f9;
  padding: 0 25px;
}

.page-sports .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-sports .faq-answer p {
  margin: 0;
  font-size: 16px;
  color: #555;
}

.page-sports .call-to-action-section {
  background: linear-gradient(135deg, #001F3F, #003366);
  color: #ffffff;
  text-align: center;
  padding: 100px 0;
}

.page-sports .call-to-action-section .section-title {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-sports .call-to-action-section .section-title::after {
  background-color: #FFD700;
}

.page-sports .call-to-action-section p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports .hero-title {
    font-size: 44px;
  }
  .page-sports .hero-description {
    font-size: 18px;
  }
  .page-sports .section-title {
    font-size: 32px;
  }
  .page-sports .security-content {
    flex-direction: column;
    text-align: center;
  }
  .page-sports .security-image {
    max-width: 80%;
    margin-bottom: 30px;
  }
  .page-sports .security-text {
    text-align: center;
  }
  .page-sports .security-text p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-sports .hero-section {
    padding: 40px 15px;
  }
  .page-sports .hero-image-full {
    height: 350px;
    margin-bottom: 30px;
  }
  .page-sports .hero-title {
    font-size: 36px;
  }
  .page-sports .hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-sports .cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-sports .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-sports .intro-section,
  .page-sports .sports-types-section,
  .page-sports .features-section,
  .page-sports .promotions-section,
  .page-sports .guide-section,
  .page-sports .security-section,
  .page-sports .faq-section,
  .page-sports .call-to-action-section {
    padding: 60px 0;
  }
  .page-sports .sports-grid,
  .page-sports .feature-list,
  .page-sports .promo-grid,
  .page-sports .guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-sports .sport-card .card-title,
  .page-sports .feature-item h3,
  .page-sports .promo-card .card-title,
  .page-sports .step-item h3 {
    font-size: 20px;
  }
  .page-sports .faq-question {
    padding: 15px 20px;
  }
  .page-sports .faq-question h3 {
    font-size: 16px;
  }
  .page-sports .faq-toggle {
    font-size: 20px;
  }
  .page-sports .faq-answer {
    padding: 0 20px;
  }
  .page-sports .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-sports .call-to-action-section {
    padding: 80px 0;
  }
  .page-sports .call-to-action-section p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .page-sports .hero-image-full {
    height: 250px;
  }
  .page-sports .hero-title {
    font-size: 28px;
  }
  .page-sports .hero-description {
    font-size: 14px;
  }
  .page-sports .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-sports .section-title {
    font-size: 24px;
  }
  .page-sports .sport-card .card-image,
  .page-sports .promo-card .card-image {
    height: 180px;
  }
  .page-sports .feature-item .feature-icon,
  .page-sports .step-item .step-icon {
    width: 80px;
    height: 80px;
  }
  .page-sports .security-image {
    max-width: 95%;
  }
}