/* style/tin-tuc.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #222222;
  --border-color: #e0e0e0;
}

.page-tin-tuc {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.page-tin-tuc a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tuc a:hover {
  color: var(--primary-color);
}

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

.page-tin-tuc-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-tin-tuc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:e2bet_abstract_pattern,dark_gold,texture]'); /* Abstract pattern for background */
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

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

.page-tin-tuc-hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-tin-tuc-hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-tin-tuc-cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-tin-tuc-cta-button:hover {
  background: var(--text-light);
  color: var(--secondary-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-tin-tuc-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-tin-tuc-section:last-of-type {
  border-bottom: none;
}

.page-tin-tuc-section h2 {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-tin-tuc-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-tin-tuc-section h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-tin-tuc-latest-news {
  background-color: var(--bg-light);
}

.page-tin-tuc-latest-news p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1em;
}

.page-tin-tuc-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-tin-tuc-article-card {
  background: var(--text-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-tin-tuc-article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-tin-tuc-article-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-tin-tuc-article-card h3 {
  font-size: 1.4em;
  margin: 20px 20px 10px 20px;
  line-height: 1.3;
  color: var(--text-dark);
}

.page-tin-tuc-article-card h3 a {
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.page-tin-tuc-article-card h3 a:hover {
  color: var(--secondary-color);
}

.page-tin-tuc-article-card p {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tin-tuc-read-more {
  display: inline-block;
  margin: 0 20px 20px 20px;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--text-light);
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page-tin-tuc-read-more:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.page-tin-tuc-expert-insights {
  background-color: var(--text-light);
}

.page-tin-tuc-expert-insights .page-tin-tuc-content-block {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.page-tin-tuc-expert-insights .page-tin-tuc-content-block h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.6em;
}

.page-tin-tuc-content-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-tin-tuc-expert-insights p {
  font-size: 1.05em;
  margin-bottom: 20px;
}

.page-tin-tuc-promotions {
  background-color: var(--bg-light);
}

.page-tin-tuc-promotions .page-tin-tuc-promo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-tin-tuc-promotions .page-tin-tuc-promo-list li {
  background: var(--text-light);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.page-tin-tuc-promotions .page-tin-tuc-promo-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-tin-tuc-promotions .page-tin-tuc-promo-list h3 {
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-tin-tuc-promotions .page-tin-tuc-promo-list p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 15px;
}

.page-tin-tuc-cta-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
  color: var(--text-dark);
}

.page-tin-tuc-faq {
  background-color: var(--text-light);
}

.page-tin-tuc-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--text-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--text-dark);
  flex-grow: 1;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #555;
}

.page-tin-tuc-cta-bottom {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  text-align: center;
  color: var(--text-light);
  padding: 80px 0;
}

.page-tin-tuc-cta-bottom h2 {
  color: var(--text-light);
}

.page-tin-tuc-cta-bottom h2::after {
  background: var(--text-light);
}

.page-tin-tuc-cta-bottom p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-light);
}

.page-tin-tuc-cta-bottom .page-tin-tuc-cta-button {
  background: var(--text-light);
  color: var(--secondary-color);
}

.page-tin-tuc-cta-bottom .page-tin-tuc-cta-button:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-tin-tuc-hero h1 {
    font-size: 2.5em;
  }
  .page-tin-tuc-section h2 {
    font-size: 2em;
  }
  .page-tin-tuc-article-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-tin-tuc-hero {
    padding: 60px 0;
  }
  .page-tin-tuc-hero h1 {
    font-size: 2em;
  }
  .page-tin-tuc-hero p {
    font-size: 1em;
  }
  .page-tin-tuc-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-tin-tuc-section {
    padding: 40px 0;
  }
  .page-tin-tuc-section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-tin-tuc-section h3 {
    font-size: 1.5em;
  }
  .page-tin-tuc-article-card h3 {
    font-size: 1.2em;
    margin: 15px 15px 8px 15px;
  }
  .page-tin-tuc-article-card p {
    padding: 0 15px;
    font-size: 0.9em;
  }
  .page-tin-tuc-read-more {
    margin: 0 15px 15px 15px;
    padding: 8px 15px;
    font-size: 0.9em;
  }
  .page-tin-tuc-promotions .page-tin-tuc-promo-list li {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .page-tin-tuc-promotions .page-tin-tuc-promo-icon {
    margin-bottom: 15px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 20px;
  }
  .page-tin-tuc-cta-bottom {
    padding: 60px 0;
  }
  .page-tin-tuc-cta-bottom p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-tin-tuc-hero h1 {
    font-size: 1.8em;
  }
  .page-tin-tuc-section h2 {
    font-size: 1.5em;
  }
  .page-tin-tuc-article-grid {
    grid-template-columns: 1fr;
  }
  .page-tin-tuc-promotions .page-tin-tuc-promo-list {
    grid-template-columns: 1fr;
  }
}