
    /* General styles for the page-c-b-ng scope */
.page-c-b-ng {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
    background-color: #1a1a2e;
    line-height: 1.6;
    padding-bottom: 80px; /* Space for floating buttons */
}

/* Fixed navbar spacing: Assuming body padding-top is handled by shared.css */
.page-c-b-ng__hero-section {
    padding-top: 10px; /* Small decorative padding */
}

.page-c-b-ng__section-title {
    color: #ffffff;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-c-b-ng__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #e94560;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-c-b-ng__strong-text {
    color: #e94560;
    font-weight: bold;
}

/* Hero Section */
.page-c-b-ng__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    overflow: hidden;
}

.page-c-b-ng__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-c-b-ng__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-c-b-ng__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-c-b-ng__hero-button {
    display: inline-block;
    background-color: #e94560;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.page-c-b-ng__hero-button:hover {
    background-color: #d63c55;
    transform: translateY(-3px);
}

.page-c-b-ng__hero-image-wrapper {
    margin-top: 50px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-c-b-ng__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Introduction Section */
.page-c-b-ng__introduction-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-c-b-ng__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-c-b-ng__feature-item {
    background-color: #0f3460;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box; /* Crucial for list-like items */
}

.page-c-b-ng__feature-item:hover {
    transform: translateY(-10px);
    background-color: #1a1a2e;
}

.page-c-b-ng__feature-icon {
    width: 100px; /* Display size */
    height: 100px; /* Display size */
    margin-bottom: 20px;
    display: inline-block;
    max-width: 100%; /* Responsive image */
    height: auto; /* Responsive image */
}

.page-c-b-ng__feature-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-c-b-ng__feature-description {
    font-size: 1em;
    color: #e0e0e0;
}

/* Games Section */
.page-c-b-ng__games-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-c-b-ng__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-c-b-ng__game-card {
    background-color: #0f3460;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Crucial for list-like items */
}

.page-c-b-ng__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

.page-c-b-ng__game-title {
    font-size: 1.5em;
    color: #ffffff;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-c-b-ng__game-description {
    font-size: 0.95em;
    color: #e0e0e0;
    padding: 0 15px 20px;
}

/* Promotions Section */
.page-c-b-ng__promotions-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-c-b-ng__promotions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-c-b-ng__promotion-item {
    background-color: #0f3460;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    box-sizing: border-box; /* Crucial for list-like items */
}

.page-c-b-ng__promotion-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    max-width: 100%; /* Responsive image */
}

.page-c-b-ng__promotion-title {
    font-size: 1.6em;
    color: #ffffff;
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-c-b-ng__promotion-description {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 25px;
    padding: 0 15px;
}

.page-c-b-ng__promotion-button {
    display: inline-block;
    background-color: #e94560;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.page-c-b-ng__promotion-button:hover {
    background-color: #d63c55;
}

/* Payment Section & Providers Section (similar grid structure) */
.page-c-b-ng__payment-section,
.page-c-b-ng__providers-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-c-b-ng__payment-grid,
.page-c-b-ng__providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.page-c-b-ng__payment-item,
.page-c-b-ng__provider-item {
    background-color: #0f3460;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-sizing: border-box; /* Crucial for list-like items */
}

.page-c-b-ng__payment-logo,
.page-c-b-ng__provider-logo {
    max-width: 100%;
    max-height: 60px;
    height: auto;
    object-fit: contain;
    display: block; /* Ensure image behaves as a block element */
}

/* FAQ Section */
.page-c-b-ng__faq-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-c-b-ng__faq-container {
    margin-top: 40px;
}

.page-c-b-ng__faq-item {
    background-color: #0f3460;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Crucial for list-like items */
}

.page-c-b-ng__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-c-b-ng__faq-question:hover {
    background-color: #1a1a2e;
}

.page-c-b-ng__faq-title {
    margin: 0;
    flex-grow: 1;
    pointer-events: none; /* Crucial for FAQ JS */
    color: #ffffff; /* Ensure contrast */
}

.page-c-b-ng__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 20px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Crucial for FAQ JS */
    color: #e94560; /* Ensure contrast */
}

.page-c-b-ng__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;
}

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

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

.page-c-b-ng__faq-text {
    margin: 0;
    color: #e0e0e0;
    padding-bottom: 10px;
}

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

.page-c-b-ng__floating-button {
    display: block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #ffffff; /* Ensure text color is white */
}

.page-c-b-ng__floating-button--register {
    background-color: #e94560;
}

.page-c-b-ng__floating-button--register:hover {
    background-color: #d63c55;
    transform: translateY(-3px);
}

.page-c-b-ng__floating-button--login {
    background-color: #0f3460;
    border: 2px solid #e94560;
}

.page-c-b-ng__floating-button--login:hover {
    background-color: #1a1a2e;
    transform: translateY(-3px);
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-c-b-ng__hero-title {
        font-size: 2.8em;
    }
    .page-c-b-ng__hero-description {
        font-size: 1.1em;
    }
    .page-c-b-ng__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-c-b-ng {
        padding-bottom: 120px; /* More space for mobile floating buttons */
    }
    .page-c-b-ng__hero-section {
        padding: 60px 15px;
    }
    .page-c-b-ng__hero-title {
        font-size: 2.2em;
    }
    .page-c-b-ng__hero-description {
        font-size: 1em;
    }
    .page-c-b-ng__hero-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-c-b-ng__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 40px;
    }

    /* List item responsiveness for all grid/flex containers */
    .page-c-b-ng__features-grid,
    .page-c-b-ng__games-grid,
    .page-c-b-ng__promotions-list,
    .page-c-b-ng__payment-grid,
    .page-c-b-ng__providers-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    /* Ensure all list-like items take full width and handle box-sizing */
    .page-c-b-ng__feature-item,
    .page-c-b-ng__game-card,
    .page-c-b-ng__promotion-item,
    .page-c-b-ng__payment-item,
    .page-c-b-ng__provider-item,
    .page-c-b-ng__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important; /* Text wrapping */
        overflow-wrap: break-word !important;
    }
    .page-c-b-ng__game-card {
        padding: 0 !important; /* Game card has image, adjust padding inside */
    }
    .page-c-b-ng__game-image {
        height: 180px;
    }
    .page-c-b-ng__promotion-image {
        height: 200px;
    }
    .page-c-b-ng__game-title,
    .page-c-b-ng__promotion-title {
        font-size: 1.3em;
    }
    .page-c-b-ng__game-description,
    .page-c-b-ng__promotion-description {
        font-size: 0.9em;
    }

    .page-c-b-ng__payment-item,
    .page-c-b-ng__provider-item {
        height: 80px;
        padding: 15px !important;
    }

    .page-c-b-ng__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-c-b-ng__faq-toggle {
        font-size: 1.3em;
    }
    .page-c-b-ng__faq-item.active .page-c-b-ng__faq-answer {
        padding: 15px 20px !important;
    }
    .page-c-b-ng__faq-text {
        font-size: 0.95em;
    }

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

@media (max-width: 480px) {
    .page-c-b-ng__hero-title {
        font-size: 1.8em;
    }
    .page-c-b-ng__hero-description {
        font-size: 0.9em;
    }
    .page-c-b-ng__hero-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-c-b-ng__section-title {
        font-size: 1.5em;
    }
    .page-c-b-ng__feature-title {
        font-size: 1.5em;
    }
    .page-c-b-ng__floating-button {
        font-size: 0.9em;
        padding: 12px 8px;
    }
}
  