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

.page-game-lobby-live-casino {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f7f6;
}

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

.page-game-lobby-live-casino__hero {
    background: linear-gradient(135deg, #0056b3, #003d80);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-game-lobby-live-casino__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #ffd700; /* Gold for emphasis */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-game-lobby-live-casino__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 800px;
    opacity: 0.9;
}

.page-game-lobby-live-casino__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: auto;
    opacity: 0.6;
    z-index: 0;
    object-fit: cover;
}

.page-game-lobby-live-casino__hero .page-game-lobby-live-casino__container {
    position: relative;
    z-index: 1;
}

.page-game-lobby-live-casino__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.page-game-lobby-live-casino__section:nth-of-type(even) {
    background-color: #f9f9f9;
}

.page-game-lobby-live-casino__section-title {
    font-size: 2.5em;
    color: #0056b3;
    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 {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-game-lobby-live-casino__text strong {
    color: #0056b3;
}

.page-game-lobby-live-casino__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-game-lobby-live-casino__btn--primary {
    background-color: #ffd700;
    color: #0056b3;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-live-casino__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-game-lobby-live-casino__btn--secondary {
    background-color: #0056b3;
    color: #ffffff;
    border: 2px solid #0056b3;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

.page-game-lobby-live-casino__btn--secondary:hover {
    background-color: #003d80;
    border-color: #003d80;
}

.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: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-lobby-live-casino__game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-game-lobby-live-casino__game-title {
    font-size: 1.6em;
    color: #0056b3;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-game-lobby-live-casino__game-desc {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 20px;
    line-height: 1.6;
}

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

.page-game-lobby-live-casino__feature-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    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 2px 5px rgba(0, 86, 179, 0.3));
}

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

.page-game-lobby-live-casino__feature-desc {
    font-size: 1em;
    color: #666;
    line-height: 1.7;
}

.page-game-lobby-live-casino__steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-game-lobby-live-casino__steps li {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 70px;
}

.page-game-lobby-live-casino__steps li:last-child {
    margin-bottom: 0;
}

.page-game-lobby-live-casino__steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 25px;
    top: 25px;
    width: 40px;
    height: 40px;
    background-color: #0056b3;
    color: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 86, 179, 0.4);
}

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

.page-game-lobby-live-casino__cta-bottom {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-game-lobby-live-casino__btn--download {
    background-color: #0056b3;
    color: #ffffff;
    border: 2px solid #0056b3;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
}

.page-game-lobby-live-casino__btn--download:hover {
    background-color: #003d80;
    border-color: #003d80;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.6);
}

.page-game-lobby-live-casino__section--responsible-gaming {
    background-color: #eaf3ff;
    padding: 50px 0;
    text-align: center;
}

.page-game-lobby-live-casino__section--responsible-gaming .page-game-lobby-live-casino__section-title {
    color: #003d80;
}

.page-game-lobby-live-casino__section--responsible-gaming .page-game-lobby-live-casino__text {
    max-width: 900px;
    margin: 0 auto 20px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-lobby-live-casino__hero-title {
        font-size: 2.5em;
    }
    .page-game-lobby-live-casino__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-lobby-live-casino__section-title {
        font-size: 2em;
    }
    .page-game-lobby-live-casino__game-grid, .page-game-lobby-live-casino__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-lobby-live-casino__hero {
        padding: 60px 0;
        min-height: 350px;
    }
    .page-game-lobby-live-casino__hero-title {
        font-size: 2em;
    }
    .page-game-lobby-live-casino__hero-subtitle {
        font-size: 1em;
    }
    .page-game-lobby-live-casino__section {
        padding: 40px 0;
    }
    .page-game-lobby-live-casino__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-lobby-live-casino__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-lobby-live-casino__steps li {
        padding-left: 60px;
    }
    .page-game-lobby-live-casino__steps li::before {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
        left: 20px;
        top: 20px;
    }
}

@media (max-width: 576px) {
    .page-game-lobby-live-casino__hero {
        padding: 40px 0;
        min-height: 300px;
    }
    .page-game-lobby-live-casino__hero-title {
        font-size: 1.8em;
    }
    .page-game-lobby-live-casino__hero-subtitle {
        font-size: 0.9em;
    }
    .page-game-lobby-live-casino__section-title {
        font-size: 1.5em;
    }
    .page-game-lobby-live-casino__game-grid, .page-game-lobby-live-casino__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-game-lobby-live-casino__btn--primary, .page-game-lobby-live-casino__btn--download {
        width: 100%;
        max-width: 300px;
    }
    .page-game-lobby-live-casino__cta-bottom {
        flex-direction: column;
        align-items: center;
    }
}