/* style/games-center-live-casino.css */

/* Variables for colors and fonts */
:root {
    --page-games-center-live-casino-primary-color: #003366;
    --page-games-center-live-casino-secondary-color: #FFCC00;
    --page-games-center-live-casino-text-light: #FFFFFF;
    --page-games-center-live-casino-text-dark: #000000;
    --page-games-center-live-casino-text-grey: #f0f0f0;
    --page-games-center-live-casino-background-dark: #001a33;
    --page-games-center-live-casino-background-light: #f5f5f5;
    --page-games-center-live-casino-accent-color: #ffcc99; /* Derived for contrast */
}

.page-games-center-live-casino {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-games-center-live-casino-text-dark);
    background-color: var(--page-games-center-live-casino-background-light);
}

.page-games-center-live-casino__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-games-center-live-casino__hero-section {
    background: linear-gradient(135deg, var(--page-games-center-live-casino-primary-color), #004d99);
    color: var(--page-games-center-live-casino-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-games-center-live-casino__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-games-center-live-casino__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    z-index: 1;
}

.page-games-center-live-casino__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-games-center-live-casino-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-center-live-casino__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-games-center-live-casino-text-grey);
}

.page-games-center-live-casino__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-games-center-live-casino__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-games-center-live-casino__btn--primary {
    background-color: var(--page-games-center-live-casino-secondary-color);
    color: var(--page-games-center-live-casino-primary-color);
    border: 2px solid var(--page-games-center-live-casino-secondary-color);
}

.page-games-center-live-casino__btn--primary:hover {
    background-color: #e6b800; /* Darker secondary */
    transform: translateY(-3px);
}

.page-games-center-live-casino__btn--secondary {
    background-color: transparent;
    color: var(--page-games-center-live-casino-secondary-color);
    border: 2px solid var(--page-games-center-live-casino-secondary-color);
}

.page-games-center-live-casino__btn--secondary:hover {
    background-color: var(--page-games-center-live-casino-secondary-color);
    color: var(--page-games-center-live-casino-primary-color);
    transform: translateY(-3px);
}

.page-games-center-live-casino__btn--center {
    display: block;
    margin: 40px auto 20px auto;
    width: fit-content;
}

.page-games-center-live-casino__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-games-center-live-casino__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-games-center-live-casino__intro-section,
.page-games-center-live-casino__games-section,
.page-games-center-live-casino__strategy-section,
.page-games-center-live-casino__dealers-section,
.page-games-center-live-casino__benefits-section,
.page-games-center-live-casino__cta-section,
.page-games-center-live-casino__faq-section {
    padding: 60px 0;
    background-color: var(--page-games-center-live-casino-background-light);
    color: var(--page-games-center-live-casino-text-dark);
}

.page-games-center-live-casino__intro-section p,
.page-games-center-live-casino__strategy-section p,
.page-games-center-live-casino__dealers-section p,
.page-games-center-live-casino__benefits-section p,
.page-games-center-live-casino__cta-section p,
.page-games-center-live-casino__faq-item p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
}

.page-games-center-live-casino__section-title {
    font-size: 2.5em;
    color: var(--page-games-center-live-casino-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-games-center-live-casino__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-games-center-live-casino-secondary-color);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-games-center-live-casino__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-games-center-live-casino__games-section {
    background-color: var(--page-games-center-live-casino-background-dark);
    color: var(--page-games-center-live-casino-text-light);
}

.page-games-center-live-casino__games-section .page-games-center-live-casino__section-title {
    color: var(--page-games-center-live-casino-secondary-color);
}

.page-games-center-live-casino__games-section p {
    color: var(--page-games-center-live-casino-text-grey);
    text-align: center;
    margin-bottom: 30px;
}

.page-games-center-live-casino__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-games-center-live-casino__game-card {
    background-color: #002244; /* Darker primary */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-games-center-live-casino__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-games-center-live-casino__game-title {
    font-size: 1.8em;
    color: var(--page-games-center-live-casino-secondary-color);
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-games-center-live-casino__game-card p {
    font-size: 1em;
    color: var(--page-games-center-live-casino-text-grey);
    padding: 0 15px 20px 15px;
    flex-grow: 1;
    text-align: left;
}

.page-games-center-live-casino__strategy-section {
    background-color: var(--page-games-center-live-casino-background-light);
}

.page-games-center-live-casino__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-games-center-live-casino__strategy-item {
    background-color: var(--page-games-center-live-casino-text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-games-center-live-casino__strategy-item:hover {
    transform: translateY(-5px);
}

.page-games-center-live-casino__strategy-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-games-center-live-casino__strategy-item h3 {
    font-size: 1.6em;
    color: var(--page-games-center-live-casino-primary-color);
    margin-bottom: 15px;
}

.page-games-center-live-casino__strategy-item p {
    font-size: 1em;
    color: #555;
    text-align: left;
}

.page-games-center-live-casino__benefits-section {
    background-color: #e0eaf3; /* Lighter shade of primary */
}

.page-games-center-live-casino__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-games-center-live-casino__benefits-list li {
    background-color: var(--page-games-center-live-casino-text-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: center;
}

.page-games-center-live-casino__benefit-icon {
    color: var(--page-games-center-live-casino-secondary-color);
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
}

.page-games-center-live-casino__cta-section {
    background: linear-gradient(45deg, var(--page-games-center-live-casino-primary-color), #004d99);
    color: var(--page-games-center-live-casino-text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.page-games-center-live-casino__cta-section .page-games-center-live-casino__section-title {
    color: var(--page-games-center-live-casino-secondary-color);
}

.page-games-center-live-casino__cta-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--page-games-center-live-casino-text-grey);
}

.page-games-center-live-casino__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.page-games-center-live-casino__cta-image {
    width: 80%;
    max-width: 600px;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-games-center-live-casino__faq-section {
    background-color: var(--page-games-center-live-casino-background-light);
}

.page-games-center-live-casino__faq-item {
    background-color: var(--page-games-center-live-casino-text-light);
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-games-center-live-casino__faq-question {
    font-size: 1.3em;
    color: var(--page-games-center-live-casino-primary-color);
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.page-games-center-live-casino__faq-question:hover {
    background-color: #f0f0f0;
}

.page-games-center-live-casino__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: var(--page-games-center-live-casino-secondary-color);
    transition: transform 0.3s ease;
}

.page-games-center-live-casino__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-games-center-live-casino__faq-answer {
    padding: 0 25px 20px 25px;
    margin: 0;
    font-size: 1.1em;
    color: #444;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-games-center-live-casino__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 0 25px 20px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-games-center-live-casino__hero-image {
        width: 70%;
        max-width: 600px;
    }

    .page-games-center-live-casino__main-title {
        font-size: 2.8em;
    }

    .page-games-center-live-casino__subtitle {
        font-size: 1.2em;
    }

    .page-games-center-live-casino__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-games-center-live-casino__hero-section {
        padding: 60px 0 20px 0;
        min-height: 400px;
    }

    .page-games-center-live-casino__hero-image {
        position: static;
        width: 90%;
        margin-top: 30px;
        opacity: 1;
    }

    .page-games-center-live-casino__main-title {
        font-size: 2.2em;
    }

    .page-games-center-live-casino__subtitle {
        font-size: 1em;
    }

    .page-games-center-live-casino__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-games-center-live-casino__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-games-center-live-casino__games-section,
    .page-games-center-live-casino__strategy-section,
    .page-games-center-live-casino__benefits-section,
    .page-games-center-live-casino__cta-section,
    .page-games-center-live-casino__faq-section {
        padding: 40px 0;
    }

    .page-games-center-live-casino__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-games-center-live-casino__game-grid,
    .page-games-center-live-casino__strategy-grid,
    .page-games-center-live-casino__benefits-list {
        grid-template-columns: 1fr;
    }

    .page-games-center-live-casino__game-card p {
        text-align: center;
    }
    
    .page-games-center-live-casino__strategy-item p {
        text-align: center;
    }

    .page-games-center-live-casino__benefits-list li {
        flex-direction: column;
        text-align: center;
    }

    .page-games-center-live-casino__benefit-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .page-games-center-live-casino__cta-image {
        width: 95%;
    }

    .page-games-center-live-casino__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-games-center-live-casino__faq-answer {
        font-size: 1em;
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-games-center-live-casino__main-title {
        font-size: 1.8em;
    }

    .page-games-center-live-casino__subtitle {
        font-size: 0.9em;
    }

    .page-games-center-live-casino__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-games-center-live-casino__section-title {
        font-size: 1.5em;
    }
}