/* style/game-lobby-live-casino.css */

/* Base styles for the page content wrapper */
.page-game-lobby-live-casino {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A1E2F; /* Slightly lighter dark blue for main background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-game-lobby-live-casino__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 550px;
    background-color: #2A2E43; /* Main primary color */
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-game-lobby-live-casino__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-game-lobby-live-casino__main-title {
    font-size: 3.5em;
    color: #FFD700; /* Secondary color for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

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

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

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

.page-game-lobby-live-casino__btn--primary {
    background-color: #FFD700; /* Secondary color for primary action */
    color: #2A2E43; /* Dark text on bright button */
}

.page-game-lobby-live-casino__btn--primary:hover {
    background-color: #E0B800; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-game-lobby-live-casino__btn--secondary {
    background-color: #4A4E6A; /* Darker variant of primary color */
    color: #FFD700; /* Secondary color for text */
    border: 2px solid #FFD700;
}

.page-game-lobby-live-casino__btn--secondary:hover {
    background-color: #5A5E7A; /* Lighter variant on hover */
    transform: translateY(-3px);
}

.page-game-lobby-live-casino__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    overflow: hidden;
}

.page-game-lobby-live-casino__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(3px);
}

/* General Section Styles */
.page-game-lobby-live-casino__introduction-section,
.page-game-lobby-live-casino__games-overview,
.page-game-lobby-live-casino__why-choose-us,
.page-game-lobby-live-casino__how-to-start-section,
.page-game-lobby-live-casino__faq-section,
.page-game-lobby-live-casino__final-cta-section {
    padding: 60px 0;
    background-color: #2A2E43; /* Primary color for sections */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-live-casino__introduction-section {
    background-color: #1A1E2F;
}

.page-game-lobby-live-casino__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Secondary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-lobby-live-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-game-lobby-live-casino__text-content {
    font-size: 1.1em;
    color: #D0D0D0;
    text-align: justify;
    margin-bottom: 20px;
}

.page-game-lobby-live-casino__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-game-lobby-live-casino__btn--explore {
    background-color: #FFD700;
    color: #2A2E43;
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-live-casino__btn--explore:hover {
    background-color: #E0B800;
}

/* Game Grid */
.page-game-lobby-live-casino__games-overview {
    background-color: #2A2E43;
}

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

.page-game-lobby-live-casino__game-card {
    background-color: #1A1E2F; /* Darker background for cards */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-lobby-live-casino__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-game-lobby-live-casino__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-lobby-live-casino__game-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

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

.page-game-lobby-live-casino__btn--play {
    background-color: #FFD700;
    color: #2A2E43;
    width: 100%;
}

.page-game-lobby-live-casino__btn--play:hover {
    background-color: #E0B800;
}

/* Why Choose Us Section */
.page-game-lobby-live-casino__why-choose-us {
    background-color: #1A1E2F;
}

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

.page-game-lobby-live-casino__feature-item {
    background-color: #2A2E43;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-game-lobby-live-casino__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-lobby-live-casino__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-lobby-live-casino__feature-description {
    font-size: 1em;
    color: #C0C0C0;
}

/* How to Start Section */
.page-game-lobby-live-casino__how-to-start-section {
    background-color: #2A2E43;
}

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

.page-game-lobby-live-casino__step-item {
    background-color: #1A1E2F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-live-casino__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FFD700;
    color: #2A2E43;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-game-lobby-live-casino__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-lobby-live-casino__step-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-game-lobby-live-casino__btn--step {
    background-color: #4A4E6A;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-game-lobby-live-casino__btn--step:hover {
    background-color: #5A5E7A;
}

.page-game-lobby-live-casino__cta-banner {
    position: relative;
    background-color: #4A4E6A; /* A darker shade for the banner */
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-game-lobby-live-casino__cta-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 30px;
    filter: brightness(0.8);
}

.page-game-lobby-live-casino__cta-content {
    flex-grow: 1;
}

.page-game-lobby-live-casino__cta-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-lobby-live-casino__cta-description {
    font-size: 1.1em;
    color: #D0D0D0;
    margin-bottom: 20px;
}

.page-game-lobby-live-casino__btn--cta {
    background-color: #FFD700;
    color: #2A2E43;
    padding: 12px 25px;
    font-size: 1em;
}

.page-game-lobby-live-casino__btn--cta:hover {
    background-color: #E0B800;
}

/* FAQ Section */
.page-game-lobby-live-casino__faq-section {
    background-color: #1A1E2F;
}

.page-game-lobby-live-casino__faq-list {
    margin-top: 40px;
}

.page-game-lobby-live-casino__faq-item {
    background-color: #2A2E43;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-live-casino__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-lobby-live-casino__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
}

.page-game-lobby-live-casino__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-game-lobby-live-casino__faq-answer a:hover {
    color: #E0B800;
}

/* Final CTA Section */
.page-game-lobby-live-casino__final-cta-section {
    background-color: #2A2E43;
    text-align: center;
    padding: 80px 0;
    border-top: 5px solid #FFD700;
}

.page-game-lobby-live-casino__final-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Copyright */
.page-game-lobby-live-casino__copyright {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    color: #888;
    background-color: #1A1E2F;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-lobby-live-casino__main-title {
        font-size: 2.8em;
    }
    .page-game-lobby-live-casino__section-title {
        font-size: 2em;
    }
    .page-game-lobby-live-casino__hero-section {
        min-height: 450px;
    }
    .page-game-lobby-live-casino__cta-banner {
        flex-direction: column;
        text-align: center;
    }
    .page-game-lobby-live-casino__cta-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-game-lobby-live-casino__main-title {
        font-size: 2.2em;
    }
    .page-game-lobby-live-casino__hero-description {
        font-size: 1.1em;
    }
    .page-game-lobby-live-casino__section-title {
        font-size: 1.8em;
    }
    .page-game-lobby-live-casino__hero-actions,
    .page-game-lobby-live-casino__final-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-lobby-live-casino__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-game-lobby-live-casino__game-card,
    .page-game-lobby-live-casino__feature-item,
    .page-game-lobby-live-casino__step-item {
        padding: 20px;
    }
    .page-game-lobby-live-casino__cta-title {
        font-size: 1.6em;
    }
    .page-game-lobby-live-casino__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-live-casino__main-title {
        font-size: 1.8em;
    }
    .page-game-lobby-live-casino__hero-section {
        min-height: 350px;
        padding: 40px 15px;
    }
    .page-game-lobby-live-casino__section-title {
        font-size: 1.5em;
    }
    .page-game-lobby-live-casino__btn {
        width: 100%;
        max-width: none;
    }
    .page-game-lobby-live-casino__game-image {
        height: 150px;
    }
    .page-game-lobby-live-casino__cta-image {
        width: 100px;
        height: 100px;
    }
}