/* style/live.css */
.page-live {
    padding-top: var(--header-offset, 120px);
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

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

.page-live__section-title {
    font-size: 2.8em;
    color: #007bff;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-live__section-description {
    font-size: 1.1em;
    color: #555555;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Hero Section */
.page-live__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.page-live__hero-image {
    width: 100%;
    position: relative;
    z-index: 1;
}

.page-live__hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-live__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.page-live__hero-title {
    font-size: 3.5em;
    color: #ffc107;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.page-live__hero-description {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 30px;
}

.page-live__hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-live__hero-cta {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-live__hero-cta--primary {
    background-color: #ffc107;
    color: #333333;
    border: 2px solid #ffc107;
}

.page-live__hero-cta--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-live__hero-cta--secondary {
    background-color: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.page-live__hero-cta--secondary:hover {
    background-color: #ffc107;
    color: #333333;
    transform: translateY(-3px);
}

/* About Section */
.page-live__about-section .page-live__section-description {
    text-align: left;
    margin-bottom: 20px;
}

/* Games Section */
.page-live__section--dark-bg {
    background-color: #007bff;
    color: #ffffff;
}

.page-live__section--dark-bg .page-live__section-title {
    color: #ffc107;
}

.page-live__section--dark-bg .page-live__section-description {
    color: #e0e0e0;
}

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

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

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

.page-live__game-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-live__game-title {
    font-size: 1.8em;
    color: #ffc107;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-live__game-cta {
    background-color: #ffc107;
    color: #333333;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.page-live__game-cta:hover {
    background-color: #e0a800;
}

/* Benefits Section */
.page-live__benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-live__benefit-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-live__benefit-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live__benefit-text {
    font-size: 1em;
    color: #555555;
}

.page-live__image-centered {
    margin-top: 60px;
    text-align: center;
}

.page-live__security-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Promotions Section */
.page-live__section--gold-bg {
    background-color: #ffc107;
    color: #333333;
}

.page-live__section--gold-bg .page-live__section-title {
    color: #007bff;
}

.page-live__section--gold-bg .page-live__section-description {
    color: #555555;
}

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

.page-live__promotion-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-live__promotion-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live__promotion-text {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-live__promotion-cta {
    background-color: #007bff;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.page-live__promotion-cta:hover {
    background-color: #0056b3;
}

.page-live__all-promos-cta {
    margin-top: 50px;
}

/* How-to-Play Section */
.page-live__how-to-play-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-live__step {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-live__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-live__step-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live__step-text {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-live__step-cta {
    background-color: #ffc107;
    color: #333333;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.page-live__step-cta:hover {
    background-color: #e0a800;
}

/* FAQ Section */
.page-live__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-live__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
    padding: 20px 25px;
    font-size: 1.2em;
    color: #007bff;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    display: block;
    background-color: #f0f7ff;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-live__faq-question:hover {
    background-color: #e6f0ff;
}

.page-live__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #007bff;
    transition: transform 0.3s ease;
}

.page-live__faq-question--active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-live__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #ffffff;
    padding: 0 25px;
}

.page-live__faq-answer p {
    padding-bottom: 20px;
    font-size: 1em;
    color: #555555;
}

/* Final CTA Section */
.page-live__cta-section {
    background-color: #007bff;
    color: #ffffff;
    padding: 80px 20px;
}

.page-live__cta-section .page-live__section-title {
    color: #ffc107;
}

.page-live__cta-section .page-live__section-description {
    color: #e0e0e0;
    margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live__hero-title {
        font-size: 3em;
    }
    .page-live__hero-description {
        font-size: 1.1em;
    }
    .page-live__section-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-live img {
        max-width: 100%;
        height: auto;
    }
    .page-live__hero-content {
        max-width: 90%;
        padding: 15px;
    }
    .page-live__hero-title {
        font-size: 2.2em;
    }
    .page-live__hero-description {
        font-size: 1em;
    }
    .page-live__hero-ctas {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__hero-cta {
        width: 100%;
        max-width: 300px;
    }
    .page-live__section {
        padding: 40px 0;
    }
    .page-live__section-title {
        font-size: 2em;
    }
    .page-live__game-grid,
    .page-live__benefits-list,
    .page-live__promotion-grid,
    .page-live__how-to-play-steps {
        grid-template-columns: 1fr;
    }
    .page-live__game-image,
    .page-live__security-image {
        min-width: 200px;
        width: 100%;
        height: auto;
    }
    .page-live__container {
        padding: 0 15px;
    }
    .page-live {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 1.8em;
    }
    .page-live__hero-description {
        font-size: 0.9em;
    }
    .page-live__section-title {
        font-size: 1.8em;
    }
    .page-live__hero-cta {
        font-size: 1em;
        padding: 12px 20px;
    }
}