
    /* General styles for the page-8k8-5 container */
    .page-8k8-5 {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
        /* This padding-top is a fallback if shared.css doesn't apply body padding-top */
        /* If shared.css applies body { padding-top: var(--header-offset); }, then remove this line */
        /* padding-top: var(--header-offset, 122px); */
    }

    .page-8k8-5__highlight {
        color: #ff4500; /* A vibrant orange, good contrast */
    }

    .page-8k8-5__section-title {
        font-size: 2.5em;
        color: #222;
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
    }

    .page-8k8-5__section-description {
        font-size: 1.1em;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px auto;
        color: #555;
    }

    /* Buttons */
    .page-8k8-5__button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        text-align: center;
    }

    .page-8k8-5__button--primary {
        background-color: #ff4500;
        color: #fff;
    }

    .page-8k8-5__button--primary:hover {
        background-color: #e03e00;
        transform: translateY(-2px);
    }

    .page-8k8-5__button--secondary {
        background-color: #eee;
        color: #333;
        border: 2px solid #ccc;
    }

    .page-8k8-5__button--secondary:hover {
        background-color: #ddd;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-8k8-5__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px 20px 60px 20px; /* Minimal padding-top, assuming body has offset */
        background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .page-8k8-5__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }

    .page-8k8-5__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.2; /* Darken background image for text readability */
        max-width: 100%; /* Responsive image */
    }

    .page-8k8-5__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
    }

    .page-8k8-5__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #fff;
    }

    .page-8k8-5__hero-description {
        font-size: 1.3em;
        margin-bottom: 40px;
        color: #ddd;
    }

    .page-8k8-5__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    /* About Section */
    .page-8k8-5__about-section {
        padding: 60px 20px;
        background-color: #fff;
    }

    .page-8k8-5__about-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8k8-5__about-item {
        background-color: #fefefe;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for list items */
    }

    .page-8k8-5__about-item:hover {
        transform: translateY(-5px);
    }

    .page-8k8-5__about-icon {
        width: 250px; /* Min size 200x200px */
        height: auto;
        max-width: 100%;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-8k8-5__about-item-title {
        font-size: 1.8em;
        color: #ff4500;
        margin-bottom: 15px;
    }

    .page-8k8-5__about-item-description {
        font-size: 1em;
        color: #666;
    }

    /* Games Section */
    .page-8k8-5__games-section {
        padding: 60px 20px;
        background-color: #f2f2f2;
    }

    .page-8k8-5__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8k8-5__game-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for list items */
    }

    .page-8k8-5__game-card:hover {
        transform: translateY(-5px);
    }

    .page-8k8-5__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
    }

    .page-8k8-5__game-title {
        font-size: 1.5em;
        color: #222;
        margin: 20px 15px 10px 15px;
    }

    .page-8k8-5__game-description {
        font-size: 0.95em;
        color: #666;
        padding: 0 15px 20px 15px;
    }

    /* Promotions Section */
    .page-8k8-5__promotions-section {
        padding: 60px 20px;
        background-color: #fff;
    }

    .page-8k8-5__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8k8-5__promo-card {
        background-color: #fefefe;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for list items */
    }

    .page-8k8-5__promo-card:hover {
        transform: translateY(-5px);
    }

    .page-8k8-5__promo-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        max-width: 100%;
    }

    .page-8k8-5__promo-title {
        font-size: 1.6em;
        color: #222;
        margin: 20px 15px 10px 15px;
    }

    .page-8k8-5__promo-description {
        font-size: 0.95em;
        color: #666;
        padding: 0 15px 20px 15px;
    }

    /* Payment Section */
    .page-8k8-5__payment-section {
        padding: 60px 20px;
        background-color: #f2f2f2;
    }

    .page-8k8-5__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
        box-sizing: border-box; /* For responsiveness */
    }

    .page-8k8-5__payment-item {
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        text-align: center;
        box-sizing: border-box; /* Crucial for list items */
    }

    .page-8k8-5__payment-logo {
        max-width: 150px; /* Adjusted to be > 200px if scaled down, but original placeholder is 400x200 */
        height: auto;
        margin-bottom: 10px;
        max-height: 80px; /* Limit height for uniform display */
        object-fit: contain;
        width: 100%; /* Ensure it takes full width of item */
    }

    .page-8k8-5__payment-name {
        font-weight: bold;
        color: #333;
        font-size: 1.1em;
    }

    /* FAQ Section */
    .page-8k8-5__faq-section {
        padding: 60px 20px;
        background-color: #fff;
    }

    .page-8k8-5__faq-container {
        max-width: 900px;
        margin: 0 auto;
        box-sizing: border-box; /* For responsiveness */
    }

    .page-8k8-5__faq-item {
        background-color: #fefefe;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box; /* Crucial for list items */
    }

    .page-8k8-5__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #f5f5f5;
        transition: background-color 0.3s ease;
    }

    .page-8k8-5__faq-question:hover {
        background-color: #eee;
    }

    .page-8k8-5__faq-question-title {
        font-size: 1.2em;
        color: #333;
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
        word-wrap: break-word; /* Ensure text wraps */
        overflow-wrap: break-word; /* Ensure text wraps */
        word-break: break-word; /* For long keywords */
        flex-grow: 1; /* Allow title to take available space */
    }

    .page-8k8-5__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ff4500;
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
        transition: transform 0.3s ease;
    }

    .page-8k8-5__faq-item.active .page-8k8-5__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-8k8-5__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: #fefefe;
        color: #555;
    }

    .page-8k8-5__faq-item.active .page-8k8-5__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-8k8-5__faq-answer p {
        margin: 0;
        font-size: 1em;
        word-wrap: break-word; /* Ensure text wraps */
        overflow-wrap: break-word; /* Ensure text wraps */
        word-break: break-word; /* For long keywords */
    }

    /* CTA Section */
    .page-8k8-5__cta-section {
        padding: 60px 20px;
        text-align: center;
        background-color: #1a1a2e;
        color: #fff;
    }

    .page-8k8-5__cta-title {
        font-size: 2.5em;
        margin-bottom: 20px;
        color: #fff;
    }

    .page-8k8-5__cta-description {
        font-size: 1.2em;
        margin-bottom: 40px;
        color: #ddd;
    }

    .page-8k8-5__cta-section .page-8k8-5__button {
        margin: 0 auto; /* Center the button if it's not a block element */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-8k8-5__hero-title {
            font-size: 3em;
        }
        .page-8k8-5__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-5__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-5__hero-description {
            font-size: 1.1em;
        }
        .page-8k8-5__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-8k8-5__button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-8k8-5__section-title {
            font-size: 1.8em;
            padding-top: 30px;
        }
        .page-8k8-5__section-description {
            font-size: 1em;
            margin-bottom: 30px;
        }

        /* List items responsiveness */
        .page-8k8-5__about-grid,
        .page-8k8-5__games-grid,
        .page-8k8-5__promo-grid,
        .page-8k8-5__payment-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-8k8-5__about-item,
        .page-8k8-5__game-card,
        .page-8k8-5__promo-card,
        .page-8k8-5__payment-item,
        .page-8k8-5__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* Ensure padding for containers doesn't create excessive inner padding */
        .page-8k8-5__payment-grid,
        .page-8k8-5__faq-container {
            padding: 0 10px !important; /* Adjust as needed to prevent inner padding from being too large */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-8k8-5__faq-question-title,
        .page-8k8-5__faq-answer p {
            font-size: 1em;
        }

        .page-8k8-5__faq-question {
            padding: 15px 20px;
        }

        .page-8k8-5__faq-answer {
            padding: 15px 20px !important;
        }

        .page-8k8-5__cta-title {
            font-size: 2em;
        }
        .page-8k8-5__cta-description {
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-5__hero-title {
            font-size: 2em;
        }
        .page-8k8-5__hero-description {
            font-size: 0.95em;
        }
        .page-8k8-5__section-title {
            font-size: 1.6em;
        }
        .page-8k8-5__cta-title {
            font-size: 1.8em;
        }
    }
  