
    :root {
        --primary-color: #e60000; /* Red for betting site */
        --secondary-color: #ffcc00; /* Gold/Yellow for accents */
        --dark-bg: #1a1a1a; /* Dark background */
        --light-text: #ffffff; /* Light text on dark background */
        --gray-text: #cccccc; /* Lighter gray text */
        --button-hover-bg: #cc0000;
        --border-color: #333333;
        --padding-section: 60px 20px;
        --padding-section-mobile: 40px 15px;
        --header-offset: 122px; /* Default value, shared.css should define this */
    }

    /* Base styles for this specific page */
    .page-win68-apk {
        font-family: 'Arial', sans-serif;
        color: var(--light-text);
        background-color: var(--dark-bg);
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't set it */
    }

    /* General section styling */
    .page-win68-apk__section {
        padding: var(--padding-section);
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-win68-apk__section--dark {
        background-color: #222222;
    }

    .page-win68-apk__section-title {
        font-size: 2.8em;
        color: var(--secondary-color);
        margin-bottom: 25px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .page-win68-apk__section-subtitle {
        font-size: 1.2em;
        color: var(--gray-text);
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero Section */
    .page-win68-apk__hero-section {
        background-color: var(--dark-bg);
        padding: 80px 20px 40px; /* Reduced top padding as body handles header offset */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-win68-apk__hero-content {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .page-win68-apk__hero-title {
        font-size: 3.5em;
        color: var(--primary-color);
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: 900;
    }

    .page-win68-apk__hero-description {
        font-size: 1.3em;
        color: var(--light-text);
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-win68-apk__button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--light-text);
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        margin: 10px;
    }

    .page-win68-apk__button:hover {
        background-color: var(--button-hover-bg);
        transform: translateY(-2px);
    }

    .page-win68-apk__hero-image {
        width: 100%;
        max-width: 600px;
        height: auto;
        margin-top: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    /* Floating Buttons */
    .page-win68-apk__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .page-win68-apk__floating-button {
        background-color: var(--primary-color);
        color: var(--light-text);
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 1em;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        text-align: center;
        min-width: 120px;
    }

    .page-win68-apk__floating-button--login {
        background-color: var(--secondary-color);
        color: var(--dark-bg);
    }

    .page-win68-apk__floating-button:hover {
        background-color: var(--button-hover-bg);
        transform: scale(1.05);
    }

    .page-win68-apk__floating-button--login:hover {
        background-color: #e6b800; /* Darker yellow */
    }

    /* Features/Benefits Section */
    .page-win68-apk__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-win68-apk__feature-item {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-win68-apk__feature-item:hover {
        transform: translateY(-5px);
        background-color: #3a3a3a;
    }

    .page-win68-apk__feature-icon {
        width: 100%;
        max-width: 250px; /* Increased size */
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-win68-apk__feature-title {
        font-size: 1.5em;
        color: var(--secondary-color);
        margin-bottom: 15px;
    }

    .page-win68-apk__feature-description {
        color: var(--gray-text);
        font-size: 1em;
    }

    /* How to Download Section */
    .page-win68-apk__steps-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
        list-style: none;
        padding: 0;
    }

    .page-win68-apk__step-item {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 10px;
        text-align: left;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        flex: 1 1 calc(33% - 40px); /* 3 items per row */
        min-width: 280px;
        max-width: 380px;
        box-sizing: border-box;
        position: relative;
    }

    .page-win68-apk__step-number {
        position: absolute;
        top: 15px;
        left: 15px;
        background-color: var(--primary-color);
        color: var(--light-text);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3em;
        font-weight: bold;
    }

    .page-win68-apk__step-title {
        font-size: 1.4em;
        color: var(--secondary-color);
        margin-bottom: 15px;
        margin-top: 10px; /* Adjust for number */
        padding-left: 50px;
    }

    .page-win68-apk__step-description {
        color: var(--gray-text);
        font-size: 1em;
        padding-left: 50px;
    }

    /* Games Section */
    .page-win68-apk__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-win68-apk__game-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-win68-apk__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-win68-apk__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%; /* Ensure responsiveness */
        display: block;
    }

    .page-win68-apk__game-content {
        padding: 20px;
    }

    .page-win68-apk__game-title {
        font-size: 1.3em;
        color: var(--light-text);
        margin-bottom: 10px;
    }

    .page-win68-apk__game-description {
        color: var(--gray-text);
        font-size: 0.95em;
    }

    /* Promotions Section */
    .page-win68-apk__promotion-card {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 20px;
        text-align: left;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-win68-apk__promotion-title {
        font-size: 1.8em;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-win68-apk__promotion-description {
        color: var(--gray-text);
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    /* Payment Methods & Providers Section */
    .page-win68-apk__logos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
        align-items: center;
        justify-content: center;
    }

    .page-win68-apk__logo-item {
        background-color: #333333;
        padding: 15px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 80px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .page-win68-apk__logo-item:hover {
        transform: scale(1.05);
    }

    .page-win68-apk__logo-image {
        max-width: 100%;
        max-height: 60px;
        width: auto;
        height: auto;
        display: block; /* Ensure it behaves as a block for max-width/height */
    }

    /* FAQ Section */
    .page-win68-apk__faq-container {
        max-width: 900px;
        margin: 40px auto 0;
        text-align: left;
    }

    .page-win68-apk__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .page-win68-apk__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #333333;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-win68-apk__faq-question:hover {
        background-color: #444444;
    }

    .page-win68-apk__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--light-text);
        pointer-events: none; /* Prevent h3 from blocking click */
        flex-grow: 1;
    }

    .page-win68-apk__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--primary-color);
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle from blocking click */
        transition: transform 0.3s ease;
    }

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

    .page-win68-apk__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #2a2a2a;
        color: var(--gray-text);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

    .page-win68-apk__faq-answer p {
        margin: 0;
        padding-bottom: 10px;
    }
    .page-win68-apk__faq-answer p:last-child {
        padding-bottom: 0;
    }

    /* Call to Action Section */
    .page-win68-apk__cta-section {
        background-color: var(--primary-color);
        padding: var(--padding-section);
        text-align: center;
    }

    .page-win68-apk__cta-title {
        font-size: 2.5em;
        color: var(--light-text);
        margin-bottom: 20px;
    }

    .page-win68-apk__cta-description {
        font-size: 1.2em;
        color: var(--light-text);
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-win68-apk__hero-title {
            font-size: 3em;
        }
        .page-win68-apk__section-title {
            font-size: 2.5em;
        }
        .page-win68-apk__step-item {
            flex: 1 1 calc(50% - 30px); /* 2 items per row */
        }
    }

    @media (max-width: 768px) {
        .page-win68-apk__hero-section {
            padding-top: 60px; /* Adjust for smaller screens */
        }
        .page-win68-apk__hero-title {
            font-size: 2.5em;
        }
        .page-win68-apk__hero-description {
            font-size: 1.1em;
        }
        .page-win68-apk__section {
            padding: var(--padding-section-mobile);
        }
        .page-win68-apk__section-title {
            font-size: 2em;
        }
        .page-win68-apk__section-subtitle {
            font-size: 1em;
        }
        .page-win68-apk__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-win68-apk__floating-buttons {
            flex-direction: row;
            bottom: 10px;
            right: 10px;
            left: 10px;
            justify-content: space-around;
            gap: 10px;
        }
        .page-win68-apk__floating-button {
            flex: 1;
            min-width: unset;
        }
        .page-win68-apk__features-grid,
        .page-win68-apk__games-grid,
        .page-win68-apk__logos-grid {
            grid-template-columns: 1fr; /* Single column */
        }
        .page-win68-apk__step-item {
            flex: 1 1 100%; /* Single item per row */
            max-width: 100%;
            width: 100% !important; /* Force width for list items */
            box-sizing: border-box !important; /* Ensure padding is included */
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px; /* Adjust padding */
        }
        .page-win68-apk__steps-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-win68-apk__step-title,
        .page-win68-apk__step-description {
            padding-left: 0; /* Remove padding for number in mobile */
            text-align: center;
        }
        .page-win68-apk__step-number {
            position: static;
            margin: 0 auto 15px;
        }

        .page-win68-apk__game-image {
            height: 180px;
        }
        .page-win68-apk__promotion-title {
            font-size: 1.5em;
        }
        .page-win68-apk__promotion-description {
            font-size: 1em;
        }
        .page-win68-apk__faq-question {
            padding: 15px 20px;
        }
        .page-win68-apk__faq-question h3 {
            font-size: 1.1em;
        }
        .page-win68-apk__faq-answer {
            padding: 0 20px;
        }
        .page-win68-apk__faq-item.active .page-win68-apk__faq-answer {
            padding: 15px 20px !important;
        }
        .page-win68-apk__cta-title {
            font-size: 2em;
        }
        .page-win68-apk__cta-description {
            font-size: 1em;
        }

        /* Ensure all list items break words */
        .page-win68-apk__features-grid > div,
        .page-win68-apk__steps-list > li,
        .page-win68-apk__games-grid > div,
        .page-win68-apk__logos-grid > div,
        .page-win68-apk__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-win68-apk__game-image,
        .page-win68-apk__feature-icon,
        .page-win68-apk__logo-image,
        .page-win68-apk__hero-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-win68-apk__hero-image-container,
        .page-win68-apk__feature-item,
        .page-win68-apk__game-card,
        .page-win68-apk__logo-item {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  