/* CSS for page-bingoplus-bingo-poker-slot */:root {    --primary-color: #FFD700; /* Gold */    --secondary-color: #007bff; /* Blue */    --text-color: #333;    --light-text-color: #555;    --background-color: #f8f9fa;    --dark-background: #212529;    --white: #fff;    --dark-grey: #6c757d;    --border-color: #dee2e6;    --header-offset: 122px; /* Default value, should be provided by shared.css */}body {    padding-top: var(--header-offset); /* Ensure content starts below header */}.page-bingoplus-bingo-poker-slot {    font-family: 'Arial', sans-serif;    color: var(--text-color);    line-height: 1.6;    background-color: var(--background-color);    overflow-x: hidden; /* Prevent horizontal scroll from padding */}.page-bingoplus-bingo-poker-slot section {    padding: 60px 20px;    margin-bottom: 20px;    text-align: center;    max-width: 1200px;    margin-left: auto;    margin-right: auto;    box-sizing: border-box;}.page-bingoplus-bingo-poker-slot h1,.page-bingoplus-bingo-poker-slot h2 {    color: var(--dark-background);    margin-bottom: 30px;    font-weight: 700;}.page-bingoplus-bingo-poker-slot h3 {    color: var(--dark-background);    margin-bottom: 15px;    font-weight: 600;}.page-bingoplus-bingo-poker-slot p {    margin-bottom: 20px;    color: var(--light-text-color);}.page-bingoplus-bingo-poker-slot__keyword {    color: var(--secondary-color);    font-weight: bold;}/* Buttons */.page-bingoplus-bingo-poker-slot__hero-button,.page-bingoplus-bingo-poker-slot__quick-access-button,.page-bingoplus-bingo-poker-slot__game-category-button,.page-bingoplus-bingo-poker-slot__promo-card-button,.page-bingoplus-bingo-poker-slot__contact-button,.page-bingoplus-bingo-poker-slot__blog-card-link {    display: inline-block;    padding: 12px 25px;    border-radius: 8px;    text-decoration: none;    font-weight: bold;    transition: background-color 0.3s ease, transform 0.3s ease;    cursor: pointer;    text-align: center;    white-space: nowrap;    box-sizing: border-box;    margin: 10px 5px;}.page-bingoplus-bingo-poker-slot__hero-button--primary,.page-bingoplus-bingo-poker-slot__quick-access-button,.page-bingoplus-bingo-poker-slot__game-category-button,.page-bingoplus-bingo-poker-slot__promo-card-button,.page-bingoplus-bingo-poker-slot__contact-button {    background-color: var(--primary-color);    color: var(--dark-background);    border: 2px solid var(--primary-color);}.page-bingoplus-bingo-poker-slot__hero-button--primary:hover,.page-bingoplus-bingo-poker-slot__quick-access-button:hover,.page-bingoplus-bingo-poker-slot__game-category-button:hover,.page-bingoplus-bingo-poker-slot__promo-card-button:hover,.page-bingoplus-bingo-poker-slot__contact-button:hover {    background-color: #e6c200;    transform: translateY(-2px);}.page-bingoplus-bingo-poker-slot__hero-button--secondary {    background-color: transparent;    color: var(--primary-color);    border: 2px solid var(--primary-color);}.page-bingoplus-bingo-poker-slot__hero-button--secondary:hover {    background-color: var(--primary-color);    color: var(--dark-background);    transform: translateY(-2px);}.page-bingoplus-bingo-poker-slot__blog-card-link {    background-color: var(--secondary-color);    color: var(--white);    border: 2px solid var(--secondary-color);}.page-bingoplus-bingo-poker-slot__blog-card-link:hover {    background-color: #0056b3;    border-color: #0056b3;    transform: translateY(-2px);}/* Image styling */.page-bingoplus-bingo-poker-slot img {    max-width: 100%;    height: auto;    display: block;    margin: 0 auto;}/* HERO Section */.page-bingoplus-bingo-poker-slot__hero-section {    position: relative;    padding-top: 10px; /* Small decorative padding as per instructions */    padding-bottom: 80px;    color: var(--white);    background-color: var(--dark-background);    display: flex;    flex-direction: column;    align-items: center;    justify-content: center;    overflow: hidden;}.page-bingoplus-bingo-poker-slot__hero-image-wrapper {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    overflow: hidden;    z-index: 0;}.page-bingoplus-bingo-poker-slot__hero-image {    width: 100%;    height: 100%;    object-fit: cover;    filter: brightness(0.4); /* Darken image for text contrast */}.page-bingoplus-bingo-poker-slot__hero-content {    position: relative;    z-index: 1;    max-width: 800px;    padding: 20px;    background-color: rgba(0, 0, 0, 0.5);    border-radius: 10px;}.page-bingoplus-bingo-poker-slot__hero-title {    font-size: 2.8em;    margin-bottom: 20px;    color: var(--primary-color);}.page-bingoplus-bingo-poker-slot__hero-subtitle {    font-size: 1.2em;    margin-bottom: 30px;    color: var(--white);}.page-bingoplus-bingo-poker-slot__hero-cta-group {    display: flex;    justify-content: center;    flex-wrap: wrap;    gap: 15px;}/* Introduction Section */.page-bingoplus-bingo-poker-slot__intro-section {    background-color: var(--white);    border-bottom: 1px solid var(--border-color);}.page-bingoplus-bingo-poker-slot__intro-features {    display: flex;    flex-wrap: wrap;    justify-content: center;    gap: 30px;    list-style: none;    padding: 0;    margin-top: 40px;}.page-bingoplus-bingo-poker-slot__intro-feature-item {    flex: 1;    min-width: 280px;    max-width: 350px;    padding: 25px;    background-color: var(--background-color);    border-radius: 10px;    box-shadow: 0 4px 8px rgba(0,0,0,0.1);    text-align: center;    box-sizing: border-box;}.page-bingoplus-bingo-poker-slot__intro-feature-icon {    width: 100px;    height: 100px;    object-fit: contain;    margin-bottom: 15px;}.page-bingoplus-bingo-poker-slot__intro-feature-title {    font-size: 1.4em;    color: var(--secondary-color);}/* Quick Access Section */.page-bingoplus-bingo-poker-slot__quick-access-section {    background-color: var(--dark-background);    color: var(--white);    padding: 80px 20px;}.page-bingoplus-bingo-poker-slot__quick-access-title {    color: var(--primary-color);}.page-bingoplus-bingo-poker-slot__quick-access-description {    color: var(--white);    margin-bottom: 40px;}.page-bingoplus-bingo-poker-slot__quick-access-links {    display: flex;    flex-wrap: wrap;    justify-content: center;    gap: 15px;}/* Core Games Section */.page-bingoplus-bingo-poker-slot__games-section {    background-color: var(--white);    border-bottom: 1px solid var(--border-color);}.page-bingoplus-bingo-poker-slot__game-categories {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));    gap: 30px;    margin-top: 40px;}.page-bingoplus-bingo-poker-slot__game-category-item {    background-color: var(--background-color);    border-radius: 10px;    box-shadow: 0 4px 8px rgba(0,0,0,0.1);    overflow: hidden;    text-align: center;    padding-bottom: 20px;    box-sizing: border-box;}.page-bingoplus-bingo-poker-slot__game-category-image {    width: 100%;    height: 200px;    object-fit: cover;    margin-bottom: 20px;}.page-bingoplus-bingo-poker-slot__game-category-title {    font-size: 1.5em;    color: var(--dark-background);    padding: 0 15px;}.page-bingoplus-bingo-poker-slot__game-category-text {    padding: 0 15px;    color: var(--light-text-color);}/* Promotions Section */.page-bingoplus-bingo-poker-slot__promo-section {    background-color: var(--background-color);    border-bottom: 1px solid var(--border-color);}.page-bingoplus-bingo-poker-slot__promo-cards {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));    gap: 30px;    margin-top: 40px;}.page-bingoplus-bingo-poker-slot__promo-card {    background-color: var(--white);    border-radius: 10px;    box-shadow: 0 4px 8px rgba(0,0,0,0.1);    overflow: hidden;    text-align: center;    padding-bottom: 20px;    box-sizing: border-box;}.page-bingoplus-bingo-poker-slot__promo-card-image {    width: 100%;    height: 220px;    object-fit: cover;    margin-bottom: 20px;}.page-bingoplus-bingo-poker-slot__promo-card-title {    font-size: 1.4em;    color: var(--dark-background);    padding: 0 15px;}.page-bingoplus-bingo-poker-slot__promo-card-text {    padding: 0 15px;    color: var(--light-text-color);    min-height: 70px; /* Ensure consistent card height */}/* Security Section */.page-bingoplus-bingo-poker-slot__security-section {    background-color: var(--dark-background);    color: var(--white);    padding-bottom: 80px;}.page-bingoplus-bingo-poker-slot__security-title {    color: var(--primary-color);}.page-bingoplus-bingo-poker-slot__security-description {    color: var(--white);    margin-bottom: 40px;}.page-bingoplus-bingo-poker-slot__security-features {    display: flex;    flex-wrap: wrap;    justify-content: center;    gap: 30px;    margin-bottom: 40px;}.page-bingoplus-bingo-poker-slot__security-feature-item {    flex: 1;    min-width: 280px;    max-width: 350px;    padding: 25px;    background-color: rgba(255, 255, 255, 0.05);    border-radius: 10px;    text-align: center;    box-sizing: border-box;}.page-bingoplus-bingo-poker-slot__security-feature-icon {    width: 100px;    height: 100px;    object-fit: contain;    margin-bottom: 15px;}.page-bingoplus-bingo-poker-slot__security-feature-title {    font-size: 1.4em;    color: var(--primary-color);}/* FAQ Section */.page-bingoplus-bingo-poker-slot__faq-section {    background-color: var(--white);    border-bottom: 1px solid var(--border-color);    text-align: left;}.page-bingoplus-bingo-poker-slot__faq-title {    text-align: center;}.page-bingoplus-bingo-poker-slot__faq-description {    text-align: center;}.page-bingoplus-bingo-poker-slot__faq-container {    margin-top: 40px;    max-width: 900px;    margin-left: auto;    margin-right: auto;    border: 1px solid var(--border-color);    border-radius: 8px;    overflow: hidden;}.page-bingoplus-bingo-poker-slot__faq-item {    border-bottom: 1px solid var(--border-color);}.page-bingoplus-bingo-poker-slot__faq-item:last-child {    border-bottom: none;}.page-bingoplus-bingo-poker-slot__faq-question {    display: flex;    justify-content: space-between;    align-items: center;    padding: 15px 20px;    background-color: var(--background-color);    cursor: pointer;    user-select: none;    transition: background-color 0.3s ease;}.page-bingoplus-bingo-poker-slot__faq-question:hover {    background-color: #e9ecef;}.page-bingoplus-bingo-poker-slot__faq-question-text {    margin: 0;    font-size: 1.1em;    color: var(--dark-background);    pointer-events: none; /* Prevent click interference */    flex-grow: 1;    text-align: left;}.page-bingoplus-bingo-poker-slot__faq-toggle {    font-size: 1.5em;    font-weight: bold;    color: var(--secondary-color);    pointer-events: none; /* Prevent click interference */    transition: transform 0.3s ease;}.page-bingoplus-bingo-poker-slot__faq-item.active .page-bingoplus-bingo-poker-slot__faq-toggle {    transform: rotate(45deg); /* Change + to X or similar */}.page-bingoplus-bingo-poker-slot__faq-answer {    max-height: 0;    overflow: hidden;    padding: 0 20px;    background-color: var(--white);    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;    opacity: 0;    box-sizing: border-box;}.page-bingoplus-bingo-poker-slot__faq-item.active .page-bingoplus-bingo-poker-slot__faq-answer {    max-height: 2000px !important; /* Large enough to contain content */    padding: 20px !important;    opacity: 1;}/* Blog Section */.page-bingoplus-bingo-poker-slot__blog-section {    background-color: var(--background-color);}.page-bingoplus-bingo-poker-slot__blog-cards {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));    gap: 30px;    margin-top: 40px;}.page-bingoplus-bingo-poker-slot__blog-card {    background-color: var(--white);    border-radius: 10px;    box-shadow: 0 4px 8px rgba(0,0,0,0.1);    overflow: hidden;    text-align: left;    box-sizing: border-box;}.page-bingoplus-bingo-poker-slot__blog-card-image {    width: 100%;    height: 200px;    object-fit: cover;}.page-bingoplus-bingo-poker-slot__blog-card-content {    padding: 20px;}.page-bingoplus-bingo-poker-slot__blog-card-title {    font-size: 1.3em;    margin-top: 0;    margin-bottom: 10px;    min-height: 60px;}.page-bingoplus-bingo-poker-slot__blog-card-title a {    color: var(--dark-background);    text-decoration: none;    transition: color 0.3s ease;}.page-bingoplus-bingo-poker-slot__blog-card-title a:hover {    color: var(--secondary-color);}.page-bingoplus-bingo-poker-slot__blog-card-excerpt {    font-size: 0.95em;    color: var(--light-text-color);    margin-bottom: 20px;    min-height: 80px; /* Ensure consistent card height */}/* Responsive adjustments */@media (max-width: 992px) {    .page-bingoplus-bingo-poker-slot__hero-title {        font-size: 2.2em;    }    .page-bingoplus-bingo-poker-slot__hero-subtitle {        font-size: 1.1em;    }    .page-bingoplus-bingo-poker-slot section {        padding: 40px 15px;    }}@media (max-width: 768px) {    .page-bingoplus-bingo-poker-slot__hero-title {        font-size: 1.8em;    }    .page-bingoplus-bingo-poker-slot__hero-subtitle {        font-size: 1em;    }    .page-bingoplus-bingo-poker-slot__hero-cta-group {        flex-direction: column;    }    .page-bingoplus-bingo-poker-slot__hero-button {        width: 100%;        max-width: 250px;        margin-left: auto;        margin-right: auto;    }    /* General list item responsiveness */    .page-bingoplus-bingo-poker-slot__intro-features,    .page-bingoplus-bingo-poker-slot__quick-access-links,    .page-bingoplus-bingo-poker-slot__game-categories,    .page-bingoplus-bingo-poker-slot__promo-cards,    .page-bingoplus-bingo-poker-slot__security-features,    .page-bingoplus-bingo-poker-slot__blog-cards {        grid-template-columns: 1fr; /* Stack items vertically */        gap: 20px;        padding: 0 !important;        margin-left: 0 !important;        margin-right: 0 !important;        width: 100% !important;        max-width: 100% !important;        box-sizing: border-box !important;    }    .page-bingoplus-bingo-poker-slot__intro-feature-item,    .page-bingoplus-bingo-poker-slot__game-category-item,    .page-bingoplus-bingo-poker-slot__promo-card,    .page-bingoplus-bingo-poker-slot__security-feature-item,    .page-bingoplus-bingo-poker-slot__blog-card {        width: 100% !important;        max-width: 100% !important;        box-sizing: border-box !important;        margin-left: 0 !important;        margin-right: 0 !important;        padding-left: 15px; /* Adjust padding for smaller screens */        padding-right: 15px;    }        .page-bingoplus-bingo-poker-slot__quick-access-button {        width: calc(100% - 20px); /* Account for padding/margin */        margin: 5px auto;    }    .page-bingoplus-bingo-poker-slot__blog-card-title,    .page-bingoplus-bingo-poker-slot__promo-card-title,    .page-bingoplus-bingo-poker-slot__game-category-title,    .page-bingoplus-bingo-poker-slot__intro-feature-title,    .page-bingoplus-bingo-poker-slot__security-feature-title {        font-size: 1.2em;        line-height: 1.3;    }        .page-bingoplus-bingo-poker-slot__blog-card-excerpt,    .page-bingoplus-bingo-poker-slot__promo-card-text,    .page-bingoplus-bingo-poker-slot__game-category-text,    .page-bingoplus-bingo-poker-slot__intro-feature-text,    .page-bingoplus-bingo-poker-slot__security-feature-text {        font-size: 0.9em;        word-wrap: break-word !important;        overflow-wrap: break-word !important;        word-break: break-word !important;    }    .page-bingoplus-bingo-poker-slot__faq-question {        padding: 12px 15px;    }    .page-bingoplus-bingo-poker-slot__faq-question-text {        font-size: 1em;    }    .page-bingoplus-bingo-poker-slot__faq-answer {        padding: 15px !important;    }    .page-bingoplus-bingo-poker-slot__faq-answer p {        font-size: 0.9em;    }}@media (max-width: 480px) {    .page-bingoplus-bingo-poker-slot__hero-title {        font-size: 1.6em;    }    .page-bingoplus-bingo-poker-slot__hero-subtitle {        font-size: 0.9em;    }    .page-bingoplus-bingo-poker-slot__hero-button {        padding: 10px 20px;    }    .page-bingoplus-bingo-poker-slot h1,    .page-bingoplus-bingo-poker-slot h2 {        font-size: 1.8em;    }    .page-bingoplus-bingo-poker-slot h3 {        font-size: 1.1em;    }}