/* style/live-casino.css */

/* General Page Styles */
.page-live-casino {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-live-casino__section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-live-casino__section-subtitle {
    font-size: 1.2em;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.page-live-casino__text-content {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

/* Buttons */
.page-live-casino__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-live-casino__btn--primary {
    background-color: #007bff; /* Primary blue */
    color: #ffffff; /* White text for contrast */
    border: 2px solid #007bff;
}

.page-live-casino__btn--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-live-casino__btn--secondary {
    background-color: transparent;
    color: #007bff; /* Primary blue text */
    border: 2px solid #007bff;
}

.page-live-casino__btn--secondary:hover {
    background-color: #007bff;
    color: #ffffff; /* White text for contrast */
    transform: translateY(-2px);
}

.page-live-casino__btn--link {
    background-color: #ffc107; /* Auxiliary gold */
    color: #333; /* Dark text for contrast */
    border: 2px solid #ffc107;
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 25px;
}

.page-live-casino__btn--link:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #fff;
}

.page-live-casino__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 20px;
    background-color: #ffc107;
    color: #333;
    border: none;
}

.page-live-casino__btn--small:hover {
    background-color: #e0a800;
    color: #fff;
}

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

.page-live-casino__btn--download {
    background-color: #28a745; /* Green for download */
    color: #ffffff;
    border: 2px solid #28a745;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 25px;
}

.page-live-casino__btn--download:hover {
    background-color: #218838;
    border-color: #218838;
}

/* Hero Section */
.page-live-casino__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient */
    color: #ffffff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-live-casino__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    animation: float1 10s infinite ease-in-out;
}

.page-live-casino__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    animation: float2 12s infinite ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
    100% { transform: translate(0, 0); }
}

.page-live-casino__hero-content {
    flex: 1;
    max-width: 600px;
    padding: 20px;
    text-align: left;
    z-index: 1;
}

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

.page-live-casino__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e9ecef;
}

.page-live-casino__hero-actions .page-live-casino__btn {
    margin-right: 15px;
}

.page-live-casino__hero-image-wrapper {
    flex: 1;
    max-width: 500px;
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.page-live-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-live-casino__intro {
    padding: 60px 0;
    background-color: #ffffff;
}

/* Featured Games Section */
.page-live-casino__featured-games {
    padding: 60px 0;
    background-color: #f1f5f9; /* Light grey background */
}

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

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

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

.page-live-casino__game-image {
    max-width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-live-casino__game-title {
    font-size: 1.8em;
    color: #007bff; /* Primary blue */
    margin-bottom: 10px;
}

.page-live-casino__game-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Why Choose Section */
.page-live-casino__why-choose {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

.page-live-casino__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 123, 255, 0.2));
}

.page-live-casino__feature-title {
    font-size: 1.5em;
    color: #007bff; /* Primary blue */
    margin-bottom: 10px;
}

.page-live-casino__feature-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
}

/* How To Play Section */
.page-live-casino__how-to-play {
    padding: 60px 0;
    background-color: #f1f5f9;
}

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

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

.page-live-casino__step-number {
    font-size: 3em;
    font-weight: bold;
    color: #ffc107; /* Auxiliary gold */
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: 0.2;
    line-height: 1;
}

.page-live-casino__step-title {
    font-size: 1.8em;
    color: #007bff; /* Primary blue */
    margin-bottom: 15px;
    margin-top: 10px;
}

.page-live-casino__step-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
}

/* Call to Action Section */
.page-live-casino__cta {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-live-casino__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-live-casino__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e9ecef;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-live-casino__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-live-casino__hero-content {
        max-width: 100%;
        text-align: center;
        padding-bottom: 40px;
    }

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

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

    .page-live-casino__hero-actions .page-live-casino__btn {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .page-live-casino__hero-image-wrapper {
        max-width: 80%;
    }

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

    .page-live-casino__cta-title {
        font-size: 2.5em;
    }

    .page-live-casino__cta .page-live-casino__btn {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-live-casino__hero {
        padding: 60px 0;
    }

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

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

    .page-live-casino__game-grid, .page-live-casino__feature-grid, .page-live-casino__steps {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .page-live-casino__game-title, .page-live-casino__feature-title, .page-live-casino__step-title {
        font-size: 1.4em;
    }

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