
    /* General Styling for page-711d */
    .page-711d {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a1a;
        line-height: 1.6;
        overflow-x: hidden;
        padding-bottom: 80px; /* Space for floating buttons */
        padding-top: 10px; /* Small top padding for hero section */
    }

    .page-711d__section-title {
        font-size: 2.2em;
        color: #ffcc00; /* Gold accent */
        text-align: center;
        margin-bottom: 20px;
        padding: 0 15px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        word-wrap: break-word; /* Ensure long titles wrap */
    }

    .page-711d__section-description {
        font-size: 1.1em;
        color: #ccc;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        padding: 0 15px;
        word-wrap: break-word; /* Ensure long descriptions wrap */
    }

    /* Hero Section */
    .page-711d__hero-section {
        position: relative;
        width: 100%;
        height: 60vh; /* Responsive height */
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        margin-bottom: 50px;
        padding: 20px 0;
        box-sizing: border-box;
    }

    .page-711d__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .page-711d__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
        z-index: 2;
    }

    .page-711d__hero-content {
        position: relative;
        z-index: 3;
        max-width: 900px;
        padding: 20px;
    }

    .page-711d__hero-title {
        font-size: 3em;
        color: #ffcc00;
        margin-bottom: 20px;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
        word-wrap: break-word;
    }

    .page-711d__hero-description {
        font-size: 1.3em;
        color: #e0e0e0;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        word-wrap: break-word;
    }

    .page-711d__hero-cta-button,
    .page-711d__cta-bottom-button {
        display: inline-block;
        background-color: #007bff;
        color: #fff;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    }

    .page-711d__hero-cta-button:hover,
    .page-711d__cta-bottom-button:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-711d__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: 90%;
        max-width: 380px;
        justify-content: space-around;
    }

    .page-711d__floating-button {
        flex: 1;
        padding: 12px 20px;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        box-sizing: border-box; /* Ensure padding is included */
    }

    .page-711d__floating-button--register {
        background-color: #ffcc00; /* Gold/Yellow */
        color: #333;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-711d__floating-button--login {
        background-color: #007bff; /* Blue */
        color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

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

    /* Game Categories Section */
    .page-711d__game-categories-section,
    .page-711d__promotions-section,
    .page-711d__why-choose-section,
    .page-711d__payment-section,
    .page-711d__providers-section,
    .page-711d__faq-section,
    .page-711d__cta-bottom-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-711d__game-grid,
    .page-711d__promo-list,
    .page-711d__features-grid,
    .page-711d__payment-grid,
    .page-711d__providers-grid {
        display: grid;
        gap: 30px;
        justify-content: center;
    }

    .page-711d__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-711d__game-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding-bottom: 20px; /* Space below text */
    }

    .page-711d__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-711d__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
        box-sizing: border-box;
        display: block; /* Remove extra space below image */
    }

    .page-711d__game-card-title {
        font-size: 1.5em;
        color: #ffcc00;
        margin: 20px 15px 10px 15px;
        word-wrap: break-word;
    }

    .page-711d__game-card-text {
        font-size: 1em;
        color: #bbb;
        padding: 0 15px;
        word-wrap: break-word;
    }

    /* Promotions Section */
    .page-711d__promo-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page-711d__promo-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding-bottom: 20px;
    }

    .page-711d__promo-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-711d__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        max-width: 100%;
        box-sizing: border-box;
        display: block;
    }

    .page-711d__promo-title {
        font-size: 1.4em;
        color: #ffcc00;
        margin: 20px 15px 10px 15px;
        word-wrap: break-word;
    }

    .page-711d__promo-text {
        font-size: 1em;
        color: #bbb;
        padding: 0 15px;
        word-wrap: break-word;
    }

    /* Why Choose Section */
    .page-711d__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-711d__feature-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-711d__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-711d__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-711d__feature-title {
        font-size: 1.3em;
        color: #ffcc00;
        margin-bottom: 10px;
        word-wrap: break-word;
    }

    .page-711d__feature-description {
        font-size: 0.95em;
        color: #bbb;
        word-wrap: break-word;
    }

    /* Payment & Providers Sections */
    .page-711d__payment-grid,
    .page-711d__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .page-711d__payment-item,
    .page-711d__provider-item {
        background-color: #2a2a2a;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-711d__payment-item:hover,
    .page-711d__provider-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.5);
    }

    .page-711d__payment-item a,
    .page-711d__provider-item a {
        text-decoration: none;
        color: inherit;
        display: block; /* Make the whole item clickable */
    }

    .page-711d__payment-logo,
    .page-711d__provider-logo {
        width: 120px;
        height: 60px;
        object-fit: contain;
        margin: 0 auto 10px auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-711d__payment-name,
    .page-711d__provider-name {
        font-size: 0.9em;
        color: #ccc;
        font-weight: bold;
        word-wrap: break-word;
    }

    /* FAQ Section */
    .page-711d__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-711d__faq-item {
        background-color: #2a2a2a;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

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

    .page-711d__faq-question:hover {
        background-color: #444;
    }

    .page-711d__faq-question-title {
        margin: 0;
        flex-grow: 1;
        text-align: left;
        color: #ffcc00; /* Ensure title color */
        pointer-events: none; /* Crucial for click event on parent */
        word-wrap: break-word;
        font-size: 1.1em; /* Ensure consistent font size */
    }

    .page-711d__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event on parent */
    }

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

    .page-711d__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding */
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        background-color: #2a2a2a;
        color: #ccc;
        opacity: 0; /* Initial opacity */
    }

    .page-711d__faq-item.active .page-711d__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px !important; /* Expanded padding */
        opacity: 1;
    }

    .page-711d__faq-answer p {
        margin: 0;
        word-wrap: break-word;
    }

    /* Call to Action Bottom Section */
    .page-711d__cta-bottom-section {
        text-align: center;
        padding: 80px 20px;
        background: linear-gradient(45deg, #1a1a1a, #333);
        border-radius: 10px;
        margin-top: 50px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .page-711d__hero-title {
            font-size: 2.5em;
        }
        .page-711d__hero-description {
            font-size: 1.1em;
        }
        .page-711d__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-711d {
            padding-bottom: 70px; /* Adjust for smaller floating buttons */
        }
        .page-711d__hero-section {
            height: 50vh;
            min-height: 350px;
        }
        .page-711d__hero-title {
            font-size: 2em;
        }
        .page-711d__hero-description {
            font-size: 1em;
        }
        .page-711d__hero-cta-button,
        .page-711d__cta-bottom-button {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-711d__section-title {
            font-size: 1.8em;
        }
        .page-711d__section-description {
            font-size: 1em;
            margin-bottom: 30px;
        }

        /* Floating buttons for mobile */
        .page-711d__floating-buttons {
            width: calc(100% - 30px);
            bottom: 15px;
            gap: 10px;
        }
        .page-711d__floating-button {
            padding: 10px 15px;
            font-size: 1em;
        }

        /* List items mobile responsiveness */
        .page-711d__game-grid,
        .page-711d__promo-list,
        .page-711d__features-grid,
        .page-711d__payment-grid,
        .page-711d__providers-grid {
            grid-template-columns: 1fr !important; /* Force single column */
            gap: 20px !important;
            padding: 0 15px !important; /* Adjust container padding */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-711d__game-card,
        .page-711d__promo-item,
        .page-711d__feature-item,
        .page-711d__payment-item,
        .page-711d__provider-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px !important; /* Adjust padding for inner items */
            padding-right: 15px !important;
        }

        .page-711d__game-card-image,
        .page-711d__promo-image,
        .page-711d__feature-icon,
        .page-711d__payment-logo,
        .page-711d__provider-logo {
            max-width: 100% !important;
            height: auto !important; /* Maintain aspect ratio */
            box-sizing: border-box !important;
        }
        
        .page-711d__faq-question {
            font-size: 1em;
            padding: 15px;
        }
        .page-711d__faq-question-title {
            font-size: 1em;
        }
        .page-711d__faq-toggle {
            font-size: 1.3em;
        }
        .page-711d__faq-answer {
            padding: 0 15px;
        }
        .page-711d__faq-item.active .page-711d__faq-answer {
            padding: 15px !important;
        }
    }

    @media (max-width: 480px) {
        .page-711d__hero-title {
            font-size: 1.8em;
        }
        .page-711d__hero-description {
            font-size: 0.9em;
        }
        .page-711d__section-title {
            font-size: 1.6em;
        }
        .page-711d__hero-cta-button,
        .page-711d__cta-bottom-button {
            padding: 10px 20px;
            font-size: 1em;
        }
    }
  