/* style/casino.css */

.page-casino {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-casino .highlight {
    color: #FFD700;
}

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

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

.page-casino__section:nth-of-type(even) {
    background-color: #f1f1f1;
}

.page-casino__section-title {
    font-size: 2.5em;
    color: #0A246A;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-casino__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-casino__text {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

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

.page-casino__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.05em;
    margin: 10px;
    cursor: pointer;
}

.page-casino__btn--primary {
    background-color: #0A246A;
    color: #fff;
    border: 2px solid #0A246A;
}

.page-casino__btn--primary:hover {
    background-color: #FFD700;
    color: #0A246A;
    border-color: #FFD700;
}

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

.page-casino__btn--secondary:hover {
    background-color: #0A246A;
    color: #fff;
}

.page-casino__btn--center {
    display: block;
    margin: 30px auto;
}

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

/* Hero Section */
.page-casino__hero {
    background: linear-gradient(135deg, #0A246A 0%, #0A246A 50%, #FFD700 100%);
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 600px;
    text-align: left;
}

.page-casino__hero-content {
    flex: 1;
    padding: 20px;
    max-width: 600px;
}

.page-casino__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-casino__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 500px;
}

.page-casino__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.page-casino__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-casino__intro {
    background-color: #fff;
}

/* Why Choose Section */
.page-casino__why-choose {
    background-color: #f8f9fa;
}

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

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

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

.page-casino__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-casino__feature-title {
    font-size: 1.5em;
    color: #0A246A;
    margin-bottom: 15px;
}

.page-casino__feature-text {
    font-size: 1em;
    color: #666;
}

/* Games Section */
.page-casino__games {
    background-color: #fff;
}

.page-casino__game-category {
    margin-top: 60px;
    text-align: left;
}

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

.page-casino__game-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

.page-casino__game-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-casino__game-description {
    flex: 2;
    min-width: 300px;
}

.page-casino__game-description .page-casino__text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

/* Live Experience Section */
.page-casino__live-experience {
    background-color: #0A246A;
    color: #fff;
}

.page-casino__live-experience .page-casino__section-title {
    color: #fff;
}

.page-casino__live-experience .page-casino__text {
    color: #eee;
}

.page-casino__list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-casino__list li {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.page-casino__list li::before {
    content: '✅';
    margin-right: 15px;
    font-size: 1.2em;
}

.page-casino__list li .page-casino__text {
    margin: 0;
    color: #fff;
}

/* Promotions Section */
.page-casino__promotions {
    background-color: #f8f9fa;
}

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

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

.page-casino__promotion-card:hover {
    transform: translateY(-5px);
}

.page-casino__promotion-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-casino__promotion-title {
    font-size: 1.6em;
    color: #0A246A;
    margin-bottom: 15px;
}

.page-casino__promotion-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

/* Security Section */
.page-casino__security {
    background-color: #fff;
}

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

.page-casino__security-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-casino__security-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-casino__security-title {
    font-size: 1.6em;
    color: #0A246A;
    margin-bottom: 15px;
}

.page-casino__security-text {
    font-size: 1em;
    color: #666;
}

/* App Download Section */
.page-casino__app-download {
    background-color: #f8f9fa;
}

.page-casino__app-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.page-casino__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.page-casino__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-casino__app-info {
    flex: 1.5;
    min-width: 300px;
}

.page-casino__app-info .page-casino__list {
    margin: 0 0 30px 0;
    max-width: none;
}

.page-casino__app-info .page-casino__list li {
    background-color: transparent;
    box-shadow: none;
    padding: 5px 0;
}

.page-casino__app-info .page-casino__list li::before {
    color: #0A246A;
}

.page-casino__app-info .page-casino__list li .page-casino__text {
    color: #333;
}

.page-casino__app-download-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* FAQ Section */
.page-casino__faq {
    background-color: #fff;
}

.page-casino__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-casino__faq-question {
    font-size: 1.3em;
    color: #0A246A;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-casino__faq-answer {
    font-size: 1em;
    color: #555;
    margin-bottom: 0;
}

/* CTA Section */
.page-casino__cta {
    background-color: #0A246A;
    color: #fff;
    padding: 80px 0;
}

.page-casino__cta .page-casino__section-title {
    color: #fff;
}

.page-casino__cta .page-casino__text {
    color: #eee;
    margin-bottom: 40px;
}

.page-casino__cta-content {
    max-width: 900px;
}

/* Floating Promo */
.page-casino__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    z-index: 1000;
    animation: page-casino__pulse 2s infinite;
}

.page-casino__floating-promo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0A246A;
    font-weight: bold;
    font-size: 1.1em;
}

.page-casino__floating-promo-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-casino__floating-promo-text {
    white-space: nowrap;
}

@keyframes page-casino__pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-casino__hero {
        text-align: center;
        padding: 60px 0;
    }

    .page-casino__hero-content {
        order: 2;
        max-width: none;
    }

    .page-casino__hero-image-wrapper {
        order: 1;
        margin-bottom: 40px;
    }

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

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

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

    .page-casino__game-image {
        max-width: 100%;
    }

    .page-casino__app-content {
        flex-direction: column;
        text-align: center;
    }

    .page-casino__app-info .page-casino__list {
        text-align: center;
    }

    .page-casino__app-info .page-casino__list li {
        justify-content: center;
    }

    .page-casino__app-download-btns {
        justify-content: center;
    }
}

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

    .page-casino__text {
        font-size: 1em;
    }

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

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

    .page-casino__btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .page-casino__btn--lg {
        padding: 12px 25px;
        font-size: 1.05em;
    }

    .page-casino__features-grid,
    .page-casino__promotions-grid,
    .page-casino__security-grid {
        grid-template-columns: 1fr;
    }

    .page-casino__floating-promo {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px;
    }

    .page-casino__floating-promo-text {
        font-size: 0.9em;
    }

    .page-casino__floating-promo-icon {
        width: 25px;
        height: 25px;
    }
}