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

@media (max-width: 768px) {
    .page-live {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header height */
    }
}

.page-live__hero-section {
    background-color: #000000; /* Dark background for hero */
    color: #ffffff; /* Light text on dark background */\    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

@media (min-width: 769px) {
    .page-live__hero-section {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
    }
    .page-live__hero-content {
        flex: 1;
        max-width: 50%;
    }
    .page-live__hero-image {
        flex: 1;
        max-width: 50%;
    }
}

.page-live__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

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

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

.page-live__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 180px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-live__button--primary {
    background-color: #FCBC45; /* Login color for primary action */
    color: #000000; /* Dark text on bright button */
    border: 2px solid #FCBC45;
}

.page-live__button--primary:hover {
    background-color: #e0a030;
    border-color: #e0a030;
}

.page-live__button--secondary {
    background-color: transparent;
    color: #ffffff; /* White text on dark background */
    border: 2px solid #ffffff;
}

.page-live__button--secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

.page-live__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    min-width: unset;
}

.page-live__hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

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

.page-live__section-title {
    font-size: 2.2em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

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

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

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

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

.page-live__feature-description {
    color: #666666;
}

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

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

.page-live__game-card:hover {
    transform: translateY(-8px);
}

.page-live__game-card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency, will be covered by object-fit */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-live__game-card h3 {
    font-size: 1.4em;
    color: #000000;
    margin: 20px 20px 10px;
}

.page-live__game-card p {
    color: #555555;
    margin: 0 20px 20px;
    flex-grow: 1; /* Allows description to take up available space */
}

.page-live__game-card .page-live__button {
    align-self: flex-start;
    margin: 0 20px 20px;
    background-color: #000000; /* Dark button on light card */
    color: #ffffff;
    border: 2px solid #000000;
}

.page-live__game-card .page-live__button:hover {
    background-color: #333333;
    border-color: #333333;
}

.page-live__get-started .page-live__steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-live__step-item {
    background-color: #f8f8f8;
    border-left: 5px solid #FCBC45;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.page-live__step-title {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
}

.page-live__step-description {
    color: #666666;
}

.page-live__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

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

.page-live__bonus-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.page-live__bonus-card:hover {
    transform: translateY(-8px);
}

.page-live__bonus-card img {
    width: 100%;
    height: 220px; /* Fixed height for bonus images */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-live__bonus-title {
    font-size: 1.4em;
    color: #000000;
    margin: 20px 20px 10px;
}

.page-live__bonus-description {
    color: #555555;
    margin: 0 20px;
}

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

.page-live__security-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.page-live__security-title {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
}

.page-live__security-description {
    color: #666666;
}

.page-live__security-image {
    text-align: center;
    margin-top: 40px;
}

.page-live__security-image img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-live__faq-items {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-live__faq-question {
    font-size: 1.2em;
    color: #000000;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-live__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-live__faq-question.active::after {
    transform: rotate(45deg);
}

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

.page-live__faq-answer.active {
    max-height: 200px; /* Arbitrary max-height for smooth transition */
    padding: 10px 20px 20px;
}

.page-live__final-cta {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 0; /* Remove bottom margin for final section */
}

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

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

.page-live__final-cta .page-live__section-intro {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-live__final-cta .page-live__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-live__final-cta .page-live__button--primary {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
}

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

.page-live__final-cta .page-live__button--secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-live__hero-title {
        font-size: 2em;
    }
    .page-live__hero-description {
        font-size: 1em;
    }
    .page-live__section-title {
        font-size: 1.8em;
    }
    .page-live__section-intro {
        font-size: 0.95em;
    }
    .page-live__button {
        padding: 12px 25px;
        min-width: unset;
        width: 100%;
    }
    .page-live__hero-actions,
    .page-live__final-cta .page-live__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-live__game-card img,
    .page-live__bonus-card img {
        height: 200px; /* Slightly smaller on mobile */
    }
    .page-live__security-image img {
        max-width: 100%;
    }
}

/* General img rules for content area to prevent small icons */
.page-live img:not(.shared-header img):not(.shared-footer img) {
    max-width: 100%; /* Ensure responsiveness */
    height: auto;
    min-width: 200px;
    min-height: 200px;
}