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

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

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

.page-live__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-live__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Hero Section */
.page-live__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #000000; /* Dark background for hero content */
    color: #FFFFFF;
    padding: 0;
}

.page-live__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.page-live__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay for text readability */
    z-index: 1.5;
}

.page-live__hero-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px; /* Fixed height for hero section */
    max-height: 100vh;
    overflow: hidden;
}

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

.page-live__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-live__hero-cta {
    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, color 0.3s ease;
    white-space: nowrap; /* Prevent button text from wrapping */
}

.page-live__button--register {
    background-color: #000000; /* Black background */
    color: #FFFFFF; /* White text for Register */
    border: 2px solid #FFFFFF;
}

.page-live__button--register:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.page-live__button--login {
    background-color: #FCBC45; /* Yellow background for Login */
    color: #000000; /* Black text for Login */
    border: 2px solid #FCBC45;
}

.page-live__button--login:hover {
    background-color: #e0a73a;
    color: #FFFFFF;
}

/* Introduction Section */
.page-live__introduction-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

/* Features Section */
.page-live__features-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

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

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

.page-live__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
    object-fit: cover;
}

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

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

/* Game Spotlight Section */
.page-live__game-spotlight-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-live__game-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-live__game-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
    object-fit: cover;
}

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

.page-live__game-description {
    font-size: 1em;
    color: #555555;
    flex-grow: 1; /* Allow description to take available space */
    margin-bottom: 20px;
}

.page-live__button--view-details,
.page-live__button--play-now {
    background-color: #FCBC45;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Push button to bottom */
}

.page-live__button--view-details:hover,
.page-live__button--play-now:hover {
    background-color: #e0a73a;
    color: #FFFFFF;
}

/* Providers Section */
.page-live__providers-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.page-live__provider-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.page-live__provider-logo {
    max-width: 200px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease; /* Subtle hover effect without changing color */
    min-width: 200px; /* Ensure images are not too small */
    min-height: 100px;
}

.page-live__provider-logo:hover {
    transform: scale(1.05);
}

/* Get Started Section */
.page-live__get-started-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-live__step-item {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
}

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

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

.page-live__button--register-small,
.page-live__button--deposit,
.page-live__button--play-now-small {
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-live__button--register-small:hover,
.page-live__button--deposit:hover,
.page-live__button--play-now-small:hover {
    background-color: #333333;
    color: #FCBC45;
}

/* Bonuses Section */
.page-live__bonuses-section {
    padding: 60px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.page-live__bonus-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-top: 30px;
    display: inline-block; /* For centering */
    max-width: 500px; /* Limit width for larger screens */
    width: 100%;
    margin-right: 15px;
    margin-left: 15px;
    vertical-align: top; /* Align top when inline-block */
}

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

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

.page-live__bonus-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

.page-live__button--view-promo {
    background-color: #FCBC45;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-live__button--view-promo:hover {
    background-color: #e0a73a;
    color: #FFFFFF;
}

.page-live__button--all-promos {
    margin-top: 40px;
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-live__button--all-promos:hover {
    background-color: #333333;
    color: #FCBC45;
}

/* Mobile Section */
.page-live__mobile-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-live__mobile-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-live__mobile-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-live__mobile-text {
    flex: 1;
    min-width: 300px;
}

.page-live__mobile-subtitle {
    font-size: 2em;
    color: #000000;
    margin-bottom: 20px;
}

.page-live__button--download {
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
}

.page-live__button--download:hover {
    background-color: #333333;
    color: #FCBC45;
}

/* Details List Section */
.page-live__details-list-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

.page-live__details-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.page-live__details-title a {
    color: #000000;
    text-decoration: none;
}

.page-live__details-title a:hover {
    color: #FCBC45;
    text-decoration: underline;
}

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

.page-live__button--read-more {
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
    display: inline-block;
}

.page-live__button--read-more:hover {
    background-color: #333333;
    color: #FCBC45;
}

/* FAQ Section */
.page-live__faq-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-live__faq-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}