
    :root {
        --primary-bg: #1a1a1a;
        --secondary-bg: #2a2a2a;
        --accent-color: #FFD700; /* Gold */
        --text-color-light: #f0f0f0;
        --text-color-dark: #333;
        --border-color: #444;
        --button-bg: #007bff;
        --button-hover-bg: #0056b3;
    }

    /* Base styles for the page */
    .page-678wip {
        font-family: 'Arial', sans-serif;
        color: var(--text-color-light);
        background-color: var(--primary-bg);
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-678wip__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-678wip__section-title {
        font-size: 2.5em;
        color: var(--accent-color);
        margin-bottom: 30px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .page-678wip__section-subtitle {
        font-size: 1.2em;
        color: var(--text-color-light);
        margin-bottom: 40px;
    }

    /* Hero Section */
    .page-678wip__hero-section {
        position: relative;
        padding-top: 10px; /* Small top padding, body handles header offset */
        padding-bottom: 60px;
        background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
        overflow: hidden;
    }

    .page-678wip__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
    }

    .page-678wip__hero-title {
        font-size: 3.5em;
        color: var(--accent-color);
        margin-bottom: 15px;
        font-weight: 900;
        line-height: 1.2;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    .page-678wip__hero-subtitle {
        font-size: 1.5em;
        color: var(--text-color-light);
        margin-bottom: 30px;
        font-weight: 300;
    }

    .page-678wip__hero-image {
        width: 100%;
        max-width: 800px; /* Product display image centered */
        height: auto;
        display: block;
        margin: 30px auto 0;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    /* Floating Buttons */
    .page-678wip__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-678wip__floating-button {
        background-color: var(--accent-color);
        color: var(--text-color-dark);
        border: none;
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-transform: uppercase;
    }

    .page-678wip__floating-button:hover {
        background-color: #e6c200;
        transform: translateY(-2px);
    }

    /* Game Categories */
    .page-678wip__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-678wip__game-card {
        background-color: var(--secondary-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
    }

    .page-678wip__game-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-678wip__game-card-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #000;
    }

    .page-678wip__game-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .page-678wip__game-card:hover .page-678wip__game-card-image {
        transform: scale(1.05);
    }

    .page-678wip__game-card-content {
        padding: 20px;
    }

    .page-678wip__game-card-title {
        font-size: 1.6em;
        color: var(--accent-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-678wip__game-card-description {
        font-size: 1em;
        color: var(--text-color-light);
        margin-bottom: 15px;
    }

    .page-678wip__game-card-button {
        display: inline-block;
        background-color: var(--button-bg);
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none; /* Ensure it's a button, not a link */
        cursor: pointer;
    }

    .page-678wip__game-card-button:hover {
        background-color: var(--button-hover-bg);
    }

    /* Promotions Section */
    .page-678wip__promotion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-678wip__promotion-card {
        background-color: var(--secondary-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-678wip__promotion-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-678wip__promotion-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }

    .page-678wip__promotion-content {
        padding: 20px;
        text-align: left;
    }

    .page-678wip__promotion-title {
        font-size: 1.8em;
        color: var(--accent-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-678wip__promotion-description {
        font-size: 1em;
        color: var(--text-color-light);
        margin-bottom: 15px;
    }

    /* Payment Methods & Game Providers */
    .page-678wip__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .page-678wip__logo-item {
        background-color: var(--secondary-bg);
        padding: 15px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease;
        min-height: 80px; /* Ensure sufficient height */
    }

    .page-678wip__logo-item:hover {
        transform: translateY(-5px);
    }

    .page-678wip__logo-item a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .page-678wip__logo-item img {
        max-width: 100%;
        max-height: 60px; /* Adjust as needed */
        height: auto;
        display: block;
    }
    

    /* FAQ Section */
    .page-678wip__faq-container {
        max-width: 800px;
        margin: 40px auto;
        text-align: left;
    }

    .page-678wip__faq-item {
        background-color: var(--secondary-bg);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-678wip__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 25px;
        cursor: pointer;
        user-select: none;
        font-size: 1.2em;
        font-weight: bold;
        color: var(--accent-color);
        background-color: #333;
        transition: background-color 0.3s ease;
    }

    .page-678wip__faq-question:hover {
        background-color: #444;
    }

    .page-678wip__faq-question h3 {
        margin: 0;
        color: var(--accent-color);
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-678wip__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--accent-color);
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-678wip__faq-item.active .page-678wip__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-678wip__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: var(--text-color-light);
        background-color: var(--secondary-bg);
    }

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

    .page-678wip__faq-answer p {
        margin: 0;
        padding-bottom: 10px;
    }
    .page-678wip__faq-answer p:last-child {
        padding-bottom: 0;
    }

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

        .page-678wip__section-title {
            font-size: 2em;
        }

        .page-678wip__hero-title {
            font-size: 2.5em;
        }

        .page-678wip__hero-subtitle {
            font-size: 1.2em;
        }

        .page-678wip__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            justify-content: space-around;
            bottom: 15px;
        }
        .page-678wip__floating-button {
            flex: 1;
            padding: 10px 15px;
            font-size: 1em;
        }

        .page-678wip__game-categories,
        .page-678wip__promotion-grid,
        .page-678wip__logo-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-678wip__game-card-image-wrapper,
        .page-678wip__promotion-image {
            height: 180px; /* Adjust height for smaller screens */
        }

        .page-678wip__game-card-title,
        .page-678wip__promotion-title {
            font-size: 1.4em;
        }

        .page-678wip__logo-item {
            min-height: 60px;
        }

        /* Images responsive */
        .page-678wip img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-678wip__hero-image {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        .page-678wip__game-card-image {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important; /* Allow height to adjust */
            box-sizing: border-box !important;
        }
        .page-678wip__promotion-image {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important; /* Allow height to adjust */
            box-sizing: border-box !important;
        }
        .page-678wip__logo-item img {
            max-width: 90% !important; /* Adjust for padding in logo item */
            height: auto !important;
            box-sizing: border-box !important;
        }

        /* List items mobile responsive */
        .page-678wip__game-categories > *,
        .page-678wip__promotion-grid > *,
        .page-678wip__logo-grid > * {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-678wip__faq-answer {
            padding: 0 15px; /* Adjust padding for mobile */
        }
        .page-678wip__faq-item.active .page-678wip__faq-answer {
            padding: 15px !important; /* Adjust padding for mobile */
        }
        .page-678wip__faq-question {
            padding: 15px;
            font-size: 1.1em;
        }
    }
  