
    .page-789b3-cok {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #e0e0e0; /* Light grey text */
        background-color: #121212; /* Dark background */
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-789b3-cok__section-title {
        font-size: 2.5em;
        color: #00e676; /* Bright green accent */
        text-align: center;
        margin-bottom: 40px;
        padding-top: 20px;
        font-weight: 700;
    }

    .page-789b3-cok__section-title strong {
        color: #ffc107; /* Amber accent for keyword */
    }

    .page-789b3-cok__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 60vh;
        padding: 10px 20px 40px; /* Small top padding, assuming body has header offset */
        overflow: hidden;
        background: linear-gradient(135deg, #1a1a2e 0%, #000000 100%);
    }

    .page-789b3-cok__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.3;
    }

    .page-789b3-cok__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%;
    }

    .page-789b3-cok__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-789b3-cok__main-heading {
        font-size: 3.5em;
        color: #f0f0f0;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-789b3-cok__main-heading strong {
        color: #00e676; /* Bright green accent for keyword */
    }

    .page-789b3-cok__hero-description {
        font-size: 1.3em;
        color: #cccccc;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Floating Buttons */
    .page-789b3-cok__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(18, 18, 18, 0.95);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .page-789b3-cok__btn {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        box-sizing: border-box;
        cursor: pointer;
    }

    .page-789b3-cok__btn--primary {
        background-color: #00e676; /* Bright green */
        color: #121212;
        border: none;
    }

    .page-789b3-cok__btn--primary:hover {
        background-color: #00c853;
        transform: translateY(-2px);
    }

    .page-789b3-cok__floating-btn {
        flex: 1;
        margin: 0 5px;
        max-width: 180px;
    }

    .page-789b3-cok__floating-btn--register {
        background-color: #ffc107; /* Amber */
        color: #121212;
    }

    .page-789b3-cok__floating-btn--register:hover {
        background-color: #ffb300;
        transform: translateY(-2px);
    }

    .page-789b3-cok__floating-btn--login {
        background-color: #00e676; /* Bright green */
        color: #121212;
    }

    .page-789b3-cok__floating-btn--login:hover {
        background-color: #00c853;
        transform: translateY(-2px);
    }

    /* Game Categories */
    .page-789b3-cok__game-categories,
    .page-789b3-cok__promotions,
    .page-789b3-cok__payment-methods,
    .page-789b3-cok__providers,
    .page-789b3-cok__faq-section,
    .page-789b3-cok__cta-bottom {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-789b3-cok__game-grid,
    .page-789b3-cok__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-789b3-cok__game-card,
    .page-789b3-cok__promo-card {
        background-color: #1a1a1a;
        border-radius: 15px;
        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;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .page-789b3-cok__game-card:hover,
    .page-789b3-cok__promo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .page-789b3-cok__game-image,
    .page-789b3-cok__promo-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
        display: block;
    }

    .page-789b3-cok__game-title,
    .page-789b3-cok__promo-title {
        font-size: 1.6em;
        color: #00e676;
        margin: 20px 15px 10px;
        font-weight: 600;
    }

    .page-789b3-cok__game-description,
    .page-789b3-cok__promo-description {
        font-size: 1em;
        color: #cccccc;
        padding: 0 15px 20px;
        flex-grow: 1;
    }

    /* Payment Methods */
    .page-789b3-cok__payment-intro,
    .page-789b3-cok__providers-intro,
    .page-789b3-cok__cta-description {
        text-align: center;
        font-size: 1.1em;
        margin-bottom: 40px;
        color: #cccccc;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-789b3-cok__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        justify-content: center;
    }

    .page-789b3-cok__payment-item {
        background-color: #1a1a1a;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
        box-sizing: border-box;
    }

    .page-789b3-cok__payment-item:hover {
        transform: translateY(-5px);
    }

    .page-789b3-cok__payment-logo {
        width: 100px;
        height: auto;
        max-width: 100%;
        margin-bottom: 10px;
        object-fit: contain;
    }

    .page-789b3-cok__payment-name {
        font-weight: bold;
        color: #ffc107;
        font-size: 1.1em;
    }

    /* Game Providers */
    .page-789b3-cok__provider-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .page-789b3-cok__provider-name {
        background-color: #2a2a2a;
        color: #e0e0e0;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: 500;
        font-size: 1em;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .page-789b3-cok__provider-name:hover {
        background-color: #00e676;
        color: #121212;
    }

    /* FAQ Section */
    .page-789b3-cok__faq-container {
        background-color: #1a1a1a;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        overflow: hidden;
    }

    .page-789b3-cok__faq-item {
        border-bottom: 1px solid #2a2a2a;
    }

    .page-789b3-cok__faq-item:last-child {
        border-bottom: none;
    }

    .page-789b3-cok__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #1a1a1a;
        transition: background-color 0.3s ease;
    }

    .page-789b3-cok__faq-question:hover {
        background-color: #2a2a2a;
    }

    .page-789b3-cok__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #f0f0f0;
        pointer-events: none; /* Prevent h3 from blocking click */
        font-weight: 600;
    }

    .page-789b3-cok__faq-question h3 strong {
        color: #ffc107;
    }

    .page-789b3-cok__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        color: #00e676;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click */
        font-weight: bold;
    }

    .page-789b3-cok__faq-item.active .page-789b3-cok__faq-toggle {
        transform: rotate(45deg); /* Rotate + to X or simply change to minus */
        color: #ffc107;
    }

    .page-789b3-cok__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;
        background-color: #222222;
        color: #cccccc;
        font-size: 1em;
    }

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

    .page-789b3-cok__faq-answer p {
        margin: 0;
    }

    /* Call to Action Bottom */
    .page-789b3-cok__cta-bottom {
        text-align: center;
        padding-bottom: 80px; /* Ensure space above footer/floating buttons */
    }

    .page-789b3-cok__cta-buttons {
        margin-top: 30px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-789b3-cok__main-heading {
            font-size: 3em;
        }
        .page-789b3-cok__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-789b3-cok__hero-section {
            min-height: 50vh;
            padding-bottom: 80px; /* Make sure content isn't hidden by floating buttons */
        }

        .page-789b3-cok__main-heading {
            font-size: 2.2em;
        }

        .page-789b3-cok__hero-description {
            font-size: 1em;
        }

        .page-789b3-cok__section-title {
            font-size: 1.8em;
        }

        .page-789b3-cok__game-grid,
        .page-789b3-cok__promo-grid,
        .page-789b3-cok__payment-grid {
            grid-template-columns: 1fr;
        }

        .page-789b3-cok__game-card,
        .page-789b3-cok__promo-card,
        .page-789b3-cok__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-789b3-cok__payment-grid {
            padding: 0 10px;
        }

        .page-789b3-cok__payment-item {
            padding: 15px;
        }

        .page-789b3-cok__provider-list {
            flex-direction: column;
            align-items: center;
        }

        .page-789b3-cok__provider-name {
            width: 100%;
            text-align: center;
            max-width: 250px;
        }

        .page-789b3-cok__faq-question {
            padding: 15px 20px;
        }

        .page-789b3-cok__faq-question h3 {
            font-size: 1.1em;
        }

        .page-789b3-cok__faq-answer {
            padding: 0 20px;
        }

        .page-789b3-cok__faq-item.active .page-789b3-cok__faq-answer {
            padding: 15px 20px !important;
        }

        .page-789b3-cok__floating-buttons {
            flex-direction: row;
            width: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 10px 0;
        }
        .page-789b3-cok__floating-btn {
            margin: 0 5px;
            flex: 1;
            max-width: 48%; /* Adjust for spacing */
        }
        .page-789b3-cok__btn {
            font-size: 1em;
            padding: 10px 15px;
        }

        /* Images responsiveness */
        .page-789b3-cok img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-789b3-cok__hero-image-wrapper,
        .page-789b3-cok__game-image,
        .page-789b3-cok__promo-image,
        .page-789b3-cok__payment-logo {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
        /* Text wrapping for content */
        .page-789b3-cok p, .page-789b3-cok h3, .page-789b3-cok span {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
    }

    @media (max-width: 480px) {
        .page-789b3-cok__main-heading {
            font-size: 1.8em;
        }
        .page-789b3-cok__section-title {
            font-size: 1.5em;
        }
        .page-789b3-cok__floating-btn {
            padding: 8px 10px;
            font-size: 0.9em;
        }
        .page-789b3-cok__game-title,
        .page-789b3-cok__promo-title {
            font-size: 1.4em;
        }
    }
  