
    /* General styles for the page */
    .page-66b-casino {
        font-family: 'Arial', sans-serif;
        color: #cccccc; /* Light grey text for dark background */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small padding for hero/first section, assuming body already handles header offset */
    }

    .page-66b-casino__section-title {
        color: #ffffff;
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
        font-weight: bold;
    }

    .page-66b-casino__section-description,
    .page-66b-casino__cta-description {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        font-size: 1.1rem;
        color: #aaaaaa;
    }

    /* Hero Section */
    .page-66b-casino__hero-section {
        position: relative;
        width: 100%;
        height: 600px; /* Adjust height for visual impact */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        margin-bottom: 50px;
    }

    .page-66b-casino__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        filter: brightness(0.4); /* Darken image for text readability */
        max-width: 100%; /* Responsive image */
        height: auto; /* Maintain aspect ratio */
    }

    .page-66b-casino__hero-content {
        position: relative;
        z-index: 2;
        color: #ffffff;
        max-width: 900px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
        border-radius: 10px;
    }

    .page-66b-casino__hero-title {
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #FFD700; /* Gold accent */
    }

    .page-66b-casino__hero-description {
        font-size: 1.3rem;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .page-66b-casino__buttons-container {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .page-66b-casino__button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1rem;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-66b-casino__button--primary {
        background-color: #4CAF50; /* Green */
        color: #ffffff;
        border: 2px solid #4CAF50;
    }

    .page-66b-casino__button--primary:hover {
        background-color: #45a049;
        transform: translateY(-2px);
    }

    .page-66b-casino__button--secondary {
        background-color: transparent;
        color: #FFD700; /* Gold */
        border: 2px solid #FFD700;
    }

    .page-66b-casino__button--secondary:hover {
        background-color: #FFD700;
        color: #1a1a1a;
        transform: translateY(-2px);
    }

    .page-66b-casino__button--cta {
        background-color: #FFD700; /* Gold for CTA */
        color: #1a1a1a;
        border: 2px solid #FFD700;
        margin-top: 30px;
        font-size: 1.2rem;
        padding: 18px 35px;
    }

    .page-66b-casino__button--cta:hover {
        background-color: #e6c200;
        transform: translateY(-2px);
    }

    /* Games and Promotions Grids */
    .page-66b-casino__games-section,
    .page-66b-casino__promotions-section,
    .page-66b-casino__features-section,
    .page-66b-casino__providers-section,
    .page-66b-casino__faq-section,
    .page-66b-casino__cta-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-66b-casino__games-grid,
    .page-66b-casino__promotions-grid,
    .page-66b-casino__features-list,
    .page-66b-casino__providers-grid {
        display: grid;
        gap: 30px;
        justify-content: center;
    }

    .page-66b-casino__games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page-66b-casino__promotions-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .page-66b-casino__features-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-66b-casino__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        align-items: center;
    }

    .page-66b-casino__game-card,
    .page-66b-casino__promotion-card,
    .page-66b-casino__feature-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding-bottom: 20px;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-66b-casino__game-card:hover,
    .page-66b-casino__promotion-card:hover,
    .page-66b-casino__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-66b-casino__game-image,
    .page-66b-casino__promotion-image,
    .page-66b-casino__feature-icon {
        width: 100%;
        height: 200px; /* Consistent height for images */
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%; /* Responsive image */
        height: auto; /* Maintain aspect ratio */
    }

    .page-66b-casino__feature-icon {
        width: 120px; /* Smaller for icons */
        height: 120px;
        object-fit: contain; /* Contain for icons */
        border-radius: 50%;
        background-color: #3a3a3a;
        padding: 15px;
        margin: 20px auto 15px auto;
    }

    .page-66b-casino__game-title,
    .page-66b-casino__promotion-title,
    .page-66b-casino__feature-text {
        color: #FFD700; /* Gold */
        font-size: 1.5rem;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-66b-casino__game-description,
    .page-66b-casino__promotion-description,
    .page-66b-casino__feature-item p {
        font-size: 1rem;
        color: #b0b0b0;
        padding: 0 15px;
    }

    .page-66b-casino__provider-logo-link {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #2a2a2a;
        border-radius: 8px;
        padding: 15px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-66b-casino__provider-logo-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-66b-casino__provider-logo {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        filter: grayscale(80%) brightness(150%); /* Make logos stand out on dark background */
        transition: filter 0.3s ease;
    }

    .page-66b-casino__provider-logo-link:hover .page-66b-casino__provider-logo {
        filter: grayscale(0%) brightness(100%); /* Full color on hover */
    }

    /* FAQ Section */
    .page-66b-casino__faq-list {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-66b-casino__faq-item {
        background-color: #2a2a2a;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-66b-casino__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #333333;
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-66b-casino__faq-question:hover {
        background-color: #444444;
    }

    .page-66b-casino__faq-question h3 {
        margin: 0;
        font-size: 1.2rem;
        color: #FFD700; /* Gold for question text */
        pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-66b-casino__faq-toggle {
        font-size: 1.8rem;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
        color: #ffffff;
    }

    .page-66b-casino__faq-item.active .page-66b-casino__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' */
    }

    .page-66b-casino__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        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;
    }

    .page-66b-casino__faq-item.active .page-66b-casino__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-66b-casino__faq-answer p {
        margin: 0;
        font-size: 1rem;
        word-wrap: break-word; /* Ensure text wraps */
        overflow-wrap: break-word; /* Ensure text wraps */
    }

    /* Call to Action Section */
    .page-66b-casino__cta-section {
        text-align: center;
        padding-bottom: 80px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-66b-casino__hero-title {
            font-size: 3rem;
        }
        .page-66b-casino__hero-description {
            font-size: 1.2rem;
        }
        .page-66b-casino__section-title {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 768px) {
        .page-66b-casino__hero-section {
            height: 500px;
        }
        .page-66b-casino__hero-title {
            font-size: 2.5rem;
        }
        .page-66b-casino__hero-description {
            font-size: 1rem;
        }
        .page-66b-casino__buttons-container {
            flex-direction: column;
            gap: 15px;
        }
        .page-66b-casino__button {
            width: 80%;
            margin: 0 auto;
            padding: 12px 20px;
            font-size: 1rem;
        }
        .page-66b-casino__section-title {
            font-size: 2rem;
            padding-top: 30px;
        }
        .page-66b-casino__section-description,
        .page-66b-casino__cta-description {
            font-size: 0.95rem;
            margin-bottom: 30px;
        }
        .page-66b-casino__games-section,
        .page-66b-casino__promotions-section,
        .page-66b-casino__features-section,
        .page-66b-casino__providers-section,
        .page-66b-casino__faq-section,
        .page-66b-casino__cta-section {
            padding: 40px 15px;
        }

        /* Responsive for list items */
        .page-66b-casino__game-card,
        .page-66b-casino__promotion-card,
        .page-66b-casino__feature-item,
        .page-66b-casino__provider-logo-link,
        .page-66b-casino__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-66b-casino__games-grid,
        .page-66b-casino__promotions-grid,
        .page-66b-casino__features-list,
        .page-66b-casino__providers-grid,
        .page-66b-casino__faq-list {
            grid-template-columns: 1fr; /* Single column layout */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-66b-casino__faq-question {
            padding: 15px 20px;
            font-size: 1.1rem;
        }
        .page-66b-casino__faq-question h3 {
            font-size: 1.1rem;
        }
        .page-66b-casino__faq-toggle {
            font-size: 1.6rem;
        }
        .page-66b-casino__faq-answer {
            padding: 15px 20px;
        }
        .page-66b-casino__faq-answer p {
            font-size: 0.95rem;
            word-break: break-word !important; /* Ensure long words break */
        }
    }

    @media (max-width: 480px) {
        .page-66b-casino__hero-section {
            height: 400px;
        }
        .page-66b-casino__hero-title {
            font-size: 2rem;
        }
        .page-66b-casino__hero-description {
            font-size: 0.9rem;
        }
        .page-66b-casino__button {
            width: 90%;
            padding: 10px 15px;
            font-size: 0.9rem;
        }
        .page-66b-casino__section-title {
            font-size: 1.8rem;
        }
    }
  