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

:root {
    --v9bet-primary: #007bff;
    --v9bet-secondary: #ffc107;
    --v9bet-dark: #212529;
    --v9bet-light: #f8f9fa;
    --v9bet-gray: #6c757d;
    --text-on-primary: #ffffff; /* White text on primary blue */
    --text-on-secondary: #212529; /* Dark text on secondary yellow */
    --text-dark: #212529;
    --text-light: #ffffff;
}

.page-game-lobby-live-casino {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.page-game-lobby-live-casino__hero-section {
    background: linear-gradient(135deg, var(--v9bet-primary) 0%, #0056b3 100%); /* Darker blue gradient for depth */
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-lobby-live-casino__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:live_casino,abstract,dynamic]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-lobby-live-casino__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-live-casino__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

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

.page-game-lobby-live-casino__btn--primary {
    background-color: var(--v9bet-secondary);
    color: var(--text-on-secondary);
    border: none;
}

.page-game-lobby-live-casino__btn--primary:hover {
    background-color: #e6a800; /* Slightly darker yellow */
    transform: translateY(-3px);
}

.page-game-lobby-live-casino__btn--secondary {
    background-color: var(--v9bet-primary);
    color: var(--text-on-primary);
    border: 1px solid var(--v9bet-primary);
}

.page-game-lobby-live-casino__btn--secondary:hover {
    background-color: #0056b3; /* Darker blue */
    border-color: #0056b3;
    transform: translateY(-3px);
}

.page-game-lobby-live-casino__btn--text {
    background: none;
    border: none;
    color: var(--v9bet-primary);
    padding: 0;
    text-decoration: underline;
    font-size: 1em;
}

.page-game-lobby-live-casino__btn--text:hover {
    color: #0056b3;
}

.page-game-lobby-live-casino__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-lobby-live-casino__section {
    padding: 80px 0;
    background-color: var(--v9bet-light);
}

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

.page-game-lobby-live-casino__section-title {
    font-size: 2.5em;
    color: var(--v9bet-primary);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-game-lobby-live-casino__section-description {
    font-size: 1.1em;
    text-align: center;
    color: var(--v9bet-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-game-lobby-live-casino__grid-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-game-lobby-live-casino__feature-title {
    font-size: 1.6em;
    color: var(--v9bet-dark);
    margin-bottom: 15px;
}

.page-game-lobby-live-casino__feature-text {
    font-size: 1em;
    color: var(--v9bet-gray);
}

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

.page-game-lobby-live-casino__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-game-lobby-live-casino__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-game-lobby-live-casino__game-title {
    font-size: 1.8em;
    color: var(--v9bet-primary);
    padding: 20px 20px 10px;
}

.page-game-lobby-live-casino__game-description {
    font-size: 1em;
    color: var(--v9bet-gray);
    padding: 0 20px 15px;
    flex-grow: 1;
}

.page-game-lobby-live-casino__game-features {
    list-style: none;
    padding: 0 20px 15px;
    margin: 0;
}

.page-game-lobby-live-casino__game-features li {
    margin-bottom: 8px;
    color: var(--v9bet-dark);
    position: relative;
    padding-left: 20px;
}

.page-game-lobby-live-casino__game-features li::before {
    content: '✓';
    color: var(--v9bet-secondary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.page-game-lobby-live-casino__game-card .page-game-lobby-live-casino__btn {
    margin: 20px;
    text-align: center;
    align-self: flex-start; /* Align button to start */
}

.page-game-lobby-live-casino__how-to-play .page-game-lobby-live-casino__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

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

.page-game-lobby-live-casino__step-number {
    background-color: var(--v9bet-secondary);
    color: var(--text-on-secondary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    font-weight: bold;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid var(--v9bet-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-live-casino__step-title {
    font-size: 1.8em;
    color: var(--v9bet-primary);
    margin-bottom: 15px;
}

.page-game-lobby-live-casino__step-text {
    color: var(--v9bet-gray);
    margin-bottom: 20px;
}

.page-game-lobby-live-casino__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-game-lobby-live-casino__promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-game-lobby-live-casino__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-game-lobby-live-casino__promo-title {
    font-size: 1.6em;
    color: var(--v9bet-primary);
    padding: 20px 20px 10px;
}

.page-game-lobby-live-casino__promo-text {
    font-size: 1em;
    color: var(--v9bet-gray);
    padding: 0 20px 20px;
}

.page-game-lobby-live-casino__cta-center {
    text-align: center;
}

.page-game-lobby-live-casino__app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.page-game-lobby-live-casino__app-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-game-lobby-live-casino__app-text p {
    font-size: 1.1em;
    color: var(--v9bet-dark);
    margin-bottom: 20px;
}

.page-game-lobby-live-casino__app-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-game-lobby-live-casino__app-benefits li {
    font-size: 1.05em;
    color: var(--v9bet-dark);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-game-lobby-live-casino__app-benefits li::before {
    content: '★';
    color: var(--v9bet-secondary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.page-game-lobby-live-casino__app-image-wrapper {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    text-align: center;
}

.page-game-lobby-live-casino__app-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-game-lobby-live-casino__responsible-gambling {
    background-color: #f0f0f0;
}

.page-game-lobby-live-casino__responsibility-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: left;
}

.page-game-lobby-live-casino__responsibility-list li {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid var(--v9bet-primary);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: var(--v9bet-dark);
}

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

.page-game-lobby-live-casino__faq-question {
    font-size: 1.4em;
    color: var(--v9bet-primary);
    margin-bottom: 10px;
}

.page-game-lobby-live-casino__faq-answer {
    font-size: 1em;
    color: var(--v9bet-gray);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-lobby-live-casino__hero-title {
        font-size: 2.8em;
    }
    .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__grid,
    .page-game-lobby-live-casino__game-grid,
    .page-game-lobby-live-casino__how-to-play .page-game-lobby-live-casino__steps,
    .page-game-lobby-live-casino__promotions .page-game-lobby-live-casino__promo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-game-lobby-live-casino__hero-section {
        padding: 80px 0;
    }
    .page-game-lobby-live-casino__hero-title {
        font-size: 2.2em;
    }
    .page-game-lobby-live-casino__hero-subtitle {
        font-size: 1em;
    }
    .page-game-lobby-live-casino__section {
        padding: 60px 0;
    }
    .page-game-lobby-live-casino__section-title {
        font-size: 1.8em;
    }
    .page-game-lobby-live-casino__grid,
    .page-game-lobby-live-casino__game-grid,
    .page-game-lobby-live-casino__how-to-play .page-game-lobby-live-casino__steps,
    .page-game-lobby-live-casino__promotions .page-game-lobby-live-casino__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-game-lobby-live-casino__app-content {
        flex-direction: column;
    }
    .page-game-lobby-live-casino__app-text,
    .page-game-lobby-live-casino__app-image-wrapper {
        max-width: 100%;
    }
    .page-game-lobby-live-casino__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        top: -25px;
    }
    .page-game-lobby-live-casino__step-item {
        padding-top: 50px;
    }
}

@media (max-width: 480px) {
    .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__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-lobby-live-casino__section-title {
        font-size: 1.5em;
    }
    .page-game-lobby-live-casino__game-title,
    .page-game-lobby-live-casino__promo-title,
    .page-game-lobby-live-casino__step-title,
    .page-game-lobby-live-casino__faq-question {
        font-size: 1.3em;
    }
}