
    /* CSS for page-6-bet */
.page-6-bet {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0;
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
}

.page-6-bet__section {
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.page-6-bet__section-title {
    font-size: 2.5em;
    color: #e94560; /* Accent color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-6-bet__section-description {
    font-size: 1.1em;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-6-bet__hero-section {
    background: linear-gradient(135deg, #16213e, #0f3460);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
    padding-top: 10px; /* Decorative top padding as per instruction (8-16px) */
}

.page-6-bet__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #f0f0f0;
    font-weight: 700;
    line-height: 1.2;
}

.page-6-bet__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-6-bet__hero-image-wrapper {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    max-width: 800px; /* Centered product display image */
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-6-bet__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Product Showcase */
.page-6-bet__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    list-style: none; /* Ensure no default list styling */
    padding: 0; /* Ensure no default list padding */
    margin: 0; /* Ensure no default list margin */
}

.page-6-bet__product-item {
    background-color: #2e2e4e;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Required for list items */
}

.page-6-bet__product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-6-bet__product-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
    width: 100%; /* Ensure image fills container */
    min-height: 200px; /* Minimum image size */
}

.page-6-bet__product-name {
    font-size: 1.8em;
    color: #e94560;
    margin-bottom: 10px;
}

.page-6-bet__product-description {
    font-size: 1em;
    color: #c0c0c0;
}

/* Promotions Section */
.page-6-bet__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    list-style: none; /* Ensure no default list styling */
    padding: 0; /* Ensure no default list padding */
    margin: 0; /* Ensure no default list margin */
}

.page-6-bet__promotion-card {
    background-color: #2e2e4e;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Required for list items */
}

.page-6-bet__promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-6-bet__promotion-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
    width: 100%; /* Ensure image fills container */
    min-height: 200px; /* Minimum image size */
}

.page-6-bet__promotion-title {
    font-size: 1.8em;
    color: #e94560;
    margin-bottom: 10px;
}

.page-6-bet__promotion-description {
    font-size: 1em;
    color: #c0c0c0;
}

/* Features Section */
.page-6-bet__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    list-style: none; /* Ensure no default list styling */
    padding: 0; /* Ensure no default list padding */
    margin: 0; /* Ensure no default list margin */
}

.page-6-bet__feature-item {
    background-color: #2e2e4e;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    box-sizing: border-box; /* Required for list items */
}

.page-6-bet__feature-icon {
    max-width: 200px; /* Minimum image size */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-6-bet__feature-title {
    font-size: 1.8em;
    color: #e94560;
    margin-bottom: 10px;
}

.page-6-bet__feature-description {
    font-size: 1em;
    color: #c0c0c0;
}

/* FAQ Section */
.page-6-bet__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-6-bet__faq-item {
    background-color: #2e2e4e;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    box-sizing: border-box; /* Required for list items */
}

.page-6-bet__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #16213e;
    color: #f0f0f0;
    font-size: 1.2em;
    font-weight: bold;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-6-bet__faq-question:hover {
    background-color: #0f3460;
}

.page-6-bet__faq-question-text {
    margin: 0;
    flex-grow: 1;
    color: #f0f0f0; /* Ensure good contrast */
    pointer-events: none; /* Prevent text from blocking click event */
}

.page-6-bet__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: #e94560;
    pointer-events: none; /* Prevent toggle icon from blocking click event */
}

.page-6-bet__faq-item.active .page-6-bet__faq-toggle {
    transform: rotate(45deg); /* Change '+' to 'x' visually */
}

.page-6-bet__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding 0 to animate */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: #c0c0c0;
    opacity: 0;
}

.page-6-bet__faq-item.active .page-6-bet__faq-answer {
    max-height: 2000px !important; /* Sufficiently large value */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-6-bet__faq-answer p {
    margin: 0;
    font-size: 1em;
    color: #c0c0c0;
}

/* CTA Section */
.page-6-bet__cta-section {
    text-align: center;
    background-color: #16213e;
    padding: 50px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.page-6-bet__cta-button {
    display: inline-block;
    background-color: #e94560;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-6-bet__cta-button:hover {
    background-color: #ff6b8a;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-6-bet__hero-title {
        font-size: 2.8em;
    }
    .page-6-bet__hero-description {
        font-size: 1.2em;
    }
    .page-6-bet__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-6-bet__hero-section {
        padding: 40px 15px;
        padding-top: 10px; /* Decorative top padding for mobile as well */
    }
    .page-6-bet__hero-title {
        font-size: 2.2em;
    }
    .page-6-bet__hero-description {
        font-size: 1.1em;
    }
    .page-6-bet__section {
        padding: 30px 15px;
    }
    .page-6-bet__section-title {
        font-size: 1.8em;
    }
    .page-6-bet__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* List item mobile responsiveness */
    .page-6-bet__product-grid,
    .page-6-bet__promotion-grid,
    .page-6-bet__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-6-bet__product-item,
    .page-6-bet__promotion-card,
    .page-6-bet__feature-item,
    .page-6-bet__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-6-bet__product-description,
    .page-6-bet__promotion-description,
    .page-6-bet__feature-description,
    .page-6-bet__faq-answer p {
        word-break: break-word !important;
    }

    .page-6-bet__product-image,
    .page-6-bet__promotion-image,
    .page-6-bet__feature-icon,
    .page-6-bet__hero-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-6-bet__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-6-bet__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-6-bet__faq-answer {
        padding: 0 20px;
    }
    .page-6-bet__faq-item.active .page-6-bet__faq-answer {
        padding: 15px 20px !important;
    }

    .page-6-bet__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .page-6-bet__hero-title {
        font-size: 1.8em;
    }
    .page-6-bet__hero-description {
        font-size: 0.95em;
    }
    .page-6-bet__section-title {
        font-size: 1.6em;
    }
    .page-6-bet__product-name,
    .page-6-bet__promotion-title,
    .page-6-bet__feature-title {
        font-size: 1.5em;
    }
}

  