
        /* style/86.css */

/* Base Styles */
.page-86 {
    font-family: 'Arial', sans-serif;
    background-color: #000000; /* Base color black */
    color: #ffffff; /* Default text color white */
    line-height: 1.6;
    padding-bottom: 80px; /* Space for floating button */
}

.page-86__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-86__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Yellow for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-86__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-86__link-inline {
    color: #FFD700;
    text-decoration: underline;
}

/* Hero Section */
.page-86__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
    background-color: #111111;
}

.page-86__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
    object-fit: cover;
}

.page-86__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-86__main-title {
    font-size: clamp(2em, 5vw, 3.5em);
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-86__description {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-86__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-86__cta-buttons--center {
    margin-top: 50px;
}

.page-86__btn-primary,
.page-86__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-86__btn-primary {
    background-color: #FFD700;
    color: #000000;
    border: 2px solid #FFD700;
}

.page-86__btn-primary:hover {
    background-color: #e0b800;
    border-color: #e0b800;
}

.page-86__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-86__btn-secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

.page-86__btn-text-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.page-86__btn-text-link:hover {
    color: #e0b800;
}

/* Floating Login Button */
.page-86__floating-login-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.page-86__floating-login-btn a {
    background-color: #2563eb; /* Primary brand color */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.page-86__floating-login-btn a:hover {
    background-color: #1a4fbf;
}

/* Sections */
.page-86__dark-section {
    background-color: #0d0d0d;
    padding: 60px 0;
    margin-bottom: 20px;
}

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

.page-86__game-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.page-86__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-86__game-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-86__game-description {
    color: #cccccc;
    font-size: 0.95em;
    flex-grow: 1;
    margin-bottom: 15px;
}

/* Providers Section */
.page-86__provider-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-86__provider-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 150px;
    max-width: 180px;
    box-sizing: border-box;
}

.page-86__provider-logo {
    width: 100%;
    height: auto;
    max-height: 80px; /* Control display height, original image is larger */
    object-fit: contain;
    margin-bottom: 10px;
}

.page-86__provider-name {
    color: #ffffff;
    font-size: 0.9em;
    font-weight: bold;
}

/* Why Choose Section */
.page-86__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-86__feature-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

.page-86__feature-icon {
    width: 100px; /* Display size, image is larger */
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-86__feature-title {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-86__feature-description {
    color: #cccccc;
    font-size: 0.95em;
}

/* Promotions Section */
.page-86__promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-86__promo-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.page-86__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-86__promo-card .page-86__promo-title {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-86__promo-card .page-86__promo-description {
    color: #cccccc;
    font-size: 0.95em;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-86__promo-card .page-86__btn-text-link {
    margin-top: auto;
    align-self: flex-start;
    padding: 0 20px 20px;
}

/* FAQ Section */
.page-86__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-86__faq-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-86__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    background-color: #222222;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-86__faq-question:hover {
    background-color: #333333;
}

.page-86__faq-question h3 {
    margin: 0;
    color: inherit;
    font-size: 1em; /* Reset h3 font-size to match parent */
    pointer-events: none; /* Prevent h3 from blocking click event on question div */
}

.page-86__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    pointer-events: none; /* Prevent toggle from blocking click event on question div */
    transition: transform 0.3s ease;
}

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

.page-86__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #cccccc;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.page-86__faq-item.active .page-86__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to show all content */
    padding: 20px !important;
    opacity: 1;
}

.page-86__faq-answer p {
    margin-bottom: 0;
    text-align: left;
}

/* Contact CTA Section */
.page-86__contact-cta-section {
    padding: 80px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-86__hero-image {
        height: 500px;
    }
    .page-86__main-title {
        font-size: clamp(2em, 6vw, 3em);
    }
    .page-86__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-86 {
        font-size: 16px;
        line-height: 1.6;
        padding-bottom: 70px; /* Adjust for smaller floating button */
    }

    .page-86__container {
        padding: 0 15px;
    }

    .page-86__hero-section {
        padding-top: 10px !important; /* body already handles offset */
        padding-bottom: 40px;
    }

    .page-86__hero-image {
        height: 300px;
        margin-bottom: 20px;
    }

    .page-86__hero-content {
        padding: 0 15px;
    }

    .page-86__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-86__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-86__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-86__text-block {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .page-86__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    .page-86__cta-buttons--center {
        margin-top: 40px;
    }

    .page-86__btn-primary,
    .page-86__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-86__floating-login-btn {
        bottom: 15px;
        right: 15px;
    }

    .page-86__floating-login-btn a {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-86__dark-section {
        padding: 40px 0;
    }

    .page-86__game-grid,
    .page-86__feature-grid,
    .page-86__promotion-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        padding: 0 15px;
    }

    .page-86__game-card,
    .page-86__feature-card,
    .page-86__promo-card {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-86__game-image,
    .page-86__promo-image {
        height: 180px;
        margin-bottom: 15px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-86__provider-logos {
        gap: 20px;
        margin-top: 30px;
        padding: 0 15px;
    }

    .page-86__provider-item {
        min-width: unset;
        max-width: 48%; /* Allow two items per row */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-86__provider-logo {
        max-height: 60px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-86__feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-86__faq-list {
        margin-top: 30px;
        padding: 0 15px;
    }

    .page-86__faq-question {
        padding: 15px;
        font-size: 1em;
    }

    .page-86__faq-answer {
        padding: 15px !important;
    }
    
    .page-86 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-86__section,
    .page-86__card,
    .page-86__container,
    .page-86__hero-content,
    .page-86__game-grid,
    .page-86__provider-logos,
    .page-86__feature-grid,
    .page-86__promotion-cards,
    .page-86__faq-list,
    .page-86__faq-item,
    .page-86__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-86__floating-login-btn a {
        font-size: 0.8em;
        padding: 8px 15px;
    }
    .page-86__provider-item {
        max-width: 100%;
    }
}

    