.page-tin-tc {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ tổng thể */
  background-color: #0A1931; /* Nền tối chủ đạo */
  line-height: 1.6;
}

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

/* Hero Section */
.page-tin-tc .hero-section {
  background: linear-gradient(135deg, #0A1931, #213A63);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-tin-tc .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:hero:ee88_news_banner,latest_updates,online_betting]');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4); /* Làm tối ảnh nền để chữ nổi bật */
  z-index: 0;
}

.page-tin-tc .hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-tin-tc .hero-content h1 {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-tin-tc .hero-content p {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-tin-tc .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #0A1931;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-tin-tc .cta-button:hover {
  background: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* General Section Styling */
.page-tin-tc section {
  padding: 60px 0;
  text-align: center;
}

.page-tin-tc section:nth-of-type(even) {
  background-color: #1A2A44;
}

.page-tin-tc h2 {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-tin-tc h3 {
  font-size: 1.8em;
  color: #F0F0F0;
  margin-bottom: 15px;
}

.page-tin-tc p {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

/* Latest News Section */
.page-tin-tc .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-tin-tc .news-card {
  background-color: #1A2A44;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-tin-tc .news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-tin-tc .news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-tin-tc .card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-tin-tc .card-content h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-tin-tc .card-content h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc .card-content h3 a:hover {
  color: #F0F0F0;
}

.page-tin-tc .card-content p {
  font-size: 1em;
  color: #A0A0A0;
  flex-grow: 1;
}

.page-tin-tc .read-more {
  display: inline-block;
  margin-top: 20px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.page-tin-tc .read-more:hover {
  color: #E6C200;
  transform: translateX(5px);
}

/* Categories Section */
.page-tin-tc .categories-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-tin-tc .category-item {
  background-color: #0A1931;
  border: 1px solid #213A63;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: left;
}

.page-tin-tc .category-item:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
}

.page-tin-tc .category-item h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc .category-item h3 a:hover {
  color: #F0F0F0;
}

.page-tin-tc .category-item p {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-tin-tc .category-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-tin-tc .category-link:hover {
  color: #E6C200;
}

/* Featured Articles Section */
.page-tin-tc .articles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-tin-tc .article-item {
  background-color: #1A2A44;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  text-align: left;
}

.page-tin-tc .article-item img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-tin-tc .article-content {
  padding: 25px;
}

.page-tin-tc .article-content h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc .article-content h3 a:hover {
  color: #F0F0F0;
}

/* CTA Banner */
.page-tin-tc .cta-banner {
  background: #213A63;
  padding: 50px 20px;
  border-radius: 10px;
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-tin-tc .cta-banner h2 {
  color: #FFD700;
  font-size: 2.2em;
  margin-bottom: 20px;
}

.page-tin-tc .cta-banner p {
  color: #F0F0F0;
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-tin-tc .faq-section {
  background-color: #0A1931;
}

.page-tin-tc .faq-items {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tc .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-tin-tc .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A2A44;
  border: 1px solid #213A63;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-tin-tc .faq-question:hover {
  background: #213A63;
}

.page-tin-tc .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #F0F0F0;
}

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

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

.page-tin-tc .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background: #0A1931;
  padding: 0 25px;
  border-radius: 0 0 8px 8px;
}

.page-tin-tc .faq-item.active .faq-answer {
  max-height: 500px; /* Đủ lớn để chứa nội dung */
  padding: 20px 25px;
  border: 1px solid #213A63;
  border-top: none;
}

.page-tin-tc .faq-answer p {
  color: #C0C0C0;
  margin-bottom: 0;
  text-align: left;
}

/* Footer Placeholder */
.shared-footer {
  background-color: #0A1931;
  color: #E0E0E0;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  border-top: 1px solid #213A63;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-tin-tc .hero-content h1 {
    font-size: 3em;
  }
  .page-tin-tc .hero-content p {
    font-size: 1.2em;
  }
  .page-tin-tc h2 {
    font-size: 2em;
  }
  .page-tin-tc .article-item {
    flex-direction: column;
    text-align: center;
  }
  .page-tin-tc .article-item img {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .page-tin-tc .hero-section {
    padding: 60px 0;
  }
  .page-tin-tc .hero-content h1 {
    font-size: 2.5em;
  }
  .page-tin-tc .hero-content p {
    font-size: 1em;
  }
  .page-tin-tc .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-tin-tc section {
    padding: 40px 0;
  }
  .page-tin-tc h2 {
    font-size: 1.8em;
  }
  .page-tin-tc h3 {
    font-size: 1.5em;
  }
  .page-tin-tc .news-grid, .page-tin-tc .categories-list {
    grid-template-columns: 1fr;
  }
  .page-tin-tc .news-card, .page-tin-tc .category-item {
    padding: 20px;
  }
  .page-tin-tc .card-content h3 {
    font-size: 1.3em;
  }
  .page-tin-tc .article-item img {
    height: 200px;
  }
  .page-tin-tc .article-content {
    padding: 20px;
  }
  .page-tin-tc .cta-banner {
    margin: 40px 20px;
    padding: 40px 15px;
  }
  .page-tin-tc .faq-question {
    padding: 15px 20px;
  }
  .page-tin-tc .faq-question h3 {
    font-size: 1.1em;
  }
  .page-tin-tc .faq-answer {
    padding: 0 20px;
  }
  .page-tin-tc .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-tin-tc .hero-content h1 {
    font-size: 2em;
  }
  .page-tin-tc .hero-content p {
    font-size: 0.9em;
  }
  .page-tin-tc .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-tin-tc h2 {
    font-size: 1.6em;
  }
  .page-tin-tc h3 {
    font-size: 1.3em;
  }
  .page-tin-tc .news-card img {
    height: 180px;
  }
  .page-tin-tc .card-content h3 {
    font-size: 1.2em;
  }
  .page-tin-tc .article-item img {
    height: 150px;
  }
  .page-tin-tc .faq-question h3 {
    font-size: 1em;
  }
  .page-tin-tc .faq-toggle {
    font-size: 20px;
  }
}