
    .page-33-win-68 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-33-win-68__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .page-33-win-68__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #16213e; /* Slightly lighter dark for sections */
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-33-win-68__section-title {
        color: #e94560; /* Accent color */
        text-align: center;
        margin-bottom: 30px;
        font-size: 2.5em;
        font-weight: bold;
        text-transform: uppercase;
    }

    .page-33-win-68__text-content {
        font-size: 1.1em;
        margin-bottom: 20px;
        text-align: justify;
    }

    .page-33-win-68__hero-section {
        position: relative;
        padding: 10px 0 60px 0; /* Small top padding for decorative spacing */
        background: linear-gradient(135deg, #1a1a2e, #0f3460);
        color: #ffffff;
        text-align: center;
        overflow: hidden;
    }

    .page-33-win-68__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
    }

    .page-33-win-68__hero-title {
        font-size: 3.5em;
        margin-bottom: 15px;
        color: #e94560;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-33-win-68__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        color: #cccccc;
    }

    .page-33-win-68__hero-button-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .page-33-win-68__btn {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.2em;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .page-33-win-68__btn--primary {
        background-color: #e94560; /* Accent color */
        color: #ffffff;
        box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
    }

    .page-33-win-68__btn--primary:hover {
        background-color: #d63c55;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
    }

    .page-33-win-68__btn--secondary {
        background-color: #0f3460; /* Darker blue */
        color: #ffffff;
        border: 2px solid #e94560;
        box-shadow: 0 5px 15px rgba(15, 52, 96, 0.4);
    }

    .page-33-win-68__btn--secondary:hover {
        background-color: #1a4f8a;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(15, 52, 96, 0.6);
    }

    .page-33-win-68__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
    }

    .page-33-win-68__floating-btn {
        background-color: #e94560;
        color: #ffffff;
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-33-win-68__floating-btn:hover {
        background-color: #d63c55;
        transform: translateY(-2px);
    }

    .page-33-win-68__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-33-win-68__product-card {
        background-color: #0f3460;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        box-sizing: border-box; /* Ensure list item responsiveness */
    }

    .page-33-win-68__product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-33-win-68__product-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-33-win-68__product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .page-33-win-68__product-info {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-33-win-68__product-title {
        font-size: 1.5em;
        color: #e94560;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-33-win-68__product-description {
        font-size: 0.95em;
        color: #cccccc;
        margin-bottom: 15px;
        flex-grow: 1;
    }

    .page-33-win-68__promotion-list {
        list-style: none;
        padding: 0;
        margin-top: 30px;
    }

    .page-33-win-68__promotion-item {
        background-color: #0f3460;
        margin-bottom: 15px;
        padding: 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Required for list items */
    }

    .page-33-win-68__promotion-item:hover {
        transform: translateY(-3px);
    }

    .page-33-win-68__promotion-icon {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        border-radius: 50%;
        object-fit: cover;
    }

    .page-33-win-68__promotion-content h3 {
        color: #e94560;
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 1.4em;
    }

    .page-33-win-68__promotion-content p {
        color: #cccccc;
        font-size: 1em;
    }

    .page-33-win-68__payment-grid,
    .page-33-win-68__provider-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
        justify-items: center;
    }

    .page-33-win-68__payment-item,
    .page-33-win-68__provider-item {
        background-color: #0f3460;
        padding: 15px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        width: 100%; /* Ensure items take full width in their grid cell */
        box-sizing: border-box; /* Required for list items */
    }

    .page-33-win-68__payment-item:hover,
    .page-33-win-68__provider-item:hover {
        transform: translateY(-3px);
    }

    .page-33-win-68__payment-logo,
    .page-33-win-68__provider-logo {
        max-width: 120px;
        height: auto;
        margin-bottom: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 5px;
    }

    .page-33-win-68__faq-list {
        list-style: none;
        padding: 0;
        margin-top: 30px;
    }

    .page-33-win-68__faq-item {
        background-color: #0f3460;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        box-sizing: border-box; /* Required for list items */
    }

    .page-33-win-68__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        cursor: pointer;
        background-color: #1a1a2e;
        color: #e94560;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-33-win-68__faq-question:hover {
        background-color: #2a2a4a;
    }

    .page-33-win-68__faq-question h3 {
        margin: 0;
        color: #e94560;
        font-size: 1.2em;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-33-win-68__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-33-win-68__faq-item.active .page-33-win-68__faq-toggle {
        transform: rotate(45deg); /* + to X, or rotate for - */
    }

    .page-33-win-68__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #cccccc;
        font-size: 1em;
        background-color: #0f3460;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-33-win-68__container {
            padding: 15px;
        }

        .page-33-win-68__section {
            padding: 30px 15px;
        }

        .page-33-win-68__section-title {
            font-size: 2em;
            margin-bottom: 25px;
        }

        .page-33-win-68__hero-title {
            font-size: 2.5em;
        }

        .page-33-win-68__hero-subtitle {
            font-size: 1.2em;
        }

        .page-33-win-68__btn {
            padding: 12px 25px;
            font-size: 1.1em;
        }

        .page-33-win-68__floating-buttons {
            flex-direction: column;
            bottom: 15px;
            gap: 10px;
            width: calc(100% - 30px);
            left: 15px;
            transform: none;
        }

        .page-33-win-68__floating-btn {
            width: 100%;
            text-align: center;
        }

        .page-33-win-68__product-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-33-win-68__product-card {
            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;
        }

        .page-33-win-68__promotion-item {
            flex-direction: column;
            text-align: center;
            padding: 15px;
            width: 100% !important; /* List item responsiveness */
            max-width: 100% !important; /* List item responsiveness */
            box-sizing: border-box !important; /* List item responsiveness */
            margin-left: 0 !important; /* List item responsiveness */
            margin-right: 0 !important; /* List item responsiveness */
            word-wrap: break-word !important; /* Text wrapping */
            overflow-wrap: break-word !important; /* Text wrapping */
        }

        .page-33-win-68__promotion-icon {
            margin-bottom: 10px;
            width: 60px !important; /* Smaller icon on mobile */
            height: 60px !important; /* Smaller icon on mobile */
            margin-left: auto !important;
            margin-right: auto !important;
        }

        .page-33-win-68__payment-grid,
        .page-33-win-68__provider-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
        }

        .page-33-win-68__payment-item,
        .page-33-win-68__provider-item {
            padding: 10px;
            width: 100% !important; /* List item responsiveness */
            max-width: 100% !important; /* List item responsiveness */
            box-sizing: border-box !important; /* List item responsiveness */
            margin-left: 0 !important; /* List item responsiveness */
            margin-right: 0 !important; /* List item responsiveness */
            word-wrap: break-word !important; /* Text wrapping */
            overflow-wrap: break-word !important; /* Text wrapping */
        }

        .page-33-win-68__payment-logo,
        .page-33-win-68__provider-logo {
            max-width: 100px;
        }

        .page-33-win-68__faq-question {
            font-size: 1.1em;
            padding: 15px;
        }

        .page-33-win-68__faq-question h3 {
            font-size: 1.1em;
        }

        .page-33-win-68__faq-answer {
            padding: 15px 15px !important;
        }

        /* Ensure parent containers of lists also follow mobile width rules */
        .page-33-win-68__promotion-list,
        .page-33-win-68__payment-grid,
        .page-33-win-68__provider-grid,
        .page-33-win-68__faq-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-33-win-68__product-description,
        .page-33-win-68__product-title,
        .page-33-win-68__text-content,
        .page-33-win-68__hero-subtitle {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
    }

    /* Image responsiveness for all images */
    .page-33-win-68 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    /* Image containers responsiveness */
    .page-33-win-68__product-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
  