
    .page-689 {
        font-family: 'Arial', sans-serif;
        color: #ffffff;
        background-color: #1a1a1a;
        line-height: 1.6;
        overflow-x: hidden;
    }

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

    /* Hero Section */
    .page-689__hero-section {
        position: relative;
        padding-top: 10px; /* Decorative top padding, body handles header offset */
        padding-bottom: 60px;
        text-align: center;
        overflow: hidden;
        background-color: #000;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-689__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
        z-index: 1;
    }

    .page-689__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 10px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-689__hero-title {
        font-size: 3.2em;
        color: #f0b90b;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-689__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #e0e0e0;
        max-width: 700px;
    }

    .page-689__button-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .page-689__button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        cursor: pointer;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-689__button--primary {
        background-color: #f0b90b;
        color: #1a1a1a;
    }

    .page-689__button--primary:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .page-689__button--secondary {
        background-color: #333;
        color: #ffffff;
        border: 1px solid #f0b90b;
    }

    .page-689__button--secondary:hover {
        background-color: #444;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    /* Section Styles */
    .page-689__section {
        padding: 60px 0;
        text-align: center;
        background-color: #1a1a1a;
    }

    .page-689__section--dark {
        background-color: #222;
    }

    .page-689__section-title {
        font-size: 2.5em;
        color: #f0b90b;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

    .page-689__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #f0b90b;
        border-radius: 2px;
    }

    .page-689__section-description {
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 50px auto;
        color: #ccc;
    }

    /* Features List */
    .page-689__feature-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-689__feature-item {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 8px;
        text-align: left;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* WCAG AA Contrast for text: #ccc on #2a2a2a is 5.5:1 */
    }

    .page-689__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-689__feature-image {
        width: 100%;
        height: 220px; /* Ensure minimum 200x200 */
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 20px;
        display: block;
    }

    .page-689__feature-title {
        font-size: 1.5em;
        color: #f0b90b; /* WCAG AA Contrast for text: #f0b90b on #2a2a2a is 6.5:1 */
        margin-bottom: 15px;
    }

    .page-689__feature-text {
        font-size: 1em;
        color: #ccc;
    }

    /* Game Categories / Providers / Payments Grid */
    .page-689__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-689__grid-item {
        background-color: #2a2a2a;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-689__grid-item:hover {
        transform: translateY(-5px);
    }

    .page-689__grid-image {
        width: 100%;
        height: 200px; /* Minimum 200x200 */
        object-fit: cover;
        display: block;
    }

    .page-689__grid-content {
        padding: 25px;
    }

    .page-689__grid-title {
        font-size: 1.3em;
        color: #f0b90b; /* WCAG AA Contrast for text: #f0b90b on #2a2a2a is 6.5:1 */
        margin-bottom: 10px;
    }

    .page-689__grid-description {
        font-size: 0.95em;
        color: #ccc; /* WCAG AA Contrast for text: #ccc on #2a2a2a is 5.5:1 */
    }

    /* FAQ Section */
    .page-689__faq-list {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
    }

    .page-689__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-689__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #333; /* WCAG AA Contrast for text: #ffffff on #333 is 13.6:1 */
        color: #ffffff;
        cursor: pointer;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
        box-sizing: border-box;
    }

    .page-689__faq-question:hover {
        background-color: #444;
    }

    .page-689__faq-question h3 {
        margin: 0;
        color: #f0b90b; /* WCAG AA Contrast for text: #f0b90b on #333 is 8.6:1 */
        font-size: 1.1em;
        pointer-events: none; /* Prevent text selection interference */
    }

    .page-689__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent interference */
        min-width: 20px; /* Ensure toggle is visible */
        text-align: center;
    }

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

    .page-689__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: #ccc; /* WCAG AA Contrast for text: #ccc on #2a2a2a is 5.5:1 */
        font-size: 0.95em;
        box-sizing: border-box;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-689__container {
            padding: 15px;
        }

        .page-689__hero-title {
            font-size: 2.2em;
        }

        .page-689__hero-description {
            font-size: 1em;
        }

        .page-689__button {
            padding: 12px 25px;
            font-size: 1em;
            width: 100%;
        }

        .page-689__button-group {
            flex-direction: column;
            gap: 15px;
        }

        .page-689__section {
            padding: 40px 0;
        }

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

        .page-689__section-description {
            font-size: 1em;
            margin-bottom: 40px;
        }

        .page-689__feature-list,
        .page-689__grid {
            grid-template-columns: 1fr; /* Single column for mobile */
            gap: 20px;
        }

        .page-689__feature-item,
        .page-689__grid-item,
        .page-689__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-689__feature-item {
            padding: 20px;
        }
        .page-689__grid-content {
            padding: 20px;
        }
        .page-689__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }
        .page-689__faq-question h3 {
            font-size: 1em;
        }
        .page-689__faq-answer {
            padding: 0 20px;
        }
        .page-689__faq-item.active .page-689__faq-answer {
            padding: 15px 20px !important;
        }
        .page-689__feature-text,
        .page-689__grid-description,
        .page-689__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-689__grid-image {
            height: 200px; /* Maintain minimum height for displayed images */
        }
    }
  