/* style/casino.css */
.page-casino {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
}

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

.page-casino__hero-section {
    background: linear-gradient(135deg, #1A202C, #3A3F47);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-casino__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-casino__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-casino__button--primary {
    background-color: #FFD700; /* Gold */
    color: #1A202C;
}

.page-casino__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-casino__button--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino__about-section, .page-casino__games-overview-section, .page-casino__promotions-section, .page-casino__login-register-section, .page-casino__mobile-app-section, .page-casino__responsible-gaming-section, .page-casino__avis-section, .page-casino__faq-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-casino__about-section {
    background-color: #ffffff;
}

.page-casino__section-title {
    font-size: 2.5em;
    color: #1A202C;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

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

.page-casino__section-subtitle {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-casino__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-casino__card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-casino__card-image {
    width: 100%; /* Ensure images are not small icons */
    max-width: 400px;
    height: auto;
    min-height: 200px; /* Minimum size requirement */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-casino__card-title {
    font-size: 1.8em;
    color: #1A202C;
    margin-bottom: 15px;
}

.page-casino__card-text {
    font-size: 1em;
    color: #555555;
}

.page-casino__game-category {
    margin-bottom: 60px;
}

.page-casino__game-category-title {
    font-size: 2em;
    color: #1A202C;
    margin-bottom: 30px;
    text-align: center;
}

.page-casino__game-category-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-casino__game-category-content--reverse {
    flex-direction: column-reverse;
}

.page-casino__game-category-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 300px; /* Minimum size for content images */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-casino__game-category-text {
    max-width: 700px;
    text-align: center;
}

.page-casino__game-category-text p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444444;
}

.page-casino__game-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    display: inline-block; /* Center list items */
}

.page-casino__game-list li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #555555;
    position: relative;
    padding-left: 25px;
}

.page-casino__game-list li::before {
    content: '•';
    color: #FFD700;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-casino__promotions-section .page-casino__card--promotion {
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
}

.page-casino__cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
}

.page-casino__cta-bottom p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #1A202C;
}

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

.page-casino__step-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
}

.page-casino__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-casino__step-card p {
    color: #555555;
    margin-bottom: 20px;
}

.page-casino__login-prompt {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

.page-casino__login-prompt a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-casino__login-prompt a:hover {
    text-decoration: underline;
}

.page-casino__mobile-app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-casino__mobile-app-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    min-height: 300px;
    object-fit: contain;
}

.page-casino__mobile-app-text {
    max-width: 700px;
    text-align: center;
}

.page-casino__app-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    text-align: left;
    display: inline-block;
}

.page-casino__app-features li {
    margin-bottom: 10px;
    color: #555555;
    position: relative;
    padding-left: 25px;
}

.page-casino__app-features li::before {
    content: '✓';
    color: #FFD700;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-casino__responsible-gaming-section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 1.1em;
    color: #444444;
}

.page-casino__responsible-gaming-section .page-casino__button {
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.page-casino__avis-section {
    background-color: #ffffff;
}

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

.page-casino__testimonial-card {
    background-color: #f0f0f0;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-casino__testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #555555;
}

.page-casino__testimonial-author {
    font-weight: bold;
    color: #1A202C;
    text-align: right;
}

.page-casino__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-casino__faq-question {
    font-size: 1.3em;
    color: #1A202C;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-casino__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-casino__faq-question.active::after {
    transform: rotate(45deg);
}

.page-casino__faq-answer {
    font-size: 1em;
    color: #666666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-casino__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 10px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-casino__game-category-content {
        flex-direction: row;
        text-align: left;
    }

    .page-casino__game-category-content--reverse {
        flex-direction: row-reverse;
    }

    .page-casino__game-category-text {
        text-align: left;
        flex: 1;
    }

    .page-casino__game-category-image {
        flex: 1;
    }

    .page-casino__hero-title {
        font-size: 4em;
    }

    .page-casino__hero-description {
        font-size: 1.5em;
    }

    .page-casino__mobile-app-content {
        flex-direction: row;
        text-align: left;
    }

    .page-casino__mobile-app-text {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .page-casino__hero-title {
        font-size: 2.5em;
    }

    .page-casino__hero-description {
        font-size: 1.1em;
    }

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

    .page-casino__button {
        width: 80%;
        margin: 0 auto;
    }

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

    .page-casino__section-subtitle {
        font-size: 1em;
    }

    .page-casino__card {
        padding: 20px;
    }

    .page-casino__card-title {
        font-size: 1.5em;
    }

    .page-casino__game-category-title {
        font-size: 1.8em;
    }

    .page-casino__game-category-content, .page-casino__game-category-content--reverse, .page-casino__mobile-app-content {
        flex-direction: column;
    }

    .page-casino__game-category-text, .page-casino__mobile-app-text {
        text-align: center;
    }

    .page-casino__game-list, .page-casino__app-features {
        text-align: center;
        width: 100%;
    }

    .page-casino__game-list li, .page-casino__app-features li {
        padding-left: 0;
    }

    .page-casino__game-list li::before, .page-casino__app-features li::before {
        display: none;
    }

    .page-casino__step-title {
        font-size: 1.5em;
    }

    .page-casino__faq-question {
        font-size: 1.1em;
    }
}