/* style/blog-good88-platform-features.css */

/* Root variables for colors */
:root {
    --page-bg-color: #08160F;
    --card-bg-color: #11271B;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
    --primary-color: #11A84E;
    --secondary-color: #22C768;
}

/* Main page styling */
.page-blog-good88-platform-features {
    background-color: var(--page-bg-color);
    color: var(--text-main-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-blog-good88-platform-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-good88-platform-features__section {
    padding: 60px 0;
}

.page-blog-good88-platform-features__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--text-main-color);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-blog-good88-platform-features__text-block {
    font-size: 1.1em;
    color: var(--text-secondary-color);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-good88-platform-features__keyword {
    color: var(--gold-color);
    font-weight: bold;
}

/* Hero Section */
.page-blog-good88-platform-features__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-blog-good88-platform-features__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-good88-platform-features__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-good88-platform-features__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-good88-platform-features__main-title {
    font-size: clamp(2.5em, 5vw, 3.8em);
    font-weight: 900;
    color: var(--text-main-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-good88-platform-features__hero-description {
    font-size: 1.2em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-good88-platform-features__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog-good88-platform-features__btn-primary,
.page-blog-good88-platform-features__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-blog-good88-platform-features__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main-color);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-good88-platform-features__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-good88-platform-features__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-good88-platform-features__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-main-color);
}

/* Intro Section */
.page-blog-good88-platform-features__intro-section .page-blog-good88-platform-features__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.page-blog-good88-platform-features__features-grid {
    background-color: var(--card-bg-color);
}

.page-blog-good88-platform-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-good88-platform-features__feature-card {
    background-color: var(--page-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-good88-platform-features__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-good88-platform-features__feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-good88-platform-features__card-title {
    font-size: 1.8em;
    color: var(--text-main-color);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-blog-good88-platform-features__card-description {
    font-size: 1em;
    color: var(--text-secondary-color);
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-blog-good88-platform-features__btn-text {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-blog-good88-platform-features__btn-text:hover {
    color: var(--glow-color);
}

/* Promotions Section */
.page-blog-good88-platform-features__promotions-section {
    background-color: var(--page-bg-color);
}

.page-blog-good88-platform-features__promo-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
}

.page-blog-good88-platform-features__promo-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--divider-color);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.1em;
    color: var(--text-main-color);
    display: flex;
    align-items: center;
}

.page-blog-good88-platform-features__promo-item::before {
    content: '⭐';
    margin-right: 10px;
    font-size: 1.2em;
}

.page-blog-good88-platform-features__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Access Section */
.page-blog-good88-platform-features__access-section .page-blog-good88-platform-features__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-good88-platform-features__step-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    counter-reset: step-counter;
}

.page-blog-good88-platform-features__step-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 1.1em;
    color: var(--text-main-color);
    position: relative;
    padding-left: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.page-blog-good88-platform-features__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--text-main-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

/* FAQ Section */
.page-blog-good88-platform-features__faq-section {
    background-color: var(--card-bg-color);
}

.page-blog-good88-platform-features__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-blog-good88-platform-features__faq-item {
    background-color: var(--page-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-good88-platform-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main-color);
    cursor: pointer;
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--border-color);
}

.page-blog-good88-platform-features__faq-item[open] .page-blog-good88-platform-features__faq-question {
    border-bottom: 1px solid var(--border-color);
}

.page-blog-good88-platform-features__faq-question::-webkit-details-marker, /* Hide default marker for Chrome/Safari */
.page-blog-good88-platform-features__faq-question::marker { /* Hide default marker for Firefox */
    display: none;
}

.page-blog-good88-platform-features__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-good88-platform-features__faq-item[open] .page-blog-good88-platform-features__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-good88-platform-features__faq-answer {
    padding: 20px 25px;
    font-size: 1.05em;
    color: var(--text-secondary-color);
    background-color: var(--page-bg-color);
}

.page-blog-good88-platform-features__faq-answer p {
    margin-bottom: 0;
}

/* Contact CTA */
.page-blog-good88-platform-features__contact-cta {
    text-align: center;
    padding-bottom: 60px;
}

.page-blog-good88-platform-features__contact-cta .page-blog-good88-platform-features__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-good88-platform-features__section-title {
        font-size: 2em;
    }

    .page-blog-good88-platform-features__main-title {
        font-size: clamp(2em, 4vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-blog-good88-platform-features {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-good88-platform-features__section {
        padding: 40px 0;
    }

    .page-blog-good88-platform-features__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-good88-platform-features__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-blog-good88-platform-features__hero-description {
        font-size: 1em;
    }

    .page-blog-good88-platform-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-good88-platform-features__btn-primary,
    .page-blog-good88-platform-features__btn-secondary,
    .page-blog-good88-platform-features a[class*="button"],
    .page-blog-good88-platform-features a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-good88-platform-features__cta-buttons--mobile-stack {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .page-blog-good88-platform-features__grid {
        grid-template-columns: 1fr;
    }

    .page-blog-good88-platform-features__feature-image {
        height: 200px;
    }

    .page-blog-good88-platform-features__promo-item,
    .page-blog-good88-platform-features__step-item {
        padding: 15px;
        padding-left: 50px;
        font-size: 1em;
    }

    .page-blog-good88-platform-features__step-item::before {
        left: 15px;
        width: 25px;
        height: 25px;
        font-size: 1em;
    }

    .page-blog-good88-platform-features__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-blog-good88-platform-features__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
    }

    /* Mobile image and video responsive adaptation */
    .page-blog-good88-platform-features img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-good88-platform-features video,
    .page-blog-good88-platform-features__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-good88-platform-features__section,
    .page-blog-good88-platform-features__card,
    .page-blog-good88-platform-features__container,
    .page-blog-good88-platform-features__video-section,
    .page-blog-good88-platform-features__video-container,
    .page-blog-good88-platform-features__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-blog-good88-platform-features__video-section {
        padding-top: 10px !important; /* body handles header offset */
    }
}

@media (max-width: 480px) {
    .page-blog-good88-platform-features__section-title {
        font-size: 1.5em;
    }
    .page-blog-good88-platform-features__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }
}