.page-tin-tc-game {
  --primary-color: #FFD700;
  --secondary-color: #0A2463;
  --accent-color: #DC143C; /* Crimson for emphasis */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #1a1a2e;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

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

.page-tin-tc-game section:nth-of-type(even) {
  background-color: var(--bg-light);
}

.page-tin-tc-game .section-title {
  font-size: 38px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-tin-tc-game .section-description {
  font-size: 18px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tc-game .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-tin-tc-game .cta-button:hover {
  background: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-tin-tc-game .secondary-button {
  background: var(--secondary-color);
  color: var(--text-light);
  margin-left: 20px;
}

.page-tin-tc-game .secondary-button:hover {
  background: #071c4c;
}

.page-tin-tc-game .text-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-tin-tc-game .text-link:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

/* Hero Banner Section */
.page-tin-tc-game .hero-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #071c4c 100%);
  color: var(--text-light);
  padding: 80px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-tin-tc-game .hero-content-wrapper {
  max-width: 600px;
  text-align: left;
  padding: 0 20px;
}

.page-tin-tc-game .hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.2;
}

.page-tin-tc-game .hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-tin-tc-game .hero-description .text-link {
  color: var(--primary-color);
}

.page-tin-tc-game .hero-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-tin-tc-game .hero-image-container {
  flex-shrink: 0;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-tin-tc-game .hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Section Game Types */
.page-tin-tc-game .section-game-types {
  background-color: var(--bg-light);
}

.page-tin-tc-game .game-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.page-tin-tc-game .news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

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

.page-tin-tc-game .news-card .card-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-tin-tc-game .news-card .card-title .card-link {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-tin-tc-game .news-card .card-title .card-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-tin-tc-game .news-card .card-text {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tin-tc-game .news-card .read-more-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.page-tin-tc-game .news-card .read-more-link:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

/* Section Why Follow */
.page-tin-tc-game .section-why-follow {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.page-tin-tc-game .why-follow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-tin-tc-game .why-follow-item {
  text-align: center;
  padding: 30px;
  background: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tin-tc-game .why-follow-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-tin-tc-game .why-follow-item .item-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-tin-tc-game .why-follow-item .item-title {
  font-size: 26px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-tin-tc-game .why-follow-item .item-description {
  font-size: 16px;
  color: var(--text-dark);
}

/* Section Access News */
.page-tin-tc-game .section-access-news {
  background-color: var(--bg-light);
}

.page-tin-tc-game .access-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-tin-tc-game .access-list li {
  display: flex;
  align-items: flex-start;
  background: var(--text-light);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tin-tc-game .access-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-tin-tc-game .access-list .list-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 25px;
  flex-shrink: 0;
}

.page-tin-tc-game .access-list .list-content h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-tin-tc-game .access-list .list-content p {
  font-size: 16px;
  color: var(--text-dark);
}

/* Section Latest Articles */
.page-tin-tc-game .section-latest-articles {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.page-tin-tc-game .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

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

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

.page-tin-tc-game .article-card .article-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.page-tin-tc-game .article-card .article-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-tin-tc-game .article-card .article-title .article-link {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-tin-tc-game .article-card .article-title .article-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-tin-tc-game .article-card .article-summary {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-tin-tc-game .article-card .article-date {
  font-size: 14px;
  color: #777;
  margin-top: auto;
}

.page-tin-tc-game .view-all-articles-cta {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-tin-tc-game .section-faq {
  background-color: var(--bg-light);
}

.page-tin-tc-game .faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-tin-tc-game .faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--text-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-tin-tc-game .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;
}

.page-tin-tc-game .faq-question:hover {
  background: #f5f5f5;
}

.page-tin-tc-game .faq-question h3 {
  font-size: 20px;
  color: var(--secondary-color);
  margin: 0;
  font-weight: bold;
}

.page-tin-tc-game .faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.page-tin-tc-game .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  color: var(--text-dark);
}

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

.page-tin-tc-game .faq-answer p {
  margin: 0;
  font-size: 16px;
}

/* Section CTA Bottom */
.page-tin-tc-game .section-cta-bottom {
  background: var(--secondary-color);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
}

.page-tin-tc-game .cta-bottom-title {
  font-size: 38px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-tin-tc-game .cta-bottom-description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-tin-tc-game .cta-bottom-description .text-link {
  color: var(--primary-color);
}

.page-tin-tc-game .cta-bottom-description .text-link:hover {
  color: var(--text-light);
}

.page-tin-tc-game .cta-bottom-title + .cta-bottom-description {
  margin-top: 0;
}

.page-tin-tc-game .section-cta-bottom .primary-button {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-tin-tc-game .section-cta-bottom .primary-button:hover {
  background: #FFC107;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-tin-tc-game .hero-banner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .page-tin-tc-game .hero-content-wrapper {
    max-width: 100%;
    text-align: center;
  }
  .page-tin-tc-game .hero-image-container {
    max-width: 80%;
  }
  .page-tin-tc-game .hero-title {
    font-size: 40px;
  }
  .page-tin-tc-game .hero-description {
    font-size: 18px;
  }
  .page-tin-tc-game .hero-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-tin-tc-game section {
    padding: 40px 0;
  }
  .page-tin-tc-game .section-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .page-tin-tc-game .section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-tin-tc-game .hero-title {
    font-size: 32px;
  }
  .page-tin-tc-game .hero-description {
    font-size: 16px;
  }
  .page-tin-tc-game .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-tin-tc-game .secondary-button {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-tin-tc-game .game-news-grid, .page-tin-tc-game .why-follow-grid, .page-tin-tc-game .articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-tin-tc-game .news-card .card-title {
    font-size: 20px;
  }
  .page-tin-tc-game .access-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .page-tin-tc-game .access-list .list-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-tin-tc-game .access-list .list-content h3 {
    font-size: 20px;
  }
  .page-tin-tc-game .article-card .article-title {
    font-size: 18px;
  }
  .page-tin-tc-game .faq-question {
    padding: 15px 20px;
  }
  .page-tin-tc-game .faq-question h3 {
    font-size: 18px;
  }
  .page-tin-tc-game .faq-toggle {
    font-size: 24px;
  }
  .page-tin-tc-game .faq-item.active .faq-answer {
    padding: 15px 20px 20px;
  }
  .page-tin-tc-game .cta-bottom-title {
    font-size: 30px;
  }
  .page-tin-tc-game .cta-bottom-description {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .page-tin-tc-game .hero-title {
    font-size: 28px;
  }
  .page-tin-tc-game .hero-description {
    font-size: 15px;
  }
  .page-tin-tc-game .cta-button {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 10px;
  }
  .page-tin-tc-game .secondary-button {
    margin-top: 10px;
  }
  .page-tin-tc-game .section-title {
    font-size: 26px;
  }
  .page-tin-tc-game .news-card .card-title {
    font-size: 18px;
  }
  .page-tin-tc-game .article-card .article-title {
    font-size: 16px;
  }
  .page-tin-tc-game .cta-bottom-title {
    font-size: 26px;
  }
  .page-tin-tc-game .cta-bottom-description {
    font-size: 16px;
  }
}