
    /* CSS styles for the page-link */
    :root {
        --page-link-bg-color: #000000;
        --page-link-text-color-light: #FFFFFF;
        --page-link-text-color-accent: #FFD700; /* Gold/Yellow */
        --page-link-button-bg-color: #FFD700;
        --page-link-button-text-color: #000000;
        --page-link-border-color: #333333;
        --page-link-card-bg-color: #1a1a1a;
        --page-link-spacing-lg: 60px;
        --page-link-spacing-md: 40px;
        --page-link-spacing-sm: 20px;
    }

    .page-link {
        font-family: 'Arial', sans-serif;
        background-color: var(--page-link-bg-color);
        color: var(--page-link-text-color-light);
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-link__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--page-link-spacing-sm);
    }

    .page-link__section-title {
        font-size: 2.5em;
        color: var(--page-link-text-color-accent);
        text-align: center;
        margin-bottom: var(--page-link-spacing-md);
        padding-top: var(--page-link-spacing-sm);
        font-weight: bold;
    }

    .page-link__text-content {
        font-size: 1.1em;
        margin-bottom: var(--page-link-spacing-sm);
        text-align: center;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-link__keyword-highlight {
        color: var(--page-link-text-color-accent);
        font-weight: bold;
    }

    /* Hero Section */
    .page-link__hero-section {
        position: relative;
        padding-top: 150px; /* Safe zone for fixed header */
        background-color: var(--page-link-bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        overflow: hidden;
    }

    .page-link__hero-content {
        position: relative;
        z-index: 10;
        padding: var(--page-link-spacing-md) var(--page-link-spacing-sm);
        max-width: 800px;
        margin: 0 auto;
    }

    .page-link__hero-title {
        font-size: 3em;
        color: var(--page-link-text-color-accent);
        margin-bottom: var(--page-link-spacing-sm);
        font-weight: 900;
        line-height: 1.2;
    }

    .page-link__hero-description {
        font-size: 1.3em;
        color: var(--page-link-text-color-light);
        margin-bottom: var(--page-link-spacing-md);
    }

    .page-link__hero-button {
        display: inline-block;
        background-color: var(--page-link-button-bg-color);
        color: var(--page-link-button-text-color);
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-link__hero-button:hover {
        background-color: #e6c200;
        transform: translateY(-3px);
    }

    .page-link__hero-image {
        width: 100%;
        max-width: 1200px; /* Adjust based on desired max width for the banner */
        height: auto;
        display: block;
        margin-top: var(--page-link-spacing-md);
        border-radius: 10px;
        object-fit: cover;
    }

    /* General Section Styling */
    .page-link__intro-section,
    .page-link__games-section,
    .page-link__promo-section,
    .page-link__providers-section,
    .page-link__guide-section,
    .page-link__faq-section,
    .page-link__cta-section {
        padding: var(--page-link-spacing-lg) 0;
        border-bottom: 1px solid var(--page-link-border-color);
    }

    .page-link__intro-section:last-of-type,
    .page-link__games-section:last-of-type,
    .page-link__promo-section:last-of-type,
    .page-link__providers-section:last-of-type,
    .page-link__guide-section:last-of-type,
    .page-link__faq-section:last-of-type,
    .page-link__cta-section:last-of-type {
        border-bottom: none;
    }

    /* Game Grid */
    .page-link__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--page-link-spacing-sm);
        margin-top: var(--page-link-spacing-md);
    }

    .page-link__game-item {
        background-color: var(--page-link-card-bg-color);
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        padding-bottom: var(--page-link-spacing-sm);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-link__game-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-link__game-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
    }

    .page-link__game-title {
        font-size: 1.5em;
        color: var(--page-link-text-color-accent);
        margin: var(--page-link-spacing-sm) 0 10px;
    }

    .page-link__game-description {
        font-size: 0.95em;
        color: var(--page-link-text-color-light);
        padding: 0 15px;
    }

    /* Promo Section */
    .page-link__promo-card {
        background-color: var(--page-link-card-bg-color);
        border-radius: 10px;
        padding: var(--page-link-spacing-sm);
        margin-top: var(--page-link-spacing-md);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-align: center;
    }
    
    .page-link__promo-image {
        width: 100%;
        max-width: 600px;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: var(--page-link-spacing-sm);
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-link__promo-title {
        font-size: 1.8em;
        color: var(--page-link-text-color-accent);
        margin-bottom: 10px;
    }

    .page-link__promo-description {
        font-size: 1em;
        color: var(--page-link-text-color-light);
        margin-bottom: var(--page-link-spacing-sm);
    }

    .page-link__promo-button {
        display: inline-block;
        background-color: var(--page-link-button-bg-color);
        color: var(--page-link-button-text-color);
        padding: 12px 25px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        margin-top: 10px;
        border: none;
        cursor: pointer;
    }

    .page-link__promo-button:hover {
        background-color: #e6c200;
    }

    /* Provider Grid */
    .page-link__provider-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--page-link-spacing-sm);
        margin-top: var(--page-link-spacing-md);
    }

    .page-link__provider-item {
        background-color: var(--page-link-card-bg-color);
        border-radius: 10px;
        padding: var(--page-link-spacing-sm);
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 150px;
    }

    .page-link__provider-logo {
        width: 100px; /* Example size, adjust as needed */
        height: 100px;
        object-fit: contain;
        margin-bottom: 10px;
        display: block;
    }

    .page-link__provider-name {
        font-size: 1em;
        color: var(--page-link-text-color-light);
        font-weight: bold;
    }

    /* Guide Section */
    .page-link__guide-step {
        background-color: var(--page-link-card-bg-color);
        border-radius: 10px;
        padding: var(--page-link-spacing-md);
        margin-bottom: var(--page-link-spacing-sm);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    .page-link__guide-title {
        font-size: 1.6em;
        color: var(--page-link-text-color-accent);
        margin-bottom: 10px;
    }

    .page-link__guide-text {
        font-size: 1em;
        color: var(--page-link-text-color-light);
        margin-bottom: var(--page-link-spacing-sm);
    }

    .page-link__guide-button {
        display: inline-block;
        background-color: var(--page-link-button-bg-color);
        color: var(--page-link-button-text-color);
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        transition: background-color 0.3s ease;
        margin-top: 10px;
        border: none;
        cursor: pointer;
    }

    .page-link__guide-button:hover {
        background-color: #e6c200;
    }

    /* FAQ Section */
    .page-link__faq-list {
        margin-top: var(--page-link-spacing-md);
    }

    .page-link__faq-item {
        background-color: var(--page-link-card-bg-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-link__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #2a2a2a;
        cursor: pointer;
        user-select: none;
        border-bottom: 1px solid var(--page-link-border-color);
        transition: background-color 0.3s ease;
    }

    .page-link__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-link__faq-title {
        font-size: 1.2em;
        color: var(--page-link-text-color-accent);
        margin: 0;
        pointer-events: none; /* Prevent text selection interfering with click */
    }

    .page-link__faq-toggle {
        font-size: 1.8em;
        color: var(--page-link-text-color-accent);
        font-weight: bold;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent icon interfering with click */
        width: 1em; /* Ensure consistent width */
        text-align: center;
        flex-shrink: 0; /* Prevent shrinking */
    }

    .page-link__faq-item.active .page-link__faq-toggle {
        transform: rotate(45deg); /* Change + to X visually */
    }

    .page-link__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px; /* Initial padding for collapsed state */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--page-link-text-color-light);
        font-size: 1em;
    }

    .page-link__faq-item.active .page-link__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to show content */
        padding: 20px 15px !important; /* Padding for expanded state */
        opacity: 1;
    }

    /* CTA Section */
    .page-link__cta-section {
        text-align: center;
        padding-bottom: var(--page-link-spacing-lg);
    }

    .page-link__cta-button {
        display: inline-block;
        background-color: var(--page-link-button-bg-color);
        color: var(--page-link-button-text-color);
        padding: 18px 35px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.4em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        margin-top: var(--page-link-spacing-md);
        border: none;
        cursor: pointer;
    }

    .page-link__cta-button:hover {
        background-color: #e6c200;
        transform: translateY(-3px);
    }

    /* Floating Button */
    .page-link__floating-button {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background-color: var(--page-link-button-bg-color);
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        padding: 10px 20px;
        animation: page-link__pulse 2s infinite;
    }

    .page-link__floating-link {
        color: var(--page-link-button-text-color);
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    @keyframes page-link__pulse {
        0% { transform: translateX(-50%) scale(1); }
        50% { transform: translateX(-50%) scale(1.05); }
        100% { transform: translateX(-50%) scale(1); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-link__hero-section {
            padding-top: 120px; /* Adjusted safe zone for mobile */
        }
        .page-link__hero-title {
            font-size: 2.2em;
        }
        .page-link__hero-description {
            font-size: 1.1em;
        }
        .page-link__hero-button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-link__section-title {
            font-size: 1.8em;
            margin-bottom: var(--page-link-spacing-sm);
        }
        .page-link__text-content {
            font-size: 1em;
        }
        .page-link__game-grid,
        .page-link__provider-grid {
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
        }
        .page-link__game-image {
            height: 150px;
        }
        .page-link__game-title {
            font-size: 1.2em;
        }
        .page-link__guide-title {
            font-size: 1.4em;
        }
        .page-link__faq-question {
            padding: 12px 15px;
        }
        .page-link__faq-title {
            font-size: 1.1em;
        }
        .page-link__faq-answer {
            padding: 15px 15px !important;
        }
        .page-link__cta-button {
            padding: 15px 25px;
            font-size: 1.2em;
        }
        .page-link__floating-link {
            font-size: 0.9em;
            padding: 8px 15px;
        }

        /* Enforce image responsiveness */
        .page-link img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-link__game-image,
        .page-link__promo-image,
        .page-link__provider-logo,
        .page-link__hero-image {
            max-width: 100% !important;
            height: auto !important; /* Override fixed height for responsiveness if needed, but object-fit helps */
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-link__hero-title {
            font-size: 1.8em;
        }
        .page-link__hero-description {
            font-size: 1em;
        }
        .page-link__section-title {
            font-size: 1.5em;
        }
        .page-link__floating-button {
            bottom: 15px;
            padding: 8px 15px;
        }
        .page-link__floating-link {
            font-size: 0.85em;
        }
    }
  