
    :root {
    --primary-color: #ffcc00; /* Gold/Yellow for gaming */
    --secondary-color: #333333; /* Dark grey */
    --accent-color: #e44d26; /* Orange */
    --text-light: #f0f0f0;
    --text-dark: #1a1a1a;
    --bg-dark: #121212;
    --bg-light: #1e1e1e;
    --border-color: #444444;
    --header-offset: 122px; /* Default value, will be overridden by shared.css if present */
}

/* Base styles for the page container */
.page-game-b-i {
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.6;
    padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't set it */
}

/* General section styling */
.page-game-b-i__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-game-b-i__section-title strong {
    color: var(--primary-color); /* Ensure strong tag also has primary color */
}

.page-game-b-i__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

.page-game-b-i__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    padding: 10px 20px 60px 20px; /* 10px top padding for hero as body handles header offset */
    background: linear-gradient(135deg, var(--bg-dark), #0a0a0a);
    overflow: hidden;
}

.page-game-b-i__hero-image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 20px;
}

.page-game-b-i__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    display: block; /* Remove extra space below image */
    margin: 0 auto;
}

.page-game-b-i__hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 0 15px;
}

.page-game-b-i__hero-title {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-game-b-i__hero-description {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-b-i__hero-description strong {
    color: var(--primary-color);
}

.page-game-b-i__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-game-b-i__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-game-b-i__hero-button--register {
    background-color: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-game-b-i__hero-button--register:hover {
    background-color: #ffdb4d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-game-b-i__hero-button--login {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-game-b-i__hero-button--login:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

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

.page-game-b-i__floating-button {
    display: block;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-b-i__floating-button--register {
    background-color: var(--accent-color);
    color: #ffffff;
}

.page-game-b-i__floating-button--register:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.page-game-b-i__floating-button--login {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.page-game-b-i__floating-button--login:hover {
    background-color: #ffdb4d;
    transform: translateY(-2px);
}

/* Game Categories Section */
.page-game-b-i__game-categories {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

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

.page-game-b-i__category-item {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-game-b-i__category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-b-i__category-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-game-b-i__category-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin: 20px 15px 10px 15px;
    flex-grow: 1;
}

.page-game-b-i__category-text {
    font-size: 0.95em;
    color: var(--text-light);
    padding: 0 15px 20px 15px;
}

/* Features Section */
.page-game-b-i__features-section {
    padding: 60px 20px;
    background-color: var(--bg-dark);
}

.page-game-b-i__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-game-b-i__feature-item {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-b-i__feature-item:hover {
    transform: translateY(-5px);
}

/* Adjusting feature icon size to meet 200x200px minimum */
.page-game-b-i__feature-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: none; /* No color filters */
}


.page-game-b-i__feature-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-game-b-i__feature-description {
    font-size: 0.95em;
    color: var(--text-light);
}

/* Providers Section */
.page-game-b-i__providers-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.page-game-b-i__providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for logos */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.page-game-b-i__provider-item {
    text-align: center;
    background-color: var(--secondary-color);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    width: 100%; /* Ensure it takes full grid column width */
    max-width: 200px; /* Max width for individual logo item */
    box-sizing: border-box;
}

.page-game-b-i__provider-item:hover {
    transform: translateY(-3px);
}

/* Adjusting provider logo size to meet 200x200px minimum */
.page-game-b-i__provider-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

.page-game-b-i__provider-name {
    font-size: 0.9em;
    color: var(--text-light);
    font-weight: bold;
}

/* Payment Methods Section */
.page-game-b-i__payment-methods {
    padding: 60px 20px;
    background-color: var(--bg-dark);
}

.page-game-b-i__payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for logos */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.page-game-b-i__payment-item {
    text-align: center;
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    width: 100%;
    max-width: 200px;
    box-sizing: border-box;
}

.page-game-b-i__payment-item:hover {
    transform: translateY(-3px);
}

.page-game-b-i__payment-logo {
    width: 200px; /* Ensure 200x200px minimum */
    height: 200px; /* Ensure 200x200px minimum */
    object-fit: contain;
    margin-bottom: 10px;
}

.page-game-b-i__payment-name {
    font-size: 0.9em;
    color: var(--text-light);
    font-weight: bold;
}

/* FAQ Section */
.page-game-b-i__faq-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.page-game-b-i__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-game-b-i__faq-item {
    background-color: var(--secondary-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-game-b-i__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    user-select: none;
}

.page-game-b-i__faq-question:hover {
    background-color: #444444;
}

.page-game-b-i__faq-question-text {
    margin: 0;
    font-size: 1em;
    color: var(--primary-color);
    pointer-events: none; /* Crucial for click handling */
}

.page-game-b-i__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    pointer-events: none; /* Crucial for click handling */
}

.page-game-b-i__faq-item.active .page-game-b-i__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-game-b-i__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial 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: var(--text-light);
}

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

.page-game-b-i__faq-answer-text {
    margin: 0;
    font-size: 1em;
    word-wrap: break-word; /* Ensure text wraps */
    overflow-wrap: break-word;
    word-break: break-word;
}


/* Call to Action Section */
.page-game-b-i__cta-section {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--bg-dark);
}

.page-game-b-i__cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(228, 77, 38, 0.4);
    margin-top: 30px;
}

.page-game-b-i__cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(228, 77, 38, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-b-i__hero-title {
        font-size: 3em;
    }
    .page-game-b-i__hero-description {
        font-size: 1.1em;
    }
    .page-game-b-i__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-game-b-i {
        padding-top: var(--header-offset, 100px) !important; /* Adjust if header is smaller on mobile */
    }
    .page-game-b-i__hero-section {
        padding: 10px 15px 40px 15px;
    }
    .page-game-b-i__hero-title {
        font-size: 2.5em;
    }
    .page-game-b-i__hero-description {
        font-size: 1em;
    }
    .page-game-b-i__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-b-i__hero-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-game-b-i__category-grid,
    .page-game-b-i__features-grid,
    .page-game-b-i__providers-grid,
    .page-game-b-i__payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* List item responsive requirements */
    .page-game-b-i__category-item,
    .page-game-b-i__feature-item,
    .page-game-b-i__provider-item,
    .page-game-b-i__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-game-b-i__category-item p,
    .page-game-b-i__feature-item p,
    .page-game-b-i__provider-item p,
    .page-game-b-i__payment-item p,
    .page-game-b-i__faq-answer-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-game-b-i__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-game-b-i__faq-answer {
        padding: 0 20px;
    }
    .page-game-b-i__faq-item.active .page-game-b-i__faq-answer {
        padding: 15px 20px !important;
    }

    .page-game-b-i__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    .page-game-b-i__floating-button {
        padding: 10px 18px;
        font-size: 0.9em;
    }

    /* Image responsive optimization */
    .page-game-b-i__hero-image,
    .page-game-b-i__category-image,
    .page-game-b-i__feature-icon,
    .page-game-b-i__provider-logo,
    .page-game-b-i__payment-logo {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-game-b-i__hero-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-game-b-i__hero-title {
        font-size: 2em;
    }
    .page-game-b-i__section-title {
        font-size: 1.8em;
    }
    .page-game-b-i__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-b-i__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}
  