/* style/tin-tc.css */

:root {
    --primary-color: #FFD700;
    --secondary-color: #B22222;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-light: #f4f4f4;
    --card-bg: #2a2a2a;
    --border-color: #444444;
}

.page-tin-tc {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark);
    background-color: var(--bg-light);
}

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

/* Hero Section */
.page-tin-tc .hero-news-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 60px 0;
    text-align: center;
    color: var(--text-color-light);
    overflow: hidden;
}

.page-tin-tc .hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-tin-tc .hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-tin-tc .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-tin-tc .hero-image img:hover {
    transform: scale(1.03);
}

.page-tin-tc .hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-tin-tc .hero-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-tin-tc .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-color-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-tin-tc .cta-button:hover {
    background: #FFC107; /* Slightly darker gold */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Latest Articles Section */
.page-tin-tc .latest-articles {
    padding: 60px 0;
    background-color: var(--bg-light);
    color: var(--text-color-dark);
}

.page-tin-tc .latest-articles h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-tin-tc .latest-articles p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: var(--text-color-dark);
}

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

.page-tin-tc .article-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-tin-tc .article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-tin-tc .article-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.page-tin-tc .article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-tin-tc .article-card:hover .article-thumbnail img {
    transform: scale(1.05);
}

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

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

.page-tin-tc .article-content h3 a {
    color: var(--text-color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-tin-tc .article-content p {
    font-size: 0.95em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.page-tin-tc .article-date {
    font-size: 0.85em;
    color: #999999;
    margin-bottom: 15px;
    display: block;
}

.page-tin-tc .read-more {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-tin-tc .read-more:hover {
    color: var(--primary-color);
}

.page-tin-tc .view-all-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-tin-tc .view-all-button:hover {
    background: #A01E1E; /* Slightly darker red */
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* SHBET80 Insights Section */
.page-tin-tc .shbet80-insights {
    padding: 60px 0;
    background-color: #f0f0f0;
    color: var(--text-color-dark);
}

.page-tin-tc .shbet80-insights h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-tin-tc .shbet80-insights p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: var(--text-color-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-tin-tc .insight-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tin-tc .insight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-tin-tc .insight-item h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-tin-tc .insight-item h3 a {
    color: var(--text-color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tin-tc .insight-item h3 a:hover {
    color: var(--primary-color);
}

.page-tin-tc .insight-item p {
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 0;
}

/* SHBET80 Advantages Section */
.page-tin-tc .shbet80-advantages {
    padding: 60px 0;
    background-color: var(--bg-dark);
    color: var(--text-color-light);
}

.page-tin-tc .shbet80-advantages h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-tin-tc .shbet80-advantages p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-tin-tc .shbet80-advantages ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 900px;
}

.page-tin-tc .shbet80-advantages ul li {
    background-color: var(--card-bg);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1em;
    line-height: 1.6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-tin-tc .shbet80-advantages ul li:hover {
    background-color: #3a3a3a;
}

.page-tin-tc .shbet80-advantages ul li strong {
    color: var(--primary-color);
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

/* FAQ Section */
.page-tin-tc .faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    color: var(--text-color-dark);
}

.page-tin-tc .faq-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.page-tin-tc .faq-items-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-tin-tc .faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-tin-tc .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-tin-tc .faq-question:hover {
    background: #f5f5f5;
}

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

.page-tin-tc .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

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

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

.page-tin-tc .faq-answer p {
    margin: 0;
    line-height: 1.7;
    text-align: left;
    font-size: 1em;
}

/* Related Links Section */
.page-tin-tc .related-links {
    padding: 60px 0;
    background-color: #e8e8e8;
    color: var(--text-color-dark);
}

.page-tin-tc .related-links h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.page-tin-tc .link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-tin-tc .link-card {
    display: block;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color-dark);
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-tin-tc .link-card:hover {
    background-color: var(--primary-color);
    color: var(--text-color-dark);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-tin-tc .hero-content h1 {
        font-size: 2.8em;
    }
    .page-tin-tc .hero-content p {
        font-size: 1.1em;
    }
    .page-tin-tc .latest-articles h2,
    .page-tin-tc .shbet80-insights h2,
    .page-tin-tc .shbet80-advantages h2,
    .page-tin-tc .faq-section h2,
    .page-tin-tc .related-links h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-tin-tc .hero-news-banner {
        padding: 40px 0;
    }
    .page-tin-tc .hero-content h1 {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-tin-tc .hero-content p {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-tin-tc .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-tin-tc .latest-articles,
    .page-tin-tc .shbet80-insights,
    .page-tin-tc .shbet80-advantages,
    .page-tin-tc .faq-section,
    .page-tin-tc .related-links {
        padding: 40px 0;
    }
    .page-tin-tc .latest-articles h2,
    .page-tin-tc .shbet80-insights h2,
    .page-tin-tc .shbet80-advantages h2,
    .page-tin-tc .faq-section h2,
    .page-tin-tc .related-links h2 {
        font-size: 1.8em;
    }
    .page-tin-tc .latest-articles p,
    .page-tin-tc .shbet80-insights p,
    .page-tin-tc .shbet80-advantages p,
    .page-tin-tc .faq-section p {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-tin-tc .article-grid {
        grid-template-columns: 1fr;
    }
    .page-tin-tc .insight-list {
        grid-template-columns: 1fr;
    }
    .page-tin-tc .insight-item {
        padding: 20px;
    }
    .page-tin-tc .insight-item h3 {
        font-size: 1.4em;
    }
    .page-tin-tc .shbet80-advantages ul li {
        padding: 15px 20px;
        font-size: 0.95em;
    }
    .page-tin-tc .faq-question {
        padding: 15px 20px;
    }
    .page-tin-tc .faq-question h3 {
        font-size: 1.1em;
    }
    .page-tin-tc .faq-toggle {
        font-size: 1.5em;
    }
    .page-tin-tc .faq-answer {
        padding: 0 20px;
    }
    .page-tin-tc .faq-item.active .faq-answer {
        padding: 15px 20px 20px 20px;
    }
    .page-tin-tc .link-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .page-tin-tc .link-card {
        font-size: 1em;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-tin-tc .hero-content h1 {
        font-size: 1.8em;
    }
    .page-tin-tc .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-tin-tc .latest-articles h2,
    .page-tin-tc .shbet80-insights h2,
    .page-tin-tc .shbet80-advantages h2,
    .page-tin-tc .faq-section h2,
    .page-tin-tc .related-links h2 {
        font-size: 1.5em;
    }
    .page-tin-tc .article-content h3 {
        font-size: 1.3em;
    }
    .page-tin-tc .faq-question h3 {
        font-size: 1em;
    }
    .page-tin-tc .faq-toggle {
        font-size: 1.3em;
    }
}