.page-live {
    color: #333333;
    background-color: #f4f4f4;
    padding-top: var(--header-offset, 120px);
}

.page-live__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.page-live__hero-container {
    position: relative;
    max-width: 1600px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-live__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-live__hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
    font-weight: 700;
}

.page-live__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-live__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-live__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.page-live__section-title {
    font-size: 2.8em;
    color: #8B0000;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-live__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.page-live__games-showcase, .page-live__features-section, .page-live__how-to-play, .page-live__faq-section, .page-live__cta-bottom {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

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

.page-live__game-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-live__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-live__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 5px solid #FFD700;
}

.page-live__game-title {
    font-size: 1.6em;
    color: #8B0000;
    margin: 20px 15px 10px 15px;
    font-weight: 600;
}

.page-live__game-title a {
    color: #8B0000;
    text-decoration: none;
}

.page-live__game-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-live__game-text {
    font-size: 1em;
    color: #666666;
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-live__game-button {
    display: inline-block;
    background-color: #8B0000;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-live__game-button:hover {
    background-color: #a30000;
    transform: translateY(-2px);
}

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

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

.page-live__feature-item:hover {
    transform: translateY(-5px);
}

.page-live__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #FFD700;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-live__feature-heading {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-live__feature-text {
    font-size: 0.95em;
    color: #666666;
    line-height: 1.5;
}

.page-live__bonuses-cta {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    margin: 80px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.page-live__bonuses-content .page-live__section-title {
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-live__bonuses-content .page-live__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-live__bonuses-button {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-live__bonuses-button:hover {
    background-color: #e6c200;
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.page-live__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-live__step-item {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-live__step-item:hover {
    transform: translateY(-5px);
}

.page-live__step-heading {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-live__step-text {
    font-size: 1em;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-live__step-button {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-live__step-button:hover {
    background-color: #e6c200;
}

.page-live__faq-accordion {
    margin-top: 40px;
}

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

.page-live__faq-question {
    font-size: 1.3em;
    color: #8B0000;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    font-weight: 600;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

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

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

.page-live__faq-answer {
    font-size: 1em;
    color: #555555;
    padding: 0 25px 20px 25px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-live__faq-question.active + .page-live__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-live__cta-bottom {
    text-align: center;
    padding: 60px 20px;
    background-color: #FFD700;
    border-radius: 15px;
    margin-top: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-live__cta-bottom .page-live__section-title {
    color: #8B0000;
}

.page-live__cta-bottom .page-live__section-description {
    color: #666666;
    margin-bottom: 40px;
}

.page-live__cta-button {
    display: inline-block;
    background-color: #8B0000;
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #8B0000;
}

.page-live__cta-button:hover {
    background-color: #a30000;
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live__hero-title {
        font-size: 2.8em;
    }
    .page-live__hero-description {
        font-size: 1.1em;
    }
    .page-live__hero-button {
        font-size: 1.2em;
        padding: 12px 30px;
    }
    .page-live__section-title {
        font-size: 2.2em;
    }
    .page-live__bonuses-button, .page-live__cta-button {
        font-size: 1.3em;
        padding: 15px 40px;
    }
}

@media (max-width: 768px) {
    .page-live__hero-title {
        font-size: 2em;
    }
    .page-live__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-live__hero-button {
        font-size: 1em;
        padding: 10px 25px;
    }
    .page-live__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 15px;
    }
    .page-live__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-live__game-image, .page-live__feature-icon {
        max-width: 100%;
        height: auto;
    }
    .page-live__game-card, .page-live__feature-item, .page-live__step-item {
        padding: 20px;
    }
    .page-live__bonuses-cta, .page-live__cta-bottom {
        padding: 50px 15px;
        margin: 60px 0;
    }
    .page-live__bonuses-button, .page-live__cta-button {
        font-size: 1.1em;
        padding: 12px 30px;
    }
    .page-live__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-live__faq-question::after {
        right: 20px;
    }
    .page-live__faq-answer {
        padding: 0 20px 15px 20px;
    }
    /* Ensure content images do not overflow */
    .page-live img {
        max-width: 100%;
        height: auto;
    }
    /* Specific override for feature icons to ensure minimum size is met, if they were smaller */
    .page-live__feature-icon {
        min-width: 200px;
        min-height: 200px;
        width: auto; /* Allow auto scaling based on min-width */
        height: auto; /* Allow auto scaling based on min-height */
        margin-left: auto;
        margin-right: auto;
    }
    /* Ensure game images meet minimum size requirements */
    .page-live__game-image {
        min-width: 200px;
        min-height: 200px;
        width: auto;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-live__hero-title {
        font-size: 1.6em;
    }
    .page-live__hero-description {
        font-size: 0.9em;
    }
    .page-live__hero-button {
        font-size: 0.9em;
        padding: 8px 20px;
    }
    .page-live__section-title {
        font-size: 1.5em;
    }
    .page-live__bonuses-button, .page-live__cta-button {
        font-size: 1em;
        padding: 10px 25px;
    }
    .page-live__game-grid, .page-live__features-grid, .page-live__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-live__game-image, .page-live__feature-icon {
        min-width: 200px;
        min-height: 200px;
        width: auto;
        height: auto;
    }
}