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

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

.page-live__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    box-sizing: border-box;
    overflow: hidden; /* Ensure nothing spills out */
}

.page-live__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%; /* Ensure it doesn't overflow */
    margin-bottom: 30px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
}

.page-live__video-link {
    display: block;
    width: 100%;
    max-width: 1920px; /* Max width for the video itself */
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.page-live__video {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%; /* Ensure video is responsive */
}

.page-live__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 30px; /* Spacing between video and content */
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-live__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: bold;
    color: #FFD36B; /* Auxiliary color for emphasis */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.page-live__intro-text {
    font-size: 1.2rem;
    color: #FFF6D6;
    margin-bottom: 30px;
}

.page-live__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.page-live__btn-primary,
.page-live__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    width: auto;
    min-width: 180px;
}

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

.page-live__btn-primary:hover {
    background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
    box-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

.page-live__btn-secondary {
    background: transparent;
    color: #FFD36B; /* Auxiliary color for text */
    border: 2px solid #3A2A12; /* Border color */
}

.page-live__btn-secondary:hover {
    background: #3A2A12; /* Border color as background */
    color: #FFF6D6; /* Text Main color */
    border-color: #FFD36B; /* Auxiliary color for border */
}

.page-live__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #FFD36B;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* About Section */
.page-live__about-section {
    padding: 80px 0;
    background: #0A0A0A; /* Background color */
}

.page-live__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.page-live__image-text-block:nth-child(even) {
    flex-direction: row-reverse;
}

.page-live__text-content {
    flex: 1;
}

.page-live__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-live__image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-live__sub-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: #F2C14E; /* Main color */
    margin-bottom: 15px;
}

.page-live__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-live__feature-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    margin-bottom: 10px;
    border-left: 4px solid #F2C14E; /* Main color accent */
    border-radius: 5px;
    color: #FFF6D6;
}

.page-live__feature-list li strong {
    color: #FFD36B;
}

/* Games Section */
.page-live__games-section {
    padding: 80px 0;
    background: #0A0A0A; /* Background color */
}

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

.page-live__category-card {
    background: #111111; /* Card BG */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #FFF6D6;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid #3A2A12; /* Border color */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.page-live__category-card:hover {
    transform: translateY(-5px);
    background: rgba(242, 193, 78, 0.1); /* Main color slightly transparent */
    border-color: #F2C14E; /* Main color */
}

.page-live__category-card img {
     /* Allowed small icon size */
     /* Allowed small icon size */
    margin-bottom: 10px;
}

.page-live__category-name {
    font-weight: bold;
    font-size: 1rem;
}

.page-live__view-all-btn {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Section */
.page-live__why-choose-section {
    padding: 80px 0;
    background: #111111; /* Card BG for this section */
    color: #FFF6D6; /* Text Main */
}

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

.page-live__feature-card {
    background: #0A0A0A; /* Background color */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #3A2A12; /* Border color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-live__feature-card:hover {
    transform: translateY(-5px);
    border-color: #FFD36B; /* Auxiliary color */
}

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

/* How to Start Section */
.page-live__how-to-start-section {
    padding: 80px 0;
    background: #0A0A0A; /* Background color */
}

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

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

.page-live__step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD36B; /* Auxiliary color */
    margin-bottom: 15px;
}

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

/* Partners Section */
.page-live__partners-section {
    padding: 80px 0;
    background: #0A0A0A; /* Background color */
}

.page-live__partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
    justify-items: center;
    align-items: center;
}

.page-live__partner-item {
    background: #111111; /* Card BG */
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #3A2A12; /* Border color */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 167px; /* Fixed width for partner images */
    height: 127px; /* Fixed height for partner images */
    box-sizing: border-box;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-live__partner-item:hover {
    transform: scale(1.05);
    border-color: #FFD36B; /* Auxiliary color */
}

.page-live__partner-item img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
     /* Explicitly set for partner images */
     /* Explicitly set for partner images */
}

/* FAQ Section */
.page-live__faq-section {
    padding: 80px 0;
    background: #111111; /* Card BG for this section */
    color: #FFF6D6; /* Text Main */
}

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

.page-live__faq-item {
    background: #0A0A0A; /* Background color */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-live__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: #0A0A0A; /* Background color */
    color: #F2C14E; /* Main color */
    font-weight: bold;
    font-size: 1.15rem;
    transition: background 0.3s ease;
}

.page-live__faq-question:hover {
    background: #111111; /* Card BG for hover */
}

.page-live__faq-question h3 {
    margin: 0;
    color: inherit;
    font-size: inherit;
}

.page-live__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFD36B; /* Auxiliary color */
}

.page-live__faq-item.active .page-live__faq-toggle {
    transform: rotate(45deg);
}

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

.page-live__faq-item.active .page-live__faq-answer {
    max-height: 1000px !important;
    padding: 15px 20px 20px 20px;
}

.page-live__faq-answer p {
    margin: 0;
    padding: 0;
}

.page-live__support-btn {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Final CTA Section */
.page-live__final-cta-section {
    padding: 80px 0;
    text-align: center;
    background: #0A0A0A; /* Background color */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-live__image-text-block {
        flex-direction: column;
    }
    .page-live__image-text-block:nth-child(even) {
        flex-direction: column;
    }
    .page-live__hero-content {
        margin-top: 20px;
    }
    .page-live__partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-live__container {
        padding-left: 15px;
        padding-right: 15px;
    }
}