.page-live {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Main text color for dark background */
    background-color: #0A0A0A; /* Page background color */
    line-height: 1.6;
}

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

.page-live__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Highlight with main brand color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

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

/* Buttons */
.page-live__btn-primary,
.page-live__btn-secondary,
.page-live__btn-text {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Ensure long words break */
    max-width: 100%;
}

.page-live__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for light button */
    border: none;
}

.page-live__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-live__btn-secondary {
    background-color: transparent;
    color: #F2C14E; /* Brand color text */
    border: 2px solid #F2C14E;
}

.page-live__btn-secondary:hover {
    background-color: #F2C14E;
    color: #111111;
    transform: translateY(-2px);
}

.page-live__btn-text {
    background: none;
    border: none;
    color: #FFD36B; /* Glow color for text links */
    padding: 5px 0;
    text-decoration: underline;
    font-size: 0.95em;
}

.page-live__btn-text:hover {
    color: #F2C14E;
}

.page-live__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Hero Section */
.page-live__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    overflow: hidden;
    background-color: #0A0A0A; /* Ensure background matches */
}

.page-live__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-live__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darken image for text readability, NO COLOR CHANGE */
    display: block;
}

.page-live__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}

.page-live__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive H1 font size */
    color: #FFF6D6; /* Light text on dark background */
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-live__lead-text {
    font-size: 1.3em;
    color: #FFD36B; /* Auxiliary color for lead text */
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* Video Section */
.page-live__video-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

.page-live__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 100%; /* Desktop width */
    max-width: 100%; /* Desktop max-width */
    box-sizing: border-box;
}

.page-live__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

.page-live__video-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}


/* Info Sections */
.page-live__info-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

.page-live__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.page-live__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-live__text-block {
    flex: 1;
    padding: 20px;
    background-color: #111111; /* Card BG color */
    border-radius: 10px;
    border: 1px solid #3A2A12; /* Border color */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-live__text-block p {
    margin-bottom: 15px;
    color: #FFF6D6; /* Text Main color */
}

.page-live__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-live__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: block;
}

/* Games Section */
.page-live__games-section {
    padding: 60px 0;
    background-color: #111111; /* Card BG for dark section */
}

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

.page-live__category-card {
    background-color: #0A0A0A; /* Background color for individual cards */
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

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

.page-live__category-icon {
    width: 30px; /* Allowed small size for category icons */
    height: 30px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px #FFD36B); /* Glow effect for icons */
    display: block;
}

.page-live__category-title {
    font-size: 1.4em;
    color: #F2C14E;
    margin-bottom: 10px;
}

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

/* Promotions Section */
.page-live__promo-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

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

.page-live__promo-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

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

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

.page-live__promo-text {
    font-size: 1em;
    color: #FFF6D6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-live__full-promo-cta {
    text-align: center;
    margin-top: 40px;
}

/* App Download Section */
.page-live__app-download-section {
    padding: 60px 0;
    background-color: #111111;
}

.page-live__app-download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Choose Section */
.page-live__why-choose-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

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

.page-live__feature-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

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

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

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

.page-live__step-card {
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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