
    /* General styles for the page */
.page-88xx-win {
    font-family: 'Arial', sans-serif;
    background-color: #0d0d0d; /* Dark background for betting site */
    color: #f0f0f0;
    line-height: 1.6;
    padding-top: 10px; /* Default small padding, assuming body has header offset */
}

.page-88xx-win__section-title {
    font-size: 2.5em;
    color: #ffcc00; /* Accent color for titles */
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
    font-weight: bold;
    line-height: 1.2;
}

.page-88xx-win__brand-highlight {
    color: #fff;
}

.page-88xx-win__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    color: #ccc;
}

.page-88xx-win__button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
    text-align: center;
}

.page-88xx-win__button--primary {
    background-color: #ffcc00;
    color: #333;
}

.page-88xx-win__button--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-88xx-win__button--secondary {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.page-88xx-win__button--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-88xx-win__button--small {
    padding: 8px 20px;
    font-size: 0.9em;
    background-color: #444;
    color: #fff;
    border-radius: 4px;
}

.page-88xx-win__button--small:hover {
    background-color: #555;
    transform: translateY(-1px);
}

.page-88xx-win__button-wrapper {
    text-align: center;
    margin-top: 20px;
}

/* Hero Section */
.page-88xx-win__hero-section {
    position: relative;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px; /* Ensure hero section has a decent height */
    background-color: #1a1a1a;
    overflow: hidden; /* To contain the image */
}

.page-88xx-win__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Make it a background effect */
    z-index: 1;
    max-width: 100% !important; /* Mobile responsive */
    box-sizing: border-box !important;
}

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

.page-88xx-win__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-88xx-win__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ccc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-88xx-win__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Products Section */
.page-88xx-win__products-section {
    padding: 60px 20px;
    background-color: #0d0d0d;
}

.page-88xx-win__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-88xx-win__product-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-88xx-win__product-card:hover {
    transform: translateY(-5px);
}

.page-88xx-win__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    max-width: 100% !important; /* Mobile responsive */
    box-sizing: border-box !important;
}

.page-88xx-win__product-title {
    font-size: 1.5em;
    color: #ffcc00;
    margin: 20px 15px 10px 15px;
}

.page-88xx-win__product-text {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 15px 20px 15px;
}

/* Promotions & News Section */
.page-88xx-win__promotions-news-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
    background-color: #1a1a1a;
    max-width: 1200px;
    margin: 0 auto;
}

.page-88xx-win__promotions-wrapper,
.page-88xx-win__news-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-88xx-win__promotions-wrapper .page-88xx-win__section-title,
.page-88xx-win__news-wrapper .page-88xx-win__section-title {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 30px;
    text-align: left;
}

.page-88xx-win__promotions-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column for promotions */
    gap: 20px;
}

.page-88xx-win__promotion-card {
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.page-88xx-win__promotion-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    max-width: 100% !important; /* Mobile responsive */
    box-sizing: border-box !important;
}

.page-88xx-win__promotion-title {
    font-size: 1.3em;
    color: #ffcc00;
    margin: 15px 15px 5px 15px;
}

.page-88xx-win__promotion-description {
    font-size: 0.9em;
    color: #ccc;
    padding: 0 15px 15px 15px;
    flex-grow: 1; /* Push button to bottom */
}

.page-88xx-win__news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-88xx-win__news-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-88xx-win__news-title {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 5px;
}

.page-88xx-win__news-date {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 10px;
}

.page-88xx-win__news-excerpt {
    font-size: 0.9em;
    color: #ccc;
}


/* About Section */
.page-88xx-win__about-section {
    padding: 60px 20px;
    background-color: #0d0d0d;
    text-align: center;
}

.page-88xx-win__about-text {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    color: #ccc;
}

/* Info Section (Providers, Payments, Social) */
.page-88xx-win__info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 60px 20px;
    background-color: #1a1a1a;
    max-width: 1200px;
    margin: 0 auto;
}

.page-88xx-win__info-block {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-88xx-win__info-title {
    font-size: 1.4em;
    color: #ffcc00;
    margin-bottom: 20px;
    text-align: center;
}

.page-88xx-win__provider-list,
.page-88xx-win__payment-list,
.page-88xx-win__social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-88xx-win__provider-item,
.page-88xx-win__payment-item,
.page-88xx-win__social-item {
    padding: 10px 0;
    border-bottom: 1px dashed #333;
    color: #ccc;
    font-size: 1em;
    text-align: center;
    box-sizing: border-box; /* Ensure padding/border included in width */
    word-wrap: break-word; /* Ensure long words wrap */
    overflow-wrap: break-word;
    word-break: break-word;
}

.page-88xx-win__provider-item:last-child,
.page-88xx-win__payment-item:last-child,
.page-88xx-win__social-item:last-child {
    border-bottom: none;
}

/* FAQ Section */
.page-88xx-win__faq-section {
    padding: 40px 20px;
    background-color: #0d0d0d; /* Darker background */
    color: #f0f0f0;
    text-align: center;
}

.page-88xx-win__faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-88xx-win__faq-item {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.page-88xx-win__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #2a2a2a;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-88xx-win__faq-question:hover {
    background-color: #333;
}

.page-88xx-win__faq-q-text {
    margin: 0;
    font-size: 1.1em;
    color: #f0f0f0;
    pointer-events: none; /* Prevent text from blocking click event */
}

.page-88xx-win__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffcc00; /* Accent color */
    pointer-events: none; /* Prevent icon from blocking click event */
    transition: transform 0.3s ease;
}

.page-88xx-win__faq-item.active .page-88xx-win__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
}

.page-88xx-win__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: #ccc;
    background-color: #1a1a1a;
}

.page-88xx-win__faq-item.active .page-88xx-win__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 20px !important; /* Active padding */
    opacity: 1;
}

.page-88xx-win__faq-a-text {
    margin: 0;
    line-height: 1.6;
}

/* Floating Register/Login Buttons */
.page-88xx-win__floating-buttons-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-88xx-win__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, background-color 0.2s ease;
    min-width: 120px;
    text-align: center;
}

.page-88xx-win__floating-button--register {
    background-color: #ffcc00; /* Gold/Yellow */
    color: #333;
}

.page-88xx-win__floating-button--register:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-88xx-win__floating-button--login {
    background-color: #007bff; /* Blue */
}

.page-88xx-win__floating-button--login:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-88xx-win__hero-title {
        font-size: 3em;
    }
    .page-88xx-win__hero-description {
        font-size: 1.2em;
    }
    .page-88xx-win__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-88xx-win__hero-section {
        padding: 40px 15px;
        min-height: 400px;
    }
    .page-88xx-win__hero-title {
        font-size: 2.2em;
    }
    .page-88xx-win__hero-description {
        font-size: 1em;
    }
    .page-88xx-win__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-88xx-win__button {
        width: 100%;
    }

    .page-88xx-win__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
        margin-top: 30px;
    }
    .page-88xx-win__section-description,
    .page-88xx-win__about-text {
        font-size: 0.95em;
        padding: 0 10px;
    }

    .page-88xx-win__products-section,
    .page-88xx-win__promotions-news-section,
    .page-88xx-win__about-section,
    .page-88xx-win__info-section,
    .page-88xx-win__faq-section {
        padding: 30px 15px;
    }

    .page-88xx-win__products-grid {
        grid-template-columns: 1fr;
    }

    .page-88xx-win__promotions-news-section {
        flex-direction: column;
    }

    .page-88xx-win__promotions-wrapper .page-88xx-win__section-title,
    .page-88xx-win__news-wrapper .page-88xx-win__section-title {
        text-align: center;
        font-size: 1.6em;
    }

    .page-88xx-win__info-block {
        padding: 20px;
    }

    .page-88xx-win__info-title {
        font-size: 1.2em;
    }

    /* List item specific mobile styles */
    .page-88xx-win__provider-list,
    .page-88xx-win__payment-list,
    .page-88xx-win__social-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-88xx-win__provider-item,
    .page-88xx-win__payment-item,
    .page-88xx-win__social-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    /* Image responsive styles */
    .page-88xx-win__hero-image,
    .page-88xx-win__product-image,
    .page-88xx-win__promotion-image {
        max-width: 100% !important;
        height: auto !important; /* Allow height to adjust */
        box-sizing: border-box !important;
    }

    /* Ensure image containers are also responsive */
    .page-88xx-win__product-card,
    .page-88xx-win__promotion-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* FAQ Mobile */
    .page-88xx-win__faq-section {
        padding: 20px 10px;
    }

    .page-88xx-win__faq-question {
        padding: 12px 15px;
    }

    .page-88xx-win__faq-q-text {
        font-size: 1em;
    }

    .page-88xx-win__faq-toggle {
        font-size: 1.2em;
    }

    .page-88xx-win__faq-answer {
        padding: 0 15px;
    }

    .page-88xx-win__faq-item.active .page-88xx-win__faq-answer {
        padding: 15px 15px !important;
    }

    /* Floating Buttons Mobile */
    .page-88xx-win__floating-buttons-wrapper {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Arrange horizontally on small screens */
        width: calc(100% - 30px);
        justify-content: space-around;
    }

    .page-88xx-win__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
    }
}
  