/* style/casino.css */
.page-casino {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-casino__section-padding {
    padding: 60px 0;
}

.page-casino__bg-dark {
    background-color: #0A2463;
}

.page-casino__text-white {
    color: #ffffff;
}

.page-casino__text-center {
    text-align: center;
}

.page-casino__mt-40 {
    margin-top: 40px;
}

.page-casino__section-title {
    font-size: 2.8em;
    color: #0A2463;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.page-casino__bg-dark .page-casino__section-title {
    color: #E0B14A;
}

.page-casino__sub-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-casino__bg-dark .page-casino__sub-title {
    color: #E0B14A;
}

.page-casino__description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.page-casino__bg-dark .page-casino__description {
    color: #cccccc;
}

.page-casino__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.05em;
    cursor: pointer;
    border: none;
}

.page-casino__btn--primary {
    background-color: #E0B14A;
    color: #0A2463;
}

.page-casino__btn--primary:hover {
    background-color: #f0c260;
    transform: translateY(-2px);
}

.page-casino__btn--secondary {
    background-color: transparent;
    color: #0A2463;
    border: 2px solid #0A2463;
}

.page-casino__btn--secondary:hover {
    background-color: #0A2463;
    color: #E0B14A;
    transform: translateY(-2px);
}

.page-casino__btn--text {
    background: none;
    color: #0A2463;
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-casino__btn--text:hover {
    color: #E0B14A;
    text-decoration: none;
}

.page-casino__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-casino__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #1f4eb5 100%); /* Adjusted gradient for better contrast */
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-casino__hero-title {
    font-size: 4em;
    margin-bottom: 15px;
    color: #E0B14A;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino__hero-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

.page-casino__hero-actions .page-casino__btn {
    margin: 0 10px;
}

.page-casino__hero-actions .page-casino__btn--secondary {
    color: #E0B14A;
    border-color: #E0B14A;
}

.page-casino__hero-actions .page-casino__btn--secondary:hover {
    background-color: #E0B14A;
    color: #0A2463;
}

/* About Section */
.page-casino__flex-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-casino__flex-reverse {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row-reverse;
}

.page-casino__content-text {
    flex: 1;
}

.page-casino__content-text p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-casino__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-casino__image-full {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Games Overview Section */
.page-casino__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-casino__game-card {
    background-color: #1a3a7c; /* Darker blue for cards on dark background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-casino__game-card:hover {
    transform: translateY(-10px);
    background-color: #2a4a8c;
}

.page-casino__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-casino__game-card .page-casino__card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #E0B14A;
}

.page-casino__game-card .page-casino__card-description {
    color: #e0e0e0;
    font-size: 0.95em;
}

/* Live Casino & Slot Games Sections */
.page-casino__live-casino-section .page-casino__content-text p,
.page-casino__slot-games-section .page-casino__content-text p {
    color: #444;
}

.page-casino__slot-games-section .page-casino__content-text p {
    color: #e0e0e0;
}

/* Strategy Section */
.page-casino__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-casino__list li {
    background-color: #f9f9f9;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #E0B14A;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #333;
}

.page-casino__list li strong {
    color: #0A2463;
}

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

.page-casino__promo-card {
    background-color: #1a3a7c;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-casino__promo-card:hover {
    transform: translateY(-10px);
    background-color: #2a4a8c;
}

.page-casino__promo-card .page-casino__card-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-casino__promo-card .page-casino__card-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #E0B14A;
}

.page-casino__promo-card .page-casino__card-description {
    color: #e0e0e0;
    font-size: 0.98em;
}

/* Detail Pages Section */
.page-casino__detail-pages .page-casino__description {
    color: #555;
}

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

.page-casino__detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-casino__detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-casino__detail-card .page-casino__card-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-casino__detail-card .page-casino__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #0A2463;
    line-height: 1.3;
}

.page-casino__detail-card .page-casino__card-title a {
    color: #0A2463;
    text-decoration: none;
}

.page-casino__detail-card .page-casino__card-title a:hover {
    color: #E0B14A;
    text-decoration: underline;
}

.page-casino__detail-card .page-casino__card-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-casino__faq-accordion {
    margin-top: 40px;
}

.page-casino__accordion-item {
    background-color: #1a3a7c;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-casino__accordion-header {
    background-color: #0A2463;
    color: #E0B14A;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-casino__accordion-header:hover {
    background-color: #1f4eb5;
}

.page-casino__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-casino__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-casino__accordion-content {
    padding: 0 25px;
    background-color: #1a3a7c;
    color: #e0e0e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-casino__accordion-content p {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-casino__accordion-content .page-casino__btn--text {
    margin-bottom: 15px;
    display: inline-block;
    color: #E0B14A;
}

.page-casino__accordion-content .page-casino__btn--text:hover {
    color: #f0c260;
}

/* CTA Section */
.page-casino__cta-section {
    background-color: #E0B14A;
    color: #0A2463;
}

.page-casino__cta-section .page-casino__section-title {
    color: #0A2463;
    font-size: 3em;
}

.page-casino__cta-section .page-casino__description {
    color: #333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-casino__cta-actions {
    margin-top: 40px;
}

.page-casino__cta-actions .page-casino__btn {
    margin: 0 15px;
}

.page-casino__cta-actions .page-casino__btn--primary {
    background-color: #0A2463;
    color: #E0B14A;
}

.page-casino__cta-actions .page-casino__btn--primary:hover {
    background-color: #1f4eb5;
    color: #ffffff;
}

.page-casino__cta-actions .page-casino__btn--secondary {
    background-color: transparent;
    border: 2px solid #0A2463;
    color: #0A2463;
}

.page-casino__cta-actions .page-casino__btn--secondary:hover {
    background-color: #0A2463;
    color: #E0B14A;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-casino__flex-row, .page-casino__flex-reverse {
        flex-direction: column;
    }

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

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

    .page-casino__sub-title {
        font-size: 1.6em;
    }

    .page-casino__promo-grid, .page-casino__game-grid, .page-casino__detail-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-casino__hero-section {
        padding: 80px 0;
    }

    .page-casino__section-padding {
        padding: 40px 0;
    }
}

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

    .page-casino__hero-subtitle {
        font-size: 1.2em;
    }

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

    .page-casino__sub-title {
        font-size: 1.4em;
    }

    .page-casino__hero-actions .page-casino__btn {
        display: block;
        margin: 15px auto;
        width: 80%;
    }

    .page-casino__cta-actions .page-casino__btn {
        display: block;
        margin: 15px auto;
        width: 80%;
    }

    .page-casino__list li {
        padding: 15px;
    }

    .page-casino__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-casino__accordion-content {
        padding: 0 20px;
    }
}

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

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

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

    .page-casino__sub-title {
        font-size: 1.2em;
    }

    .page-casino__game-grid, .page-casino__promo-grid, .page-casino__detail-grid {
        grid-template-columns: 1fr;
    }

    .page-casino__game-card, .page-casino__promo-card, .page-casino__detail-card {
        padding: 20px;
    }
}