
    /* CSS styles for page-678win-apk */
    :root {
        --page-678win-apk__primary-color: #e44d26; /* A vibrant red/orange for casino theme */
        --page-678win-apk__secondary-color: #ffb74d; /* A complementary gold/yellow */
        --page-678win-apk__dark-bg: #1a1a1a;
        --page-678win-apk__light-text: #ffffff;
        --page-678win-apk__gray-text: #cccccc;
        --page-678win-apk__border-color: #333333;
        --page-678win-apk__button-hover: #ff7043;
    }

    .page-678win-apk {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--page-678win-apk__light-text);
        background-color: var(--page-678win-apk__dark-bg);
        line-height: 1.6;
    }

    .page-678win-apk__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-678win-apk__section {
        padding: 40px 20px;
        margin-bottom: 30px;
        background-color: #222222;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-678win-apk__section--alt {
        background-color: #2a2a2a;
    }

    .page-678win-apk__hero-section {
        position: relative;
        overflow: hidden;
        text-align: center;
        padding: 10px 20px 60px; /* Small top padding for decoration, body handles main offset */
        background: linear-gradient(135deg, #000000, #333333);
        border-radius: 0 0 15px 15px;
    }

    .page-678win-apk__hero-background-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .page-678win-apk__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-678win-apk__hero-title {
        font-size: 3.2em;
        color: var(--page-678win-apk__secondary-color);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-678win-apk__hero-subtitle {
        font-size: 1.5em;
        color: var(--page-678win-apk__light-text);
        margin-bottom: 30px;
        font-weight: 300;
    }

    .page-678win-apk__button {
        display: inline-block;
        padding: 15px 30px;
        background-color: var(--page-678win-apk__primary-color);
        color: var(--page-678win-apk__light-text);
        border: none;
        border-radius: 50px;
        font-size: 1.2em;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-678win-apk__button:hover {
        background-color: var(--page-678win-apk__button-hover);
        transform: translateY(-2px);
    }

    .page-678win-apk__heading {
        font-size: 2.5em;
        color: var(--page-678win-apk__secondary-color);
        text-align: center;
        margin-bottom: 40px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-678win-apk__sub-heading {
        font-size: 1.8em;
        color: var(--page-678win-apk__primary-color);
        margin-bottom: 20px;
        text-align: left;
    }

    .page-678win-apk__text-content {
        font-size: 1.1em;
        color: var(--page-678win-apk__gray-text);
        margin-bottom: 20px;
    }

    .page-678win-apk__text-content--center {
        text-align: center;
    }

    .page-678win-apk__image-wrapper {
        text-align: center;
        margin: 30px 0;
    }

    .page-678win-apk__image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        display: block; /* Ensures centering with margin auto */
        margin: 0 auto; /* Centering */
    }

    .page-678win-apk__list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .page-678win-apk__list-item {
        background-color: #333333;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-678win-apk__list-item:hover {
        transform: translateY(-5px);
    }

    .page-678win-apk__list-item-title {
        color: var(--page-678win-apk__secondary-color);
        font-size: 1.4em;
        margin-bottom: 10px;
    }

    .page-678win-apk__list-item-text {
        color: var(--page-678win-apk__gray-text);
        font-size: 1em;
    }

    .page-678win-apk__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-678win-apk__game-card {
        background-color: #333333;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Ensure proper sizing */
    }

    .page-678win-apk__game-card:hover {
        transform: translateY(-5px);
    }

    .page-678win-apk__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-678win-apk__game-card-content {
        padding: 20px;
    }

    .page-678win-apk__game-card-title {
        font-size: 1.3em;
        color: var(--page-678win-apk__primary-color);
        margin-bottom: 10px;
    }

    .page-678win-apk__game-card-description {
        font-size: 0.95em;
        color: var(--page-678win-apk__gray-text);
    }

    /* FAQ Section Styles */
    .page-678win-apk__faq-section {
        margin-top: 50px;
    }

    .page-678win-apk__faq-item {
        background-color: #333333;
        border: 1px solid var(--page-678win-apk__border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-678win-apk__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #3d3d3d;
        color: var(--page-678win-apk__light-text);
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-678win-apk__faq-question h3 {
        margin: 0;
        color: inherit;
        font-size: 1em; /* Adjust to match parent font size */
        pointer-events: none; /* Crucial for FAQ click functionality */
    }

    .page-678win-apk__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-678win-apk__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        pointer-events: none; /* Crucial for FAQ click functionality */
        transition: transform 0.3s ease;
    }

    .page-678win-apk__faq-item.active .page-678win-apk__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
    }
    
    .page-678win-apk__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        color: var(--page-678win-apk__gray-text);
        background-color: #2a2a2a;
        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: 1.05em;
    }

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

    /* Floating buttons for Register/Login */
    .page-678win-apk__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-678win-apk__floating-button {
        display: block;
        padding: 12px 20px;
        background-color: var(--page-678win-apk__primary-color);
        color: var(--page-678win-apk__light-text);
        border: none;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-678win-apk__floating-button--login {
        background-color: var(--page-678win-apk__secondary-color);
        color: var(--page-678win-apk__dark-bg);
    }

    .page-678win-apk__floating-button:hover {
        background-color: var(--page-678win-apk__button-hover);
        transform: translateY(-2px);
    }

    .page-678win-apk__floating-button--login:hover {
        background-color: #ffd54f; /* Lighter gold on hover */
    }


    /* Responsive Design */
    @media (max-width: 768px) {
        .page-678win-apk__container {
            padding: 15px;
        }

        .page-678win-apk__hero-title {
            font-size: 2.2em;
        }

        .page-678win-apk__hero-subtitle {
            font-size: 1.2em;
        }

        .page-678win-apk__heading {
            font-size: 2em;
            margin-bottom: 30px;
        }

        .page-678win-apk__sub-heading {
            font-size: 1.5em;
        }

        .page-678win-apk__button {
            padding: 12px 25px;
            font-size: 1.1em;
        }

        /* List item responsive styles */
        .page-678win-apk__list {
            grid-template-columns: 1fr; /* Single column for lists */
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important; /* Remove container padding */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-678win-apk__list-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 20px !important; /* Adjust padding for mobile */
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        
        /* Game grid responsive styles */
        .page-678win-apk__game-grid {
            grid-template-columns: 1fr; /* Single column for game cards */
            gap: 20px;
        }

        .page-678win-apk__game-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-678win-apk__game-card-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        /* FAQ responsive styles */
        .page-678win-apk__faq-question {
            font-size: 1.1em;
            padding: 15px 20px;
        }

        .page-678win-apk__faq-answer {
            padding: 0 20px; /* Adjust padding for mobile */
        }
        
        .page-678win-apk__faq-item.active .page-678win-apk__faq-answer {
            padding: 15px 20px !important; /* Adjust padding for mobile */
        }

        /* Floating buttons responsive */
        .page-678win-apk__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }

        .page-678win-apk__floating-button {
            padding: 10px 18px;
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-678win-apk__hero-title {
            font-size: 1.8em;
        }
        .page-678win-apk__hero-subtitle {
            font-size: 1em;
        }
        .page-678win-apk__heading {
            font-size: 1.8em;
        }
    }
  