/* style/live.css */
/* General styling for the live page content */
.page-live {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background: #0A0A0A; /* Background */
}

/* Sections */
.page-live__section {
    padding: 60px 20px;
    margin-bottom: 0; /* Ensure no extra margin between sections */
}

.page-live__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Added padding for content inside container */
    box-sizing: border-box;
}

/* Titles and Descriptions */
.page-live__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Main color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-live__sub-title {
    font-size: 2em;
    color: #F2C14E;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-live__section-description,
.page-live__text-block {
    font-size: 1.1em;
    color: #FFF6D6; /* Text Main */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Hero Section */
.page-live__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
    overflow: hidden; /* Ensure video doesn't overflow */
    box-sizing: border-box;
}

.page-live__video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000; /* Fallback background */
    overflow: hidden;
    margin-bottom: 40px; /* Space between video and text content */
}

.page-live__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-live__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    pointer-events: none; /* Allow interaction with video beneath */
}

.page-live__hero-content {
    position: relative; /* Ensure content is above overlay */
    z-index: 1;
    max-width: 900px;
    padding: 0 15px;
    text-align: center;
    margin-top: -100px; /* Pull content up slightly over video */
}

.page-live__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
    color: #F2C14E; /* Main color for title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
    font-size: 1.2em;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.page-live__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-live__cta-buttons--center {
    justify-content: center;
}

.page-live__cta-buttons--left {
    justify-content: flex-start;
}

.page-live__btn-primary,
.page-live__btn-secondary,
.page-live a[class*="button"],
.page-live a[class*="btn"] {
    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.2s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    max-width: 100%; /* Ensure button doesn't overflow */
}

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

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

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

.page-live__btn-secondary:hover {
    background: #F2C14E; /* Main color */
    color: #111111; /* Dark text for contrast */
    transform: translateY(-2px);
}

/* Game Categories (Small Icons) */
.page-live__game-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-live__category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111111; /* Card BG */
    padding: 10px 20px;
    border-radius: 50px;
    color: #FFF6D6; /* Text Main */
    border: 1px solid #3A2A12; /* Border */
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-live__category-item:hover {
    background: #FFD36B; /* Auxiliary color */
    color: #111111;
}

.page-live__category-item img {
    
    
    object-fit: contain;
    /* Ensure no filter is applied */
    filter: none;
}

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

.page-live__game-card {
    background: #111111; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid #3A2A12; /* Border */
}

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

.page-live__game-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    /* Ensure no filter is applied */
    filter: none;
}

.page-live__card-title {
    font-size: 1.4em;
    color: #F2C14E; /* Main color */
    padding: 15px 20px 10px;
    margin: 0;
    line-height: 1.3;
}

.page-live__card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-live__card-title a:hover {
    color: #FFD36B; /* Auxiliary color */
}

.page-live__card-description {
    font-size: 0.95em;
    color: #FFF6D6; /* Text Main */
    padding: 0 20px 20px;
    flex-grow: 1; /* Make description take available space */
    text-align: left;
    margin-bottom: 0;
}

.page-live__card-button {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* Why Choose Us Section */
.page-live__why-choose-us.page-live__dark-section {
    background: #111111; /* Card BG for dark section */
    border-top: 1px solid #3A2A12;
    border-bottom: 1px solid #3A2A12;
}

.page-live__why-choose-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.page-live__why-choose-content {
    text-align: center;
}

.page-live__why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    /* Ensure no filter is applied */
    filter: none;
}

.page-live__features-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-live__features-list li {
    font-size: 1.05em;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-live__features-list li::before {
    content: '✓';
    color: #FFD36B; /* Auxiliary color for checkmark */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-live__feature-highlight {
    color: #F2C14E; /* Main color */
}

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

.page-live__promo-card {
    background: #111111; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid #3A2A12; /* Border */
}

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

.page-live__promo-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    /* Ensure no filter is applied */
    filter: none;
}

/* Getting Started Section */
.page-live__getting-started.page-live__dark-section {
    background: #0A0A0A; /* Background color */
    border-top: 1px solid #3A2A12;
    border-bottom: 1px solid #3A2A12;
}

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

.page-live__step-item {
    background: #111111; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border */
}

.page-live__step-number {
    font-size: 3em;
    font-weight: bold;
    color: #FFD36B; /* Auxiliary color */
    margin-bottom: 15px;
    line-height: 1;
}

.page-live__step-title {
    font-size: 1.5em;
    color: #F2C14E; /* Main color */
    margin-bottom: 15px;
}

.page-live__step-text {
    font-size: 1em;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 0;
}

/* Download App Section */
.page-live__download-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.page-live__app-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-live__app-features li {
    font-size: 1.05em;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-live__app-features li::before {
    content: '✓';
    color: #FFD36B; /* Auxiliary color for checkmark */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-live__download-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    /* Ensure no filter is applied */
    filter: none;
}

/* FAQ Section */
.page-live__faq {
    background: #0A0A0A; /* Background color */
}