/* style/index-go88-features.css */

:root {
    --primary-color: #004080;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #121212;
}

.page-index-go88-features {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--bg-dark);
}

.page-index-go88-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-index-go88-features__hero-section {
    position: relative;
    padding: 120px 0 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #002040 100%);
    color: var(--text-light);
    padding-top: var(--header-offset, 120px);
}

.page-index-go88-features__hero-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-go88-features__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.page-index-go88-features__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-go88-features__cta-buttons--center {
    justify-content: center;
    margin-top: 40px;
}

.page-index-go88-features__btn-primary,
.page-index-go88-features__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-index-go88-features__btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-go88-features__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-go88-features__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-index-go88-features__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* General Section Styling */
.page-index-go88-features__introduction-section,
.page-index-go88-features__download-guide-section,
.page-index-go88-features__support-section,
.page-index-go88-features__conclusion-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-index-go88-features__features-section,
.page-index-go88-features__promotions-section,
.page-index-go88-features__faq-section {
    padding: 80px 0;
    background-color: #0d0d0d; /* Slightly lighter dark background for contrast */
    color: var(--text-light);
}

.page-index-go88-features__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-index-go88-features__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Introduction Section */
.page-index-go88-features__intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-index-go88-features__text-block {
    flex: 1;
    line-height: 1.7;
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.85);
}

.page-index-go88-features__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-go88-features__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

/* Features Grid */
.page-index-go88-features__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.page-index-go88-features__feature-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 450px;
}

.page-index-go88-features__feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-index-go88-features__card-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-index-go88-features__card-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-index-go88-features__card-description {
    font-size: 1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    flex-grow: 1;
}

/* Download Guide Section */
.page-index-go88-features__download-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-go88-features__download-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-index-go88-features__download-card .page-index-go88-features__card-title {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.page-index-go88-features__step-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    color: rgba(255, 255, 255, 0.85);
}

.page-index-go88-features__step-list li {
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.5;
}

.page-index-go88-features__step-list li strong {
    color: var(--secondary-color);
}

.page-index-go88-features__web-play-info {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(0, 64, 128, 0.7);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-go88-features__web-play-info .page-index-go88-features__card-title {
    color: var(--text-light);
    margin-bottom: 20px;
}

.page-index-go88-features__web-play-info p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Promotions Section */
.page-index-go88-features__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.page-index-go88-features__promo-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 450px;
}

.page-index-go88-features__promo-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

/* Support Section */
.page-index-go88-features__support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.page-index-go88-features__support-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
}

.page-index-go88-features__support-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-index-go88-features__support-card .page-index-go88-features__card-title {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-index-go88-features__support-card .page-index-go88-features__card-description {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* FAQ Section */
.page-index-go88-features__faq-list {
    max-width: 900px;
    margin: 60px auto 0 auto;
}

.page-index-go88-features__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-go88-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-index-go88-features__faq-question:hover {
    background-color: #0050a0;
}

.page-index-go88-features__faq-question h3 {
    margin: 0;
    color: inherit;
    font-size: 1.1em;
}

.page-index-go88-features__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.page-index-go88-features__faq-item.active .page-index-go88-features__faq-toggle {
    transform: rotate(45deg);
}

.page-index-go88-features__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.page-index-go88-features__faq-item.active .page-index-go88-features__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px 30px;
}

.page-index-go88-features__faq-answer p {
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

/* Conclusion Section */
.page-index-go88-features__conclusion-section .page-index-go88-features__section-title,
.page-index-go88-features__conclusion-section .page-index-go88-features__section-description {
    color: var(--secondary-color);
}

.page-index-go88-features__conclusion-section .page-index-go88-features__section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-go88-features__hero-title {
        font-size: 2.8em;
    }
    .page-index-go88-features__section-title {
        font-size: 2em;
    }
    .page-index-go88-features__intro-content {
        flex-direction: column;
        text-align: center;
    }
    .page-index-go88-features__image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-index-go88-features {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-index-go88-features__hero-section {
        padding: 100px 0 60px 0;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-index-go88-features__hero-title {
        font-size: 2.2em;
    }
    .page-index-go88-features__hero-description {
        font-size: 1em;
    }
    .page-index-go88-features__section-title {
        font-size: 1.8em;
    }
    .page-index-go88-features__section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-index-go88-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .page-index-go88-features__btn-primary,
    .page-index-go88-features__btn-secondary {
        width: 90%; /* Ensure buttons are full width on mobile */
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-index-go88-features__container {
        padding: 0 15px;
    }
    .page-index-go88-features__feature-card,
    .page-index-go88-features__download-card,
    .page-index-go88-features__promo-card,
    .page-index-go88-features__support-card {
        padding: 25px 20px;
        min-height: auto;
    }
    .page-index-go88-features__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-index-go88-features__introduction-section,
    .page-index-go88-features__features-section,
    .page-index-go88-features__download-guide-section,
    .page-index-go88-features__promotions-section,
    .page-index-go88-features__support-section,
    .page-index-go88-features__faq-section,
    .page-index-go88-features__conclusion-section {
        padding: 60px 0;
    }
    .page-index-go88-features__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-index-go88-features__faq-question h3 {
        font-size: 1em;
    }
    .page-index-go88-features__faq-answer {
        padding: 0 20px;
    }
    .page-index-go88-features__faq-item.active .page-index-go88-features__faq-answer {
        padding: 15px 20px;
    }
    /* Ensure all content area images are responsive */
    .page-index-go88-features img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-index-go88-features__section,
    .page-index-go88-features__card,
    .page-index-go88-features__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-index-go88-features__video-section {
        padding-top: var(--header-offset, 120px) !important; 
    }
    .page-index-go88-features__cta-buttons,
    .page-index-go88-features__button-group,
    .page-index-go88-features__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-index-go88-features__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-index-go88-features__hero-title {
        font-size: 1.8em;
    }
    .page-index-go88-features__section-title {
        font-size: 1.5em;
    }
}