.page-bnc {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif; /* Roboto-like */
    padding-bottom: 40px; /* Ensure some space before footer */
}

/* Section Spacing */
.page-bnc__section-spacing {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-bnc__section-spacing {
        padding: 30px 15px;
    }
}

/* Hero Section - Main Visual for non-index page */
.page-bnc__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding as per rule */
    background-color: #100224; /* Deep purple background */
}

.page-bnc__hero-visual {
    width: 100%;
    max-width: 1200px; /* Constrain max width for desktop */
    margin-bottom: 20px;
}

.page-bnc__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 16/9; /* Maintain aspect ratio for hero-like image */
}

.page-bnc__hero-content {
    max-width: 800px;
    padding: 0 20px 40px;
}

.page-bnc__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2C14E; /* Primary color for H1 */
    margin-bottom: 15px;
}

.page-bnc__intro-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF6D6;
}

/* CTA Button */
.page-bnc__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for bright button */
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4); /* Glow effect */
    border: none;
    cursor: pointer;
}

.page-bnc__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-bnc__cta-button--small {
    padding: 12px 25px;
    font-size: 1em;
}

.page-bnc__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Section Titles */
.page-bnc__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-bnc__section-title--gradient {
    background: linear-gradient(90deg, #F2C14E, #FFD36B); /* Gold to Orange gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for non-webkit browsers */
}

/* Content Wrapper */
.page-bnc__content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

.page-bnc__content-wrapper p {
    margin-bottom: 15px;
}

/* Features Grid */
.page-bnc__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-bnc__feature-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-bnc__feature-item img {
    width: 100%;
    height: auto; /* Ensure height is auto for responsiveness */
    min-height: 200px; /* Enforce min height for content images */
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block; /* Ensure no extra space below image */
    aspect-ratio: 4/3; /* Common aspect ratio for card images */
}

.page-bnc__feature-item h3 {
    color: #FFD36B; /* Secondary color for feature titles */
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-bnc__feature-item p {
    font-size: 0.95em;
    color: #FFF6D6;
}

/* Game Showcase Grid */
.page-bnc__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-bnc__game-card {
    display: block;
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bnc__game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.5);
}

.page-bnc__game-card img {
    width: 100%;
    height: auto; /* Ensure height is auto for responsiveness */
    min-height: 200px; /* Enforce min height for content images */
    max-width: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3; /* Common aspect ratio for card images */
}

/* How to Play Steps */
.page-bnc__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.page-bnc__steps-list li {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-bnc__steps-list li h3 {
    color: #FFD36B;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.page-bnc__steps-list li p {
    font-size: 0.95em;
    color: #FFF6D6;
}

/* Why Choose Section */
.page-bnc__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-bnc__benefit-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-bnc__benefit-title {
    color: #F2C14E;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-bnc__benefit-item p {
    font-size: 0.95em;
    color: #FFF6D6;
}

/* Call to Action Section */
.page-bnc__call-to-action-section {
    text-align: center;
    background-color: #100224; /* Deep purple background */
    padding: 60px 20px;
    border-radius: 10px;
    margin-top: 40px;
}

.page-bnc__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF6D6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-bnc__main-title {
        font-size: 2.5em;
    }
    .page-bnc__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-bnc__main-title {
        font-size: clamp(1.8em, 6vw, 2.2em); /* Clamp for H1 */
    }
    .page-bnc__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-bnc__hero-visual img,
    .page-bnc__feature-item img,
    .page-bnc__game-card img {
        max-width: 100%;
        height: auto; /* Ensure height is auto for responsiveness */
        min-height: 200px; /* Maintain minimum size */
        object-fit: cover;
    }
    .page-bnc__features-grid,
    .page-bnc__games-grid,
    .page-bnc__steps-list,
    .page-bnc__benefits-grid {
        grid-template-columns: 1fr; /* Single column layout on mobile */
    }
    .page-bnc__feature-item,
    .page-bnc__game-card,
    .page-bnc__steps-list li,
    .page-bnc__benefit-item {
        padding: 20px;
    }
    .page-bnc__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-bnc__cta-button--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}

@media (max-width: 549px) {
    .page-bnc__section-spacing {
        padding: 20px 10px;
    }
    .page-bnc__main-title {
        font-size: clamp(1.6em, 7vw, 2em);
    }
    .page-bnc__section-title {
        font-size: 1.6em;
    }
    .page-bnc__hero-content {
        padding: 0 10px 30px;
    }
}

/* Ensure content area images are never too small via CSS */
.page-bnc img {
    min-width: 200px; /* Global minimum width for content images */
    min-height: 200px; /* Global minimum height for content images */
}

/* For smaller screens, ensure responsiveness without shrinking below 200px */
@media (max-width: 768px) {
    .page-bnc img {
        max-width: 100%;
        height: auto;
    }
}