:root {
    --page-live-primary: #F2C14E;
    --page-live-secondary: #FFD36B;
    --page-live-card-bg: #111111;
    --page-live-bg: #0A0A0A;
    --page-live-text-main: #FFF6D6;
    --page-live-border: #3A2A12;
    --page-live-glow: #FFD36B;
    --btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --text-dark: #333333;
    --text-light: #ffffff;
    --header-offset: 120px;
}

.page-live {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-live-text-main);
    background-color: var(--page-live-bg);
    min-height: 100vh;
}

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

.page-live__hero-section {
    position: relative;
    padding-top: var(--header-offset);
    background-color: var(--page-live-bg);
    overflow: hidden;
    min-height: 600px;
}

.page-live__hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.page-live__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
}

.page-live__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-live__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    color: var(--page-live-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-live__hero-description {
    font-size: 1.1em;
    color: var(--page-live-text-main);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-live__btn-primary,
.page-live__btn-secondary,
.page-live a[class*="button"],
.page-live a[class*="btn"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-live__btn-primary {
    background: var(--btn-gradient);
    color: var(--text-light);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-live__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-live__btn-secondary {
    background: var(--page-live-bg);
    color: var(--page-live-primary);
    border: 2px solid var(--page-live-primary);
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-live__btn-secondary:hover {
    background: var(--page-live-primary);
    color: var(--page-live-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

.page-live__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    color: var(--page-live-primary);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-live__section-description {
    font-size: 1.1em;
    color: var(--page-live-text-main);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-live__games-showcase {
    padding: 80px 0;
    background-color: var(--page-live-bg);
}

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

.page-live__category-card {
    background-color: var(--page-live-card-bg);
    color: var(--page-live-text-main);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--page-live-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-live__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(242, 193, 78, 0.15);
}

.page-live__category-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.5));
}

.page-live__category-title {
    font-size: 1.5em;
    color: var(--page-live-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

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

.page-live__category-link {
    display: inline-block;
    background: var(--btn-gradient);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.page-live__category-link:hover {
    opacity: 0.9;
}

.page-live__why-choose-us {
    padding: 80px 0;
    background-color: var(--page-live-bg);
}

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

.page-live__feature-item {
    background-color: var(--page-live-card-bg);
    color: var(--page-live-text-main);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--page-live-border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(242, 193, 78, 0.15);
}

.page-live__feature-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-live__feature-title {
    font-size: 1.6em;
    color: var(--page-live-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-live__feature-text {
    font-size: 1em;
}

.page-live__promotions-cta {
    padding: 80px 0;
    background-color: var(--page-live-bg);
}

.page-live__promotions-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-color: var(--page-live-card-bg);
    border-radius: 15px;
    padding: 50px;
    border: 1px solid var(--page-live-border);
    flex-wrap: wrap;
}

.page-live__promotions-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-live__promotions-content .page-live__section-title,
.page-live__promotions-content .page-live__section-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.page-live__promotions-content .page-live__section-title {
    margin-top: 0;
}

.page-live__promotions-content .page-live__hero-cta {
    justify-content: flex-start;
    margin-top: 30px;
}

.page-live__promotions-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.page-live__faq-section {
    padding: 80px 0;
    background-color: var(--page-live-bg);
}

.page-live__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--page-live-border);
}

.page-live__faq-item {
    background-color: var(--page-live-card-bg);
    border-bottom: 1px solid var(--page-live-border);
}

.page-live__faq-item:last-child {
    border-bottom: none;
}

.page-live__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-live__faq-question:hover {
    background-color: rgba(242, 193, 78, 0.05);
}

.page-live__faq-title {
    font-size: 1.2em;
    color: var(--page-live-primary);
    margin: 0;
    font-weight: 600;
    flex-grow: 1;
}

.page-live__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    color: var(--page-live-primary);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-live__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--page-live-text-main);
}

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

.page-live__faq-answer p {
    margin: 0;
    font-size: 0.95em;
}

.page-live__partners-section {
    padding: 80px 0;
    background-color: var(--page-live-bg);
}

.page-live__partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.page-live__partner-logo {
    width: 167px;
    height: 127px;
    object-fit: contain;
    filter: grayscale(100%) brightness(150%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.page-live__partner-logo:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
}

.page-live__contact-cta {
    padding: 80px 0 120px 0;
    text-align: center;
    background-color: var(--page-live-bg);
}

.page-live__contact-cta .page-live__hero-cta {
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .page-live__hero-container {
        padding: 20px;
    }
    .page-live__promotions-container {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .page-live__promotions-content {
        text-align: center;
    }
    .page-live__promotions-content .page-live__section-title,
    .page-live__promotions-content .page-live__section-description {
        text-align: center;
    }
    .page-live__promotions-content .page-live__hero-cta {
        justify-content: center;
    }
    .page-live__promotions-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-offset: 100px;
    }

    .page-live img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-live__hero-section {
        padding-top: var(--header-offset, 100px) !important;
    }

    .page-live__section,
    .page-live__card,
    .page-live__container,
    .page-live__game-categories,
    .page-live__features-grid,
    .page-live__promotions-container,
    .page-live__faq-list,
    .page-live__partners-grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-live__btn-primary,
    .page-live__btn-secondary,
    .page-live a[class*="button"],
    .page-live a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
    }

    .page-live__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-live__promotions-content .page-live__hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-live__main-title {
        font-size: 2em;
    }

    .page-live__section-title {
        font-size: 1.8em;
    }

    .page-live__hero-description,
    .page-live__section-description,
    .page-live__feature-text,
    .page-live__category-text,
    .page-live__faq-answer p {
        font-size: 0.9em;
    }

    .page-live__category-card,
    .page-live__feature-item {
        padding: 25px;
    }

    .page-live__promotions-container {
        padding: 30px 15px;
    }
    
    .page-live__faq-question {
        padding: 15px 15px;
    }
    
    .page-live__faq-answer {
        padding: 0 15px;
    }
    
    .page-live__faq-item.active .page-live__faq-answer {
        padding: 10px 15px 15px 15px;
    }

    .page-live__partners-grid {
        gap: 20px;
    }
    
    .page-live__partner-logo {
        width: 120px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-live__hero-section {
        min-height: 450px;
    }
    .page-live__main-title {
        font-size: 1.8em;
    }
    .page-live__section-title {
        font-size: 1.6em;
    }
    .page-live__game-categories {
        grid-template-columns: 1fr;
    }
    .page-live__features-grid {
        grid-template-columns: 1fr;
    }
}