/* Base styles for the page-specific container */
.page-tongits-zingplay-gift-code-hack {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
    padding-top: 10px; /* Small decorative padding, assuming body handles --header-offset */
}

/* Section styling */
.page-tongits-zingplay-gift-code-hack__hero-section,
.page-tongits-zingplay-gift-code-hack__introduction-section,
.page-tongits-zingplay-gift-code-hack__features-section,
.page-tongits-zingplay-gift-code-hack__faq-section,
.page-tongits-zingplay-gift-code-hack__final-cta-section {
    padding: 40px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #16213e; /* Slightly lighter dark background for sections */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-tongits-zingplay-gift-code-hack__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: linear-gradient(rgba(22, 33, 62, 0.8), rgba(22, 33, 62, 0.8)), url('[GALLERY:hero:1600x900:online_gaming,bonus,mobile,philippines]');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.page-tongits-zingplay-gift-code-hack__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-tongits-zingplay-gift-code-hack__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #e94560; /* Accent color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tongits-zingplay-gift-code-hack__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #c0c0c0;
}

.page-tongits-zingplay-gift-code-hack__hero-image-wrapper {
    display: none; /* Hide image in hero for mobile, use background */
}

/* General Titles */
.page-tongits-zingplay-gift-code-hack__section-title {
    font-size: 2.2em;
    color: #e94560;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA Buttons */
.page-tongits-zingplay-gift-code-hack__cta-button {
    display: inline-block;
    background-color: #e94560;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-tongits-zingplay-gift-code-hack__cta-button:hover {
    background-color: #ff6a80;
    transform: translateY(-2px);
}

.page-tongits-zingplay-gift-code-hack__cta-button--secondary {
    background-color: #0f3460;
    margin-top: 20px;
}

.page-tongits-zingplay-gift-code-hack__cta-button--secondary:hover {
    background-color: #1a519e;
}

/* Introduction Section */
.page-tongits-zingplay-gift-code-hack__content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-tongits-zingplay-gift-code-hack__content-wrapper p {
    margin-bottom: 15px;
    color: #c0c0c0;
}

/* Features Section */
.page-tongits-zingplay-gift-code-hack__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-tongits-zingplay-gift-code-hack__feature-card {
    background-color: #0f3460;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-tongits-zingplay-gift-code-hack__feature-card:hover {
    transform: translateY(-5px);
}

.page-tongits-zingplay-gift-code-hack__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
}

.page-tongits-zingplay-gift-code-hack__feature-title {
    font-size: 1.5em;
    color: #e94560;
    margin-bottom: 10px;
}

.page-tongits-zingplay-gift-code-hack__feature-description {
    color: #c0c0c0;
}

.page-tongits-zingplay-gift-code-hack__cta-bottom {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.page-tongits-zingplay-gift-code-hack__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-tongits-zingplay-gift-code-hack__faq-item {
    background-color: #0f3460;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-tongits-zingplay-gift-code-hack__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background-color: #0f3460;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-tongits-zingplay-gift-code-hack__faq-question:hover {
    background-color: #1a519e;
}

.page-tongits-zingplay-gift-code-hack__faq-title {
    font-size: 1.3em;
    color: #e94560;
    margin: 0;
    pointer-events: none; /* Prevent title from blocking click event */
}

.page-tongits-zingplay-gift-code-hack__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #e94560;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle icon from blocking click event */
}

.page-tongits-zingplay-gift-code-hack__faq-item.active .page-tongits-zingplay-gift-code-hack__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to form a minus */
}

.page-tongits-zingplay-gift-code-hack__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    color: #c0c0c0;
}

.page-tongits-zingplay-gift-code-hack__faq-item.active .page-tongits-zingplay-gift-code-hack__faq-answer {
    max-height: 2000px !important; /* Use !important to override initial 0 */
    padding: 20px 25px !important; /* Use !important to override initial 0 */
    opacity: 1;
}

.page-tongits-zingplay-gift-code-hack__faq-answer p {
    margin: 0;
}

/* Final CTA Section */
.page-tongits-zingplay-gift-code-hack__final-cta-section {
    text-align: center;
    padding-bottom: 60px;
}

.page-tongits-zingplay-gift-code-hack__final-cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #c0c0c0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-tongits-zingplay-gift-code-hack__hero-title {
        font-size: 2em;
    }

    .page-tongits-zingplay-gift-code-hack__hero-subtitle,
    .page-tongits-zingplay-gift-code-hack__final-cta-description {
        font-size: 1em;
    }

    .page-tongits-zingplay-gift-code-hack__section-title {
        font-size: 1.8em;
    }

    .page-tongits-zingplay-gift-code-hack__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-tongits-zingplay-gift-code-hack__features-grid {
        grid-template-columns: 1fr; /* Single column for features on mobile */
    }

    /* List item responsive requirements */
    .page-tongits-zingplay-gift-code-hack__features-grid,
    .page-tongits-zingplay-gift-code-hack__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-tongits-zingplay-gift-code-hack__feature-card,
    .page-tongits-zingplay-gift-code-hack__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Reduce padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-tongits-zingplay-gift-code-hack__feature-title {
        font-size: 1.3em;
    }

    .page-tongits-zingplay-gift-code-hack__faq-question {
        padding: 15px 20px;
    }

    .page-tongits-zingplay-gift-code-hack__faq-title {
        font-size: 1.1em;
    }

    .page-tongits-zingplay-gift-code-hack__faq-answer {
        padding: 15px 20px;
    }

    .page-tongits-zingplay-gift-code-hack__hero-section,
    .page-tongits-zingplay-gift-code-hack__introduction-section,
    .page-tongits-zingplay-gift-code-hack__features-section,
    .page-tongits-zingplay-gift-code-hack__faq-section,
    .page-tongits-zingplay-gift-code-hack__final-cta-section {
        padding: 30px 15px;
    }
}

@media (min-width: 769px) {
    .page-tongits-zingplay-gift-code-hack__hero-section {
        flex-direction: row;
        text-align: left;
        justify-content: space-around;
        padding: 80px 40px;
    }

    .page-tongits-zingplay-gift-code-hack__hero-content {
        max-width: 50%;
        text-align: left;
    }

    .page-tongits-zingplay-gift-code-hack__hero-image-wrapper {
        display: block;
        max-width: 40%;
    }

    .page-tongits-zingplay-gift-code-hack__hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        min-width: 200px;
        min-height: 200px;
        object-fit: cover;
    }
}

/* Ensure contrast */
.page-tongits-zingplay-gift-code-hack__hero-title,
.page-tongits-zingplay-gift-code-hack__section-title,
.page-tongits-zingplay-gift-code-hack__feature-title,
.page-tongits-zingplay-gift-code-hack__faq-title,
.page-tongits-zingplay-gift-code-hack__faq-toggle {
    color: #e94560; /* Vibrant accent on dark background */
}

.page-tongits-zingplay-gift-code-hack__hero-subtitle,
.page-tongits-zingplay-gift-code-hack__content-wrapper p,
.page-tongits-zingplay-gift-code-hack__feature-description,
.page-tongits-zingplay-gift-code-hack__faq-answer p,
.page-tongits-zingplay-gift-code-hack__final-cta-description {
    color: #c0c0c0; /* Light grey on dark background */
}

.page-tongits-zingplay-gift-code-hack__cta-button {
    background-color: #e94560; /* Primary button color */
    color: #ffffff; /* White text on primary button */
}

.page-tongits-zingplay-gift-code-hack__cta-button--secondary {
    background-color: #0f3460; /* Secondary button color */
    color: #ffffff; /* White text on secondary button */
}