
    /* CSS for page-sao5 */
    :root {
        --page-sao5-primary-color: #FFD700; /* Gold */
        --page-sao5-secondary-color: #1A1A1A; /* Dark Grey */
        --page-sao5-accent-color: #E50000; /* Red */
        --page-sao5-text-light: #FFFFFF;
        --page-sao5-text-dark: #333333;
        --page-sao5-background-dark: #0A0A0A;
        --page-sao5-button-hover: #FFC107; /* Lighter Gold */
    }

    .page-sao5 {
        font-family: 'Arial', sans-serif;
        color: var(--page-sao5-text-light);
        background-color: var(--page-sao5-background-dark);
        line-height: 1.6;
        padding-top: 10px; /* Small decorative top padding, main offset from body padding-top */
    }

    .page-sao5__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        text-align: center;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .page-sao5__section--dark {
        background-color: var(--page-sao5-secondary-color);
    }

    .page-sao5__heading {
        font-size: 2.5em;
        color: var(--page-sao5-primary-color);
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .page-sao5__subheading {
        font-size: 1.8em;
        color: var(--page-sao5-text-light);
        margin-bottom: 15px;
    }

    .page-sao5__text {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: var(--page-sao5-text-light);
    }

    /* Hero Section */
    .page-sao5__hero-section {
        padding: 60px 20px;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:sao5,betting,casino,background]') no-repeat center center / cover;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
    }

    .page-sao5__hero-title {
        font-size: 3.5em;
        color: var(--page-sao5-primary-color);
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-sao5__hero-description {
        font-size: 1.3em;
        max-width: 800px;
        margin-bottom: 30px;
        color: var(--page-sao5-text-light);
    }

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

    .page-sao5__button {
        background-color: var(--page-sao5-primary-color);
        color: var(--page-sao5-secondary-color);
        padding: 15px 30px;
        border: none;
        border-radius: 5px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none;
        display: inline-block;
        box-sizing: border-box;
    }

    .page-sao5__button:hover {
        background-color: var(--page-sao5-button-hover);
        transform: translateY(-2px);
    }

    .page-sao5__button--secondary {
        background-color: var(--page-sao5-accent-color);
        color: var(--page-sao5-text-light);
    }

    .page-sao5__button--secondary:hover {
        background-color: #CC0000;
    }

    /* Floating Buttons */
    .page-sao5__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .page-sao5__floating-button {
        padding: 10px 20px;
        font-size: 1em;
        font-weight: bold;
        border-radius: 25px;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-sao5__floating-button--register {
        background-color: var(--page-sao5-primary-color);
        color: var(--page-sao5-secondary-color);
    }

    .page-sao5__floating-button--register:hover {
        background-color: var(--page-sao5-button-hover);
    }

    .page-sao5__floating-button--login {
        background-color: var(--page-sao5-accent-color);
        color: var(--page-sao5-text-light);
    }

    .page-sao5__floating-button--login:hover {
        background-color: #CC0000;
    }

    /* Product Showcase */
    .page-sao5__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-sao5__product-card {
        background-color: var(--page-sao5-secondary-color);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        text-align: left;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-sao5__product-card:hover {
        transform: translateY(-5px);
    }

    .page-sao5__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-sao5__product-content {
        padding: 20px;
    }

    .page-sao5__product-title {
        font-size: 1.5em;
        color: var(--page-sao5-primary-color);
        margin-bottom: 10px;
    }

    .page-sao5__product-description {
        font-size: 0.95em;
        color: var(--page-sao5-text-light);
    }

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

    .page-sao5__promotion-card {
        background-color: var(--page-sao5-secondary-color);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        text-align: center;
        padding: 25px;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-sao5__promotion-card:hover {
        transform: translateY(-5px);
    }

    .page-sao5__promotion-icon {
        width: 200px; /* Enforce minimum size */
        height: 200px;
        margin-bottom: 15px;
        object-fit: contain;
    }

    .page-sao5__promotion-title {
        font-size: 1.6em;
        color: var(--page-sao5-primary-color);
        margin-bottom: 10px;
    }

    .page-sao5__promotion-text {
        font-size: 1em;
        color: var(--page-sao5-text-light);
        margin-bottom: 15px;
    }

    /* Why Choose Us Section */
    .page-sao5__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-sao5__feature-item {
        background-color: var(--page-sao5-secondary-color);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        text-align: left;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-sao5__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-sao5__feature-icon {
        width: 200px; /* Enforce minimum size */
        height: auto;
        margin-bottom: 15px;
        object-fit: contain;
    }

    .page-sao5__feature-title {
        font-size: 1.4em;
        color: var(--page-sao5-primary-color);
        margin-bottom: 10px;
    }

    .page-sao5__feature-description {
        font-size: 1em;
        color: var(--page-sao5-text-light);
    }

    /* Payment & Providers Section */
    .page-sao5__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjusted for logos */
        gap: 20px;
        margin-top: 40px;
        align-items: center;
        justify-items: center;
    }

    .page-sao5__logo-item {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 10px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        box-sizing: border-box;
    }

    .page-sao5__logo-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    /* FAQ Section */
    .page-sao5__faq-container {
        margin-top: 40px;
        text-align: left;
    }

    .page-sao5__faq-item {
        background-color: var(--page-sao5-secondary-color);
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-sao5__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        cursor: pointer;
        user-select: none;
        background-color: #2A2A2A;
        color: var(--page-sao5-primary-color);
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-sao5__faq-question:hover {
        background-color: #3A3A3A;
    }

    .page-sao5__faq-question h3 {
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click event */
        color: inherit;
        font-size: 1em; /* Adjust to fit parent font size */
        flex-grow: 1;
    }

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

    .page-sao5__faq-item.active .page-sao5__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar visually */
    }

    .page-sao5__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Reduced padding for collapsed state */
        color: var(--page-sao5-text-light);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-sao5__heading {
            font-size: 2em;
        }

        .page-sao5__subheading {
            font-size: 1.5em;
        }

        .page-sao5__hero-title {
            font-size: 2.5em;
        }

        .page-sao5__hero-description {
            font-size: 1em;
        }

        .page-sao5__cta-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-sao5__button {
            width: 100%;
            padding: 12px 20px;
            font-size: 1em;
        }

        .page-sao5__section {
            padding: 30px 15px;
        }

        .page-sao5__product-grid,
        .page-sao5__promotion-grid,
        .page-sao5__features-grid,
        .page-sao5__logo-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-sao5__product-card,
        .page-sao5__promotion-card,
        .page-sao5__feature-item,
        .page-sao5__logo-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-sao5__product-image {
            height: 180px;
        }

        .page-sao5__logo-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* More compact for mobile */
        }
        .page-sao5__logo-item {
            height: 70px;
            padding: 8px;
        }

        .page-sao5__faq-question {
            padding: 15px;
            font-size: 1.1em;
        }

        .page-sao5__faq-answer {
            padding: 0 15px;
        }
        .page-sao5__faq-item.active .page-sao5__faq-answer {
            padding: 15px !important;
        }

        /* Ensure all images are responsive */
        .page-sao5 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            display: block; /* Ensure it takes full width */
        }
        .page-sao5__product-image,
        .page-sao5__promotion-icon,
        .page-sao5__feature-icon,
        .page-sao5__logo-item img {
            max-width: 100% !important;
            height: auto !important;
        }
        /* Container for images to prevent overflow */
        .page-sao5__product-card,
        .page-sao5__promotion-card,
        .page-sao5__feature-item,
        .page-sao5__logo-item {
            overflow: hidden !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-sao5__floating-buttons {
            width: calc(100% - 40px);
            left: 20px;
            transform: none;
            justify-content: space-around;
            padding: 10px;
            border-radius: 10px;
        }

        .page-sao5__floating-button {
            flex: 1;
            font-size: 0.9em;
            padding: 8px 15px;
        }
    }
  