
    /* CSS Styles for page-68gbweb */
    :root {
        --page-68gbweb-primary-color: #f7b32b; /* Gold/Orange */
        --page-68gbweb-secondary-color: #2c3e50; /* Dark Blue */
        --page-68gbweb-accent-color: #e74c3c; /* Red */
        --page-68gbweb-text-color: #ecf0f1; /* Light Gray */
        --page-68gbweb-background-dark: #1a1a2e; /* Dark background */
        --page-68gbweb-background-light: #2a2a4a; /* Slightly lighter dark background */
        --page-68gbweb-border-color: #34495e; /* Border for elements */
        --page-68gbweb-font-family: 'Arial', sans-serif;
    }

    .page-68gbweb {
        font-family: var(--page-68gbweb-font-family);
        color: var(--page-68gbweb-text-color);
        background-color: var(--page-68gbweb-background-dark);
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-68gbweb h1,
    .page-68gbweb h2,
    .page-68gbweb h3,
    .page-68gbweb h4 {
        color: var(--page-68gbweb-primary-color);
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-68gbweb p {
        margin-bottom: 15px;
        color: var(--page-68gbweb-text-color);
    }

    .page-68gbweb strong {
        color: var(--page-68gbweb-primary-color);
    }

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

    /* Hero Section */
    .page-68gbweb__hero-section {
        position: relative;
        text-align: center;
        padding: 10px 0 50px; /* Added padding-top for fixed header */
        background-color: var(--page-68gbweb-background-light);
        overflow: hidden;
    }

    .page-68gbweb__hero-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-68gbweb__hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-68gbweb__hero-content {
        position: relative;
        z-index: 1;
        padding: 0 20px;
    }

    .page-68gbweb__hero-title {
        font-size: 2.5em;
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        color: var(--page-68gbweb-primary-color);
    }

    .page-68gbweb__hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 20px;
        color: var(--page-68gbweb-text-color);
    }

    /* Floating Login Button */
    .page-68gbweb__floating-button {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--page-68gbweb-accent-color);
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.2em;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        transition: background-color 0.3s ease, transform 0.3s ease;
        white-space: nowrap;
        max-width: 90%;
        box-sizing: border-box;
    }

    .page-68gbweb__floating-button:hover {
        background-color: #c0392b; /* Darker red */
        transform: translateX(-50%) translateY(-5px);
    }

    /* Section Styling */
    .page-68gbweb__section {
        padding: 40px 0;
        background-color: var(--page-68gbweb-background-light);
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-68gbweb__section:nth-child(even) {
        background-color: var(--page-68gbweb-background-dark);
    }

    .page-68gbweb__section-title {
        text-align: center;
        font-size: 2em;
        margin-bottom: 30px;
        color: var(--page-68gbweb-primary-color);
    }

    /* Game Categories */
    .page-68gbweb__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding: 20px 0;
    }

    .page-68gbweb__game-item {
        background-color: var(--page-68gbweb-background-dark);
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid var(--page-68gbweb-border-color);
    }

    .page-68gbweb__game-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .page-68gbweb__game-icon-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 10px;
    }
    .page-68gbweb__game-icon {
        width: 100%;
        max-width: 200px; /* Enforce min size requirement */
        height: auto;
        min-height: 200px; /* Enforce min size requirement */
        object-fit: contain;
        margin: 0 auto 10px;
        border-radius: 8px;
        display: block; /* Ensure it's a block element for margin auto to work */
    }

    .page-68gbweb__game-name {
        font-size: 1.1em;
        color: var(--page-68gbweb-text-color);
        font-weight: bold;
    }

    /* Instructions List */
    .page-68gbweb__instruction-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-68gbweb__instruction-item {
        background-color: var(--page-68gbweb-background-dark);
        border: 1px solid var(--page-68gbweb-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        padding: 20px;
        display: flex;
        align-items: flex-start;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-68gbweb__instruction-step {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-68gbweb-primary-color);
        margin-right: 15px;
        flex-shrink: 0;
    }

    .page-68gbweb__instruction-content h3 {
        margin-top: 0;
        color: var(--page-68gbweb-primary-color);
        font-size: 1.3em;
    }

    .page-68gbweb__instruction-content p {
        margin-bottom: 0;
    }

    /* Promotional Cards */
    .page-68gbweb__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .page-68gbweb__promo-card {
        background-color: var(--page-68gbweb-background-dark);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border: 1px solid var(--page-68gbweb-border-color);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-68gbweb__promo-card:hover {
        transform: translateY(-5px);
    }

    .page-68gbweb__promo-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .page-68gbweb__promo-image {
        width: 100%;
        max-width: 100%;
        height: 200px; /* Fixed height for promo images */
        min-height: 200px; /* Enforce min size requirement */
        object-fit: cover;
        display: block;
    }

    .page-68gbweb__promo-content {
        padding: 20px;
    }

    .page-68gbweb__promo-title {
        font-size: 1.4em;
        margin-bottom: 10px;
        color: var(--page-68gbweb-primary-color);
    }

    .page-68gbweb__promo-description {
        font-size: 0.95em;
        color: var(--page-68gbweb-text-color);
        margin-bottom: 15px;
    }

    .page-68gbweb__promo-button {
        display: inline-block;
        background-color: var(--page-68gbweb-accent-color);
        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-68gbweb__promo-button:hover {
        background-color: #c0392b;
    }

    /* Why Choose Section */
    .page-68gbweb__feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 20px 0;
    }

    .page-68gbweb__feature-item {
        background-color: var(--page-68gbweb-background-dark);
        border-radius: 8px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--page-68gbweb-border-color);
    }

    .page-68gbweb__feature-icon {
        color: var(--page-68gbweb-primary-color);
        font-size: 3em;
        margin-bottom: 15px;
    }

    .page-68gbweb__feature-title {
        font-size: 1.3em;
        color: var(--page-68gbweb-primary-color);
        margin-bottom: 10px;
    }

    .page-68gbweb__feature-description {
        font-size: 0.95em;
        color: var(--page-68gbweb-text-color);
    }

    /* FAQ Section */
    .page-68gbweb__faq-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-68gbweb__faq-item {
        background-color: var(--page-68gbweb-background-dark);
        border: 1px solid var(--page-68gbweb-border-color);
        border-radius: 8px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .page-68gbweb__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: var(--page-68gbweb-background-light);
        color: var(--page-68gbweb-primary-color);
        font-weight: bold;
        font-size: 1.1em;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-68gbweb__faq-question:hover {
        background-color: #34495e; /* Slightly lighter dark blue */
    }

    .page-68gbweb__faq-question h3 {
        margin: 0;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
        text-align: left;
    }

    .page-68gbweb__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--page-68gbweb-primary-color);
        margin-left: 10px;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
        transition: transform 0.3s ease;
    }

    .page-68gbweb__faq-item.active .page-68gbweb__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
        /* content: "−"; */ /* This is CSS content property, JS will handle textContent */
    }

    .page-68gbweb__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        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: var(--page-68gbweb-background-dark);
        color: var(--page-68gbweb-text-color);
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-68gbweb__hero-section {
            padding-top: 10px; /* Adjust for mobile header */
        }

        .page-68gbweb__hero-title {
            font-size: 2em;
        }

        .page-68gbweb__hero-subtitle {
            font-size: 1em;
        }

        .page-68gbweb__section-title {
            font-size: 1.8em;
        }

        .page-68gbweb__game-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        }

        .page-68gbweb__game-icon-container,
        .page-68gbweb__promo-image-container,
        .page-68gbweb__hero-image-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
        .page-68gbweb__game-icon,
        .page-68gbweb__promo-image,
        .page-68gbweb__hero-image {
            max-width: 100% !important;
            height: auto !important;
            min-height: 200px !important; /* Ensure min height for all images */
        }
        .page-68gbweb__promo-image {
             height: 200px !important; /* Maintain fixed height for promo images on mobile */
        }


        .page-68gbweb__instruction-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 15px;
        }

        .page-68gbweb__instruction-step {
            margin-right: 0;
            margin-bottom: 10px;
        }

        .page-68gbweb__promo-grid,
        .page-68gbweb__feature-grid {
            grid-template-columns: 1fr;
        }

        .page-68gbweb__floating-button {
            width: calc(100% - 40px);
            padding: 12px 20px;
            font-size: 1em;
        }

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