
    :root {
        --page-1win-apk-primary-color: #0056b3; /* Darker blue for betting theme */
        --page-1win-apk-secondary-color: #ffc107; /* Gold/yellow for highlights */
        --page-1win-apk-text-color: #333;
        --page-1win-apk-light-bg: #f8f9fa;
        --page-1win-apk-dark-bg: #212529;
        --page-1win-apk-border-color: #ddd;
        --page-1win-apk-hover-color: #004085;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--page-1win-apk-text-color);
        background-color: var(--page-1win-apk-light-bg);
        margin: 0;
        padding: 0;
    }

    .page-1win-apk {
        max-width: 1200px;
        margin: 0 auto;
        padding: var(--header-offset, 122px) 15px 20px; /* Fallback for header offset */
        box-sizing: border-box;
    }

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

    .page-1win-apk__section--alt-bg {
        background-color: var(--page-1win-apk-light-bg);
    }

    .page-1win-apk__section-title {
        font-size: 2.5em;
        color: var(--page-1win-apk-primary-color);
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }

    .page-1win-apk__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--page-1win-apk-secondary-color);
        border-radius: 2px;
    }

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

    .page-1win-apk__container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Hero Section */
    .page-1win-apk__hero-section {
        padding-top: 10px; /* Small decorative padding on top of the header offset */
        padding-bottom: 50px;
        background: linear-gradient(135deg, var(--page-1win-apk-primary-color), #007bff);
        color: #fff;
        text-align: center;
        border-radius: 8px;
        margin-bottom: 30px;
        overflow: hidden;
    }

    .page-1win-apk__hero-content {
        position: relative;
        z-index: 1;
    }

    .page-1win-apk__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-1win-apk__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        color: var(--page-1win-apk-secondary-color);
    }

    .page-1win-apk__hero-description {
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 40px;
        line-height: 1.8;
    }

    .page-1win-apk__cta-button {
        display: inline-block;
        background-color: var(--page-1win-apk-secondary-color);
        color: var(--page-1win-apk-primary-color);
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.2em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        margin: 0 10px 20px;
    }

    .page-1win-apk__cta-button:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
    }

    .page-1win-apk__hero-image-container {
        margin-top: 40px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-1win-apk__hero-image {
        max-width: 70%; /* Centered product display image */
        height: auto;
        border-radius: 15px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        display: block;
        margin: 0 auto;
    }

    /* Floating Buttons */
    .page-1win-apk__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
    }

    .page-1win-apk__floating-button {
        background-color: var(--page-1win-apk-secondary-color);
        color: var(--page-1win-apk-primary-color);
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        white-space: nowrap;
    }

    .page-1win-apk__floating-button:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
    }

    .page-1win-apk__floating-button--register {
        background-color: #28a745; /* Green for register */
        color: #fff;
    }

    .page-1win-apk__floating-button--register:hover {
        background-color: #218838;
    }

    /* Benefits Section */
    .page-1win-apk__feature-list {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
    }

    .page-1win-apk__feature-item {
        flex: 1 1 calc(33% - 30px);
        box-sizing: border-box;
        background-color: var(--page-1win-apk-light-bg);
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        min-width: 280px;
    }

    .page-1win-apk__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .page-1win-apk__feature-icon-container {
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-1win-apk__feature-icon {
        width: 120px; /* Min size 200x200 but this is an icon. Let's make it larger or use a placeholder that matches the requirement*/
        height: 120px;
        object-fit: contain;
    }

    .page-1win-apk__feature-item h3 {
        color: var(--page-1win-apk-primary-color);
        font-size: 1.4em;
        margin-bottom: 10px;
    }

    .page-1win-apk__feature-item p {
        font-size: 1em;
        color: var(--page-1win-apk-text-color);
    }

    /* Download Guide */
    .page-1win-apk__step-list {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
    }

    .page-1win-apk__step-item {
        flex: 1 1 calc(33% - 40px);
        box-sizing: border-box;
        text-align: center;
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        min-width: 280px;
    }

    .page-1win-apk__step-number {
        display: inline-block;
        background-color: var(--page-1win-apk-primary-color);
        color: #fff;
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 50%;
        font-size: 1.8em;
        font-weight: bold;
        margin-bottom: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-1win-apk__download-step-image-container {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-1win-apk__download-step-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-1win-apk__step-item h3 {
        color: var(--page-1win-apk-primary-color);
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .page-1win-apk__step-item p {
        font-size: 1em;
        color: var(--page-1win-apk-text-color);
    }

    /* Game Section */
    .page-1win-apk__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .page-1win-apk__game-card {
        background-color: var(--page-1win-apk-dark-bg);
        color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

    .page-1win-apk__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-1win-apk__game-card-image-container {
        height: 200px;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-1win-apk__game-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .page-1win-apk__game-card:hover .page-1win-apk__game-card-image {
        transform: scale(1.05);
    }

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

    .page-1win-apk__game-card h3 {
        font-size: 1.3em;
        margin-bottom: 10px;
        color: var(--page-1win-apk-secondary-color);
    }

    .page-1win-apk__game-card p {
        font-size: 0.95em;
        color: #ccc;
    }

    /* Payment Section */
    .page-1win-apk__payment-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-1win-apk__payment-item {
        flex: 0 0 calc(20% - 25px); /* 5 columns */
        box-sizing: border-box;
        background-color: var(--page-1win-apk-light-bg);
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        min-width: 120px;
    }

    .page-1win-apk__payment-item:hover {
        transform: translateY(-3px);
    }

    .page-1win-apk__payment-icon-container {
        margin-bottom: 10px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-1win-apk__payment-icon {
        max-width: 100px;
        max-height: 80px;
        object-fit: contain;
    }

    .page-1win-apk__payment-item p {
        font-weight: bold;
        color: var(--page-1win-apk-primary-color);
        margin: 0;
    }

    /* FAQ Section */
    .page-1win-apk__faq-list {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 800px;
    }

    .page-1win-apk__faq-item {
        background-color: #fff;
        border: 1px solid var(--page-1win-apk-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    }

    .page-1win-apk__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: var(--page-1win-apk-primary-color);
        color: #fff;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-1win-apk__faq-question:hover {
        background-color: var(--page-1win-apk-hover-color);
    }

    .page-1win-apk__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-1win-apk__faq-item.active .page-1win-apk__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-1win-apk__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #fefefe;
        color: var(--page-1win-apk-text-color);
        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: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 992px) {
        .page-1win-apk__hero-title {
            font-size: 2.8em;
        }
        .page-1win-apk__hero-subtitle {
            font-size: 1.3em;
        }
        .page-1win-apk__feature-item,
        .page-1win-apk__step-item {
            flex: 1 1 calc(50% - 30px); /* 2 columns */
        }
        .page-1win-apk__payment-item {
            flex: 0 0 calc(33% - 25px); /* 3 columns */
        }
    }

    @media (max-width: 768px) {
        .page-1win-apk {
            padding: var(--header-offset, 122px) 0 20px;
        }
        .page-1win-apk__hero-title {
            font-size: 2.2em;
        }
        .page-1win-apk__hero-subtitle {
            font-size: 1.1em;
        }
        .page-1win-apk__hero-description {
            font-size: 0.95em;
            padding: 0 15px;
        }
        .page-1win-apk__cta-button {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-1win-apk__hero-image {
            max-width: 90%;
        }

        .page-1win-apk__section-title {
            font-size: 2em;
            padding: 0 15px 15px;
        }

        /* Floating buttons */
        .page-1win-apk__floating-buttons {
            bottom: 10px;
            gap: 10px;
        }
        .page-1win-apk__floating-button {
            padding: 10px 20px;
            font-size: 1em;
        }

        /* List Items Mobile Responsiveness */
        .page-1win-apk__feature-list,
        .page-1win-apk__step-list,
        .page-1win-apk__payment-list,
        .page-1win-apk__game-grid {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            flex-direction: column; /* Stack items vertically for flex lists */
            gap: 20px !important;
        }

        .page-1win-apk__feature-item,
        .page-1win-apk__step-item,
        .page-1win-apk__payment-item,
        .page-1win-apk__game-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            flex: 1 1 100% !important;
        }

        .page-1win-apk__feature-icon,
        .page-1win-apk__download-step-image,
        .page-1win-apk__game-card-image,
        .page-1win-apk__payment-icon {
            max-width: 100% !important;
            height: auto !important;
        }

        .page-1win-apk__feature-icon-container,
        .page-1win-apk__download-step-image-container,
        .page-1win-apk__game-card-image-container,
        .page-1win-apk__payment-icon-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            height: auto !important; /* Allow height to adjust for images */
        }
        
        .page-1win-apk__faq-question {
            padding: 15px 20px;
        }
        .page-1win-apk__faq-question h3 {
            font-size: 1.1em;
        }
        .page-1win-apk__faq-answer {
            padding: 15px 20px;
        }
    }

    @media (max-width: 480px) {
        .page-1win-apk__hero-title {
            font-size: 1.8em;
        }
        .page-1win-apk__hero-subtitle {
            font-size: 1em;
        }
        .page-1win-apk__cta-button {
            width: calc(100% - 40px);
            margin: 0 20px 15px;
            display: block;
        }
        .page-1win-apk__floating-buttons {
            flex-direction: column;
            width: calc(100% - 40px);
            left: 20px;
            transform: translateX(0);
        }
        .page-1win-apk__floating-button {
            width: 100%;
            text-align: center;
        }
        .page-1win-apk__hero-image {
            max-width: 95%;
        }
    }
  