
    /* General styling for the page */
    .page-af88-cok {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f8f8;
        overflow-x: hidden; /* Prevent horizontal scroll from fixed elements or large content */
    }

    /* Section base styles */
    .page-af88-cok__hero-section,
    .page-af88-cok__game-categories,
    .page-af88-cok__promotions,
    .page-af88-cok__why-choose-us,
    .page-af88-cok__faq-section,
    .page-af88-cok__cta-section,
    .page-af88-cok__partners-section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    /* Specific padding for hero section to account for header offset */
    .page-af88-cok__hero-section {
        padding-top: 10px; /* Minimal top padding as body already handles header offset */
        background-color: #0d1a26; /* Darker background for hero */
        color: #fff;
        text-align: center;
        position: relative;
        padding-bottom: 60px; /* Add some bottom padding for content */
    }

    .page-af88-cok__main-title {
        font-size: 2.2em;
        color: #ffcc00; /* Gold/yellow for brand emphasis */
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-af88-cok__hero-description {
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 30px auto;
        color: #eee;
    }

    .page-af88-cok__hero-actions {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .page-af88-cok__btn {
        padding: 12px 25px;
        border: none;
        border-radius: 30px;
        font-size: 1em;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none; /* Ensure no underline if it was an anchor */
        display: inline-block;
        font-weight: bold;
    }

    .page-af88-cok__btn--primary {
        background-color: #ffcc00;
        color: #0d1a26;
    }

    .page-af88-cok__btn--primary:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-af88-cok__btn--secondary {
        background-color: transparent;
        color: #ffcc00;
        border: 2px solid #ffcc00;
    }

    .page-af88-cok__btn--secondary:hover {
        background-color: #ffcc00;
        color: #0d1a26;
        transform: translateY(-2px);
    }

    .page-af88-cok__hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        margin-top: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Section Titles */
    .page-af88-cok__section-title {
        font-size: 2em;
        color: #0d1a26;
        text-align: center;
        margin-bottom: 15px;
    }

    .page-af88-cok__section-subtitle {
        font-size: 1.1em;
        color: #666;
        text-align: center;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Game Categories */
    .page-af88-cok__game-categories {
        text-align: center;
    }

    .page-af88-cok__category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-af88-cok__category-item {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 25px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-af88-cok__category-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-af88-cok__category-image {
        width: 100%;
        max-width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .page-af88-cok__category-title {
        font-size: 1.4em;
        color: #0d1a26;
        margin-bottom: 10px;
    }

    .page-af88-cok__category-text {
        font-size: 0.95em;
        color: #555;
    }

    /* Promotions */
    .page-af88-cok__promotions {
        background-color: #f0f4f7;
    }

    .page-af88-cok__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-af88-cok__promo-item {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-af88-cok__promo-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-af88-cok__promo-image {
        width: 100%;
        max-width: 100%;
        height: 250px; /* Fixed height for promo images */
        object-fit: cover;
    }

    .page-af88-cok__promo-title {
        font-size: 1.3em;
        color: #0d1a26;
        margin: 20px 15px 10px 15px;
    }

    .page-af88-cok__promo-text {
        font-size: 0.9em;
        color: #555;
        padding: 0 15px 20px 15px;
    }

    /* Why Choose Us */
    .page-af88-cok__why-choose-us {
        background-color: #0d1a26; /* Dark background */
        color: #fff;
        text-align: center;
    }

    .page-af88-cok__why-choose-us .page-af88-cok__section-title {
        color: #ffcc00;
    }

    .page-af88-cok__why-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: left;
    }

    .page-af88-cok__why-image {
        flex: 1;
        min-width: 300px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .page-af88-cok__why-text {
        flex: 2;
        min-width: 300px;
    }

    .page-af88-cok__why-text p {
        font-size: 1.05em;
        margin-bottom: 25px;
        color: #eee;
    }

    .page-af88-cok__feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr; /* Default to single column */
        gap: 20px;
    }

    .page-af88-cok__feature-item {
        background-color: #1a2c3e;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-af88-cok__feature-title {
        font-size: 1.2em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-af88-cok__feature-description {
        font-size: 0.95em;
        color: #ccc;
    }

    /* FAQ Section */
    .page-af88-cok__faq-section {
        background-color: #f8f8f8;
    }

    .page-af88-cok__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-af88-cok__faq-item {
        background-color: #fff;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        overflow: hidden; /* Important for max-height transition */
    }

    .page-af88-cok__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #f0f4f7;
        color: #0d1a26;
        border-bottom: 1px solid #e0e0e0;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-af88-cok__faq-question:hover {
        background-color: #e5eaf0;
    }

    .page-af88-cok__faq-title {
        font-size: 1.1em;
        margin: 0;
        color: #0d1a26;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-af88-cok__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffcc00;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click on parent div */
    }

    .page-af88-cok__faq-item.active .page-af88-cok__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or similar for active state */
    }

    .page-af88-cok__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding matches question horizontal padding */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #555;
    }

    .page-af88-cok__faq-item.active .page-af88-cok__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain any content */
        padding: 20px 20px !important; /* Adjust padding for expanded state */
        opacity: 1;
    }

    .page-af88-cok__faq-answer p {
        margin-top: 0;
        margin-bottom: 0;
        word-wrap: break-word; /* Ensure long words break */
        overflow-wrap: break-word;
    }

    /* Call to Action */
    .page-af88-cok__cta-section {
        text-align: center;
        background-color: #0d1a26;
        color: #fff;
    }

    .page-af88-cok__cta-section .page-af88-cok__section-title {
        color: #ffcc00;
    }

    .page-af88-cok__cta-description {
        font-size: 1.1em;
        max-width: 700px;
        margin: 0 auto 30px auto;
        color: #eee;
    }

    .page-af88-cok__cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    /* Partners & Payments */
    .page-af88-cok__partners-section {
        text-align: center;
        background-color: #f0f4f7;
        margin-bottom: 80px; /* Space for floating buttons */
    }

    .page-af88-cok__partners-grid,
    .page-af88-cok__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Min-width 150px for logos */
        gap: 20px;
        max-width: 1200px;
        margin: 30px auto;
        padding: 0 10px;
    }

    .page-af88-cok__partner-link,
    .page-af88-cok__payment-link {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        height: 100px; /* Fixed height for logo containers */
        box-sizing: border-box;
    }

    .page-af88-cok__partner-link:hover,
    .page-af88-cok__payment-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-af88-cok__partner-logo,
    .page-af88-cok__payment-logo {
        max-width: 100%;
        max-height: 70px; /* Adjust max height for logos within container */
        height: auto;
        object-fit: contain;
    }

    /* Floating Register/Login Buttons */
    .page-af88-cok__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(13, 26, 38, 0.95); /* Darker, slightly transparent background */
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .page-af88-cok__float-btn {
        flex: 1;
        margin: 0 10px;
        padding: 12px 0;
        border: none;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
    }

    .page-af88-cok__float-btn--register {
        background-color: #ffcc00;
        color: #0d1a26;
    }

    .page-af88-cok__float-btn--register:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-af88-cok__float-btn--login {
        background-color: #2a4158;
        color: #fff;
    }

    .page-af88-cok__float-btn--login:hover {
        background-color: #3a526b;
        transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (min-width: 768px) {
        .page-af88-cok__main-title {
            font-size: 3em;
        }
        .page-af88-cok__section-title {
            font-size: 2.5em;
        }
        .page-af88-cok__hero-image {
            max-height: 500px;
        }
        .page-af88-cok__why-content {
            flex-wrap: nowrap;
            text-align: left;
        }
        .page-af88-cok__why-image {
            order: 1; /* Image on left */
            margin-right: 40px;
        }
        .page-af88-cok__why-text {
            order: 2; /* Text on right */
        }
        .page-af88-cok__feature-list {
            grid-template-columns: repeat(2, 1fr); /* Two columns on larger screens */
        }
        .page-af88-cok__floating-buttons {
            width: auto;
            right: 20px;
            left: auto;
            bottom: 20px;
            flex-direction: column;
            gap: 10px;
            padding: 15px 10px;
            border-radius: 10px;
            align-items: center;
        }
        .page-af88-cok__float-btn {
            width: 160px; /* Fixed width for desktop floating buttons */
            margin: 0;
        }
    }

    @media (max-width: 768px) {
        .page-af88-cok__main-title {
            font-size: 1.8em;
        }
        .page-af88-cok__section-title {
            font-size: 1.6em;
        }
        .page-af88-cok__hero-description,
        .page-af88-cok__section-subtitle,
        .page-af88-cok__cta-description {
            font-size: 0.95em;
        }

        /* List item mobile responsiveness */
        .page-af88-cok__feature-list {
            grid-template-columns: 1fr;
        }
        .page-af88-cok__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important;
        }
        .page-af88-cok__feature-description {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* General padding adjustments for smaller screens */
        .page-af88-cok__hero-section,
        .page-af88-cok__game-categories,
        .page-af88-cok__promotions,
        .page-af88-cok__why-choose-us,
        .page-af88-cok__faq-section,
        .page-af88-cok__cta-section,
        .page-af88-cok__partners-section {
            padding: 30px 15px;
            margin-bottom: 15px;
        }

        .page-af88-cok__hero-actions,
        .page-af88-cok__cta-buttons {
            flex-direction: column;
            gap: 10px;
        }

        .page-af88-cok__btn {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-af88-cok__why-content {
            flex-direction: column;
            gap: 20px;
        }
        .page-af88-cok__why-image {
            width: 100%;
            margin: 0;
        }
        .page-af88-cok__why-text {
            width: 100%;
        }

        .page-af88-cok__category-grid,
        .page-af88-cok__promo-grid,
        .page-af88-cok__partners-grid,
        .page-af88-cok__payment-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .page-af88-cok__category-item,
        .page-af88-cok__promo-item,
        .page-af88-cok__partner-link,
        .page-af88-cok__payment-link {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-af88-cok__faq-question {
            padding: 12px 15px;
        }
        .page-af88-cok__faq-title {
            font-size: 1em;
        }
        .page-af88-cok__faq-answer {
            padding: 0 15px;
        }
        .page-af88-cok__faq-item.active .page-af88-cok__faq-answer {
            padding: 15px 15px !important;
        }

        .page-af88-cok__floating-buttons {
            padding: 8px 0;
        }
        .page-af88-cok__float-btn {
            font-size: 1em;
            padding: 10px 0;
        }
    }
  