
    :root {
        --page-primary-color: #4A00B0;
        --page-secondary-color: #FFD700;
        --page-text-color: #ffffff;
        --page-background-dark: #1a0033;
        --page-background-light: #2a006a;
        --page-accent-color: #00e676;
        --page-border-color: rgba(255, 255, 255, 0.1);
    }

    .page-67wwin {
        font-family: 'Arial', sans-serif;
        color: var(--page-text-color);
        background-color: var(--page-background-dark);
        line-height: 1.6;
        padding-bottom: 50px; /* Space for potential footer */
    }

    .page-67wwin__hero-section {
        position: relative;
        width: 100%;
        height: 60vh;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding-top: 10px; /* Small decorative top padding, assuming body has offset */
        background: linear-gradient(135deg, var(--page-background-dark) 0%, var(--page-background-light) 100%);
    }

    .page-67wwin__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 0.4;
    }

    .page-67wwin__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-67wwin__hero-title {
        font-size: 2.8em;
        color: var(--page-secondary-color);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-67wwin__hero-subtitle {
        font-size: 1.3em;
        color: var(--page-text-color);
        margin-bottom: 30px;
    }

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

    .page-67wwin__cta-button {
        background-color: var(--page-primary-color);
        color: var(--page-text-color);
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-67wwin__cta-button:hover {
        background-color: #5d00d8;
        transform: translateY(-3px);
    }

    .page-67wwin__section {
        padding: 60px 20px;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-67wwin__section-title {
        font-size: 2.2em;
        color: var(--page-secondary-color);
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

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

    .page-67wwin__text-content {
        font-size: 1.1em;
        color: #e0e0e0;
        max-width: 800px;
        margin: 0 auto 40px auto;
    }

    .page-67wwin__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-67wwin__game-card {
        background-color: var(--page-background-light);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
    }

    .page-67wwin__game-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

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

    .page-67wwin__game-card-content {
        padding: 25px;
    }

    .page-67wwin__game-card-title {
        font-size: 1.4em;
        color: var(--page-secondary-color);
        margin-bottom: 15px;
    }

    .page-67wwin__game-card-description {
        font-size: 0.95em;
        color: #c0c0c0;
    }

    .page-67wwin__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-67wwin__promo-card {
        background-color: var(--page-background-light);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
    }

    .page-67wwin__promo-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-67wwin__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .page-67wwin__promo-content {
        padding: 25px;
    }

    .page-67wwin__promo-title {
        font-size: 1.5em;
        color: var(--page-secondary-color);
        margin-bottom: 10px;
    }

    .page-67wwin__promo-description {
        font-size: 0.95em;
        color: #c0c0c0;
        margin-bottom: 20px;
    }

    .page-67wwin__promo-link {
        display: inline-block;
        background-color: var(--page-accent-color);
        color: var(--page-background-dark);
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-67wwin__promo-link:hover {
        background-color: #00b35e;
    }

    .page-67wwin__features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-67wwin__feature-item {
        background-color: var(--page-background-light);
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .page-67wwin__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .page-67wwin__feature-title {
        font-size: 1.3em;
        color: var(--page-secondary-color);
        margin-bottom: 10px;
    }

    .page-67wwin__feature-description {
        font-size: 0.95em;
        color: #c0c0c0;
    }

    .page-67wwin__faq-list {
        max-width: 900px;
        margin: 30px auto;
        background-color: var(--page-background-light);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-67wwin__faq-item {
        background-color: #3b008d;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-67wwin__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: var(--page-primary-color);
        color: var(--page-text-color);
        font-weight: bold;
        font-size: 1.1em;
        border-bottom: 1px solid var(--page-border-color);
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-67wwin__faq-question:hover {
        background-color: #5d00d8;
    }

    .page-67wwin__faq-question-text {
        margin: 0;
        font-size: 1em;
        color: var(--page-text-color);
        pointer-events: none;
    }

    .page-67wwin__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    .page-67wwin__faq-item.active .page-67wwin__faq-toggle {
        transform: rotate(45deg);
    }

    .page-67wwin__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        background-color: #3b008d;
        color: #e0e0e0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-67wwin__faq-item.active .page-67wwin__faq-answer {
        max-height: 2000px !important;
        padding: 20px 20px !important;
        opacity: 1;
    }

    .page-67wwin__faq-answer p {
        margin: 0;
        line-height: 1.6;
    }

    .page-67wwin__partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-67wwin__partner-item {
        background-color: var(--page-background-light);
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .page-67wwin__partner-logo {
        max-width: 150px;
        height: auto;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .page-67wwin__partner-name {
        font-size: 1.1em;
        color: var(--page-secondary-color);
        font-weight: bold;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .page-67wwin__hero-title {
            font-size: 2.5em;
        }
        .page-67wwin__hero-subtitle {
            font-size: 1.2em;
        }
        .page-67wwin__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-67wwin__hero-section {
            height: 50vh;
            min-height: 350px;
        }
        .page-67wwin__hero-title {
            font-size: 2em;
        }
        .page-67wwin__hero-subtitle {
            font-size: 1em;
        }
        .page-67wwin__cta-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-67wwin__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-67wwin__section {
            padding: 40px 15px;
        }
        .page-67wwin__section-title {
            font-size: 1.8em;
        }
        .page-67wwin__text-content {
            font-size: 1em;
        }
        .page-67wwin__game-categories,
        .page-67wwin__promo-grid,
        .page-67wwin__features-list,
        .page-67wwin__partners-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-67wwin__game-card-image,
        .page-67wwin__promo-image {
            height: 180px;
        }
        .page-67wwin__game-card-title,
        .page-67wwin__promo-title {
            font-size: 1.2em;
        }
        .page-67wwin__feature-icon {
            width: 80px;
            height: 80px;
        }
        .page-67wwin__faq-list {
            padding: 15px;
            margin: 20px auto;
        }
        .page-67wwin__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
        .page-67wwin__faq-answer {
            padding: 0 15px;
        }
        .page-67wwin__faq-item.active .page-67wwin__faq-answer {
            padding: 15px 15px !important;
        }
        /* Ensure all list items and images are responsive */
        .page-67wwin__game-card, .page-67wwin__promo-card, .page-67wwin__feature-item, .page-67wwin__partner-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-67wwin__game-card-image, .page-67wwin__promo-image, .page-67wwin__feature-icon, .page-67wwin__partner-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-67wwin__hero-title {
            font-size: 1.8em;
        }
        .page-67wwin__hero-subtitle {
            font-size: 0.9em;
        }
        .page-67wwin__section-title {
            font-size: 1.6em;
        }
    }
  