/* style/live.css */

.page-live {
    color: #333333; /* Dark text for default light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-live__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #0A2463; /* Dark blue background for hero content */
    color: #ffffff;
    padding: 0;
}

.page-live__hero-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 550px; /* Minimum height for hero section */
}

.page-live__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Slightly dim the image to make text stand out */
}

.page-live__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.page-live__main-title {
    font-size: 3.5em;
    color: #E3B23C;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live__description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-live__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-live__button--primary {
    background-color: #E3B23C; /* Gold */
    color: #0A2463; /* Dark Blue */
    border: 2px solid #E3B23C;
}

.page-live__button--primary:hover {
    background-color: #f0c24d;
    transform: translateY(-3px);
}

.page-live__button--secondary {
    background-color: transparent;
    color: #E3B23C; /* Gold */
    border: 2px solid #E3B23C;
}

.page-live__button--secondary:hover {
    background-color: rgba(227, 178, 60, 0.1);
    transform: translateY(-3px);
}

.page-live__button--tertiary {
    background-color: #0A2463; /* Dark Blue */
    color: #E3B23C; /* Gold */
    border: 2px solid #0A2463;
}

.page-live__button--tertiary:hover {
    background-color: #1a3c7a;
    transform: translateY(-3px);
}

.page-live__section-title {
    font-size: 2.8em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-live__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E3B23C;
    border-radius: 2px;
}

.page-live__section-subtitle {
    font-size: 1.2em;
    color: #555555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-live__about-section,
.page-live__why-choose-us,
.page-live__faq-section,
.page-live__final-cta {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-live__about-section .page-live__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444444;
}

.page-live__games-showcase {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

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

.page-live__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-live__game-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-live__game-title a {
    color: #0A2463;
    text-decoration: none;
}

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

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

.page-live__game-card .page-live__button {
    margin-top: 10px;
    width: calc(100% - 40px); /* Adjust width to fit padding */
    margin-left: 20px;
    margin-right: 20px;
}

.page-live__game-card .page-live__button--primary {
    margin-top: 20px;
}

.page-live__why-choose-us {
    background-color: #0A2463; /* Dark Blue background */
    color: #ffffff;
}

.page-live__why-choose-us .page-live__section-title {
    color: #E3B23C; /* Gold title */
}

.page-live__why-choose-us .page-live__section-title::after {
    background-color: #ffffff;
}

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

.page-live__feature-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.page-live__feature-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-live__feature-icon {
    width: 200px; /* Minimum size */
    height: 150px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: brightness(1.1); /* Slightly brighten for contrast, not changing hue */
}

.page-live__feature-title {
    font-size: 1.8em;
    color: #E3B23C;
    margin-bottom: 15px;
}

.page-live__feature-description {
    font-size: 1em;
    color: #f0f0f0;
}

.page-live__promotions-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A2463, #1a3c7a);
    text-align: center;
    color: #ffffff;
}

.page-live__promotions-cta .page-live__section-title {
    color: #E3B23C;
}

.page-live__promotions-cta .page-live__section-title::after {
    background-color: #ffffff;
}

.page-live__promotions-cta .page-live__section-subtitle {
    color: #f0f0f0;
}

.page-live__promotions-cta .page-live__button {
    margin: 20px 10px;
}

.page-live__faq-section {
    background-color: #ffffff;
}

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

.page-live__accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-live__accordion-header {
    background-color: #0A2463;
    color: #E3B23C;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-live__accordion-header:hover {
    background-color: #1a3c7a;
}

.page-live__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #E3B23C;
}

.page-live__accordion-header.active::after {
    content: '-';
}

.page-live__accordion-content {
    padding: 0 25px;
    background-color: #fdfdfd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-live__accordion-content p {
    padding: 15px 0;
    color: #555555;
    font-size: 1em;
}

.page-live__final-cta {
    background: #E3B23C; /* Gold background */
    color: #0A2463; /* Dark Blue text */
    text-align: center;
}

.page-live__final-cta .page-live__section-title {
    color: #0A2463;
}

.page-live__final-cta .page-live__section-title::after {
    background-color: #0A2463;
}

.page-live__final-cta .page-live__section-subtitle {
    color: #333333;
}

.page-live__final-cta .page-live__button {
    margin: 20px 10px;
}

.page-live__final-cta .page-live__button--primary {
    background-color: #0A2463;
    color: #E3B23C;
    border-color: #0A2463;
}

.page-live__final-cta .page-live__button--primary:hover {
    background-color: #1a3c7a;
    color: #E3B23C;
}

.page-live__final-cta .page-live__button--secondary {
    background-color: transparent;
    color: #0A2463;
    border-color: #0A2463;
}

.page-live__final-cta .page-live__button--secondary:hover {
    background-color: rgba(10, 36, 99, 0.1);
    color: #0A2463;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live__main-title {
        font-size: 3em;
    }
    .page-live__description {
        font-size: 1.1em;
    }
    .page-live__section-title {
        font-size: 2.2em;
    }
    .page-live__game-image {
        height: 200px;
    }
    .page-live__feature-icon {
        width: 150px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .page-live__hero-container {
        min-height: 450px;
    }
    .page-live__main-title {
        font-size: 2.5em;
    }
    .page-live__description {
        font-size: 1em;
    }
    .page-live__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-live__section-title {
        font-size: 2em;
    }
    .page-live__section-subtitle {
        font-size: 1em;
    }
    .page-live__game-grid {
        grid-template-columns: 1fr;
    }
    .page-live__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-live__game-image, .page-live__feature-icon {
        max-width: 100%;
        height: auto;
    }
    .page-live__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-live__accordion-content p {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-live__hero-container {
        min-height: 350px;
    }
    .page-live__main-title {
        font-size: 2em;
    }
    .page-live__description {
        font-size: 0.9em;
    }
    .page-live__section-title {
        font-size: 1.8em;
    }
    .page-live__section-subtitle {
        font-size: 0.9em;
    }
    .page-live__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-live__hero-content {
        padding: 20px 10px;
    }
    .page-live__game-card .page-live__button {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }
}