/* style/blog-what-is-tongits-game.css */

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-what-is-tongits-game {
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Fixed header spacing and Hero Section styling */
.page-blog-what-is-tongits-game__hero-section {
    padding-top: var(--header-offset, 120px); /* Desktop default for fixed header */
    background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Main color and Aux color */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
}

.page-blog-what-is-tongits-game__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height for visual balance */
    margin-bottom: 20px;
}

.page-blog-what-is-tongits-game__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-what-is-tongits-game__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
    color: #0A0A0A; /* Dark text on light background for H1 */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-what-is-tongits-game__hero-description {
    font-size: 1.1rem;
    color: #333333; /* Darker text for description on light background */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-what-is-tongits-game__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-blog-what-is-tongits-game__section-title {
    font-size: 2.5rem;
    color: #F2C14E; /* Main color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-what-is-tongits-game__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD36B; /* Glow color */
    border-radius: 2px;
}

.page-blog-what-is-tongits-game__sub-title {
    font-size: 1.8rem;
    color: #FFD36B; /* Auxiliary color for subtitles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-what-is-tongits-game__text-block {
    font-size: 1.1rem;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 20px;
}

.page-blog-what-is-tongits-game__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #FFF6D6; /* Text Main */
}

.page-blog-what-is-tongits-game__list-item {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.page-blog-what-is-tongits-game__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px;
}

/* Buttons */
.page-blog-what-is-tongits-game__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-what-is-tongits-game__btn-primary,
.page-blog-what-is-tongits-game__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
    max-width: 100%; /* Ensure responsiveness */
    text-align: center;
}

.page-blog-what-is-tongits-game__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #ffffff; /* White text for contrast */
    border: 2px solid transparent;
}

.page-blog-what-is-tongits-game__btn-primary:hover {
    background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
    box-shadow: 0 0 15px #FFD36B; /* Glow effect */
}

.page-blog-what-is-tongits-game__btn-secondary {
    background: #111111; /* Card BG */
    color: #F2C14E; /* Main color text */
    border: 2px solid #F2C14E; /* Main color border */
}

.page-blog-what-is-tongits-game__btn-secondary:hover {
    background: #F2C14E;
    color: #111111; /* Dark text on main color background */
    box-shadow: 0 0 15px #FFD36B; /* Glow effect */
}

/* FAQ Section */
.page-blog-what-is-tongits-game__faq-list {
    margin-top: 30px;
}

.page-blog-what-is-tongits-game__faq-item {
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-what-is-tongits-game__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    color: #FFF6D6; /* Text Main */
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #111111;
    transition: background-color 0.3s ease;
}

.page-blog-what-is-tongits-game__faq-question:hover {
    background-color: #0A0A0A; /* Slightly darker on hover */
}

.page-blog-what-is-tongits-game__faq-title {
    margin: 0;
    color: #FFF6D6; /* Text Main */
}

.page-blog-what-is-tongits-game__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #F2C14E; /* Main color for toggle */
}

.page-blog-what-is-tongits-game__faq-item.active .page-blog-what-is-tongits-game__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-what-is-tongits-game__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #FFF6D6; /* Text Main */
    font-size: 1.1rem;
}

.page-blog-what-is-tongits-game__faq-item.active .page-blog-what-is-tongits-game__faq-answer {
    max-height: 1000px !important; /* Ensure it expands fully */
    padding: 15px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-what-is-tongits-game__hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .page-blog-what-is-tongits-game__section-title {
        font-size: 2rem;
    }

    .page-blog-what-is-tongits-game__sub-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-blog-what-is-tongits-game__hero-section {
        padding-top: var(--header-offset, 100px) !important; /* Mobile default for fixed header */
        padding-bottom: 40px;
    }

    .page-blog-what-is-tongits-game__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-blog-what-is-tongits-game__hero-description,
    .page-blog-what-is-tongits-game__text-block,
    .page-blog-what-is-tongits-game__list-item,
    .page-blog-what-is-tongits-game__faq-answer {
        font-size: 1rem;
    }

    .page-blog-what-is-tongits-game__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-blog-what-is-tongits-game__sub-title {
        font-size: 1.4rem;
    }

    .page-blog-what-is-tongits-game__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to container */
    }

    .page-blog-what-is-tongits-game__btn-primary,
    .page-blog-what-is-tongits-game__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Mobile image responsiveness */
    .page-blog-what-is-tongits-game img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
        min-width: 200px; /* Ensure min size is maintained for content images */
        min-height: 200px;
        box-sizing: border-box !important;
    }

    .page-blog-what-is-tongits-game__container,
    .page-blog-what-is-tongits-game__introduction-section,
    .page-blog-what-is-tongits-game__rules-section,
    .page-blog-what-is-tongits-game__strategy-section,
    .page-blog-what-is-tongits-game__online-section,
    .page-blog-what-is-tongits-game__variations-section,
    .page-blog-what-is-tongits-game__faq-section,
    .page-blog-what-is-tongits-game__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-what-is-tongits-game__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .page-blog-what-is-tongits-game__faq-answer {
        padding: 0 20px;
    }

    .page-blog-what-is-tongits-game__faq-item.active .page-blog-what-is-tongits-game__faq-answer {
        padding: 15px 20px;
    }
}