/* style/casino-live-games.css */
:root {
    --primary-color: #0A192F;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f8f9fa;
    --card-background-dark: rgba(255, 255, 255, 0.1);
    --card-background-light: #ffffff;
    --border-color: #e0e0e0;
}

.page-casino-live-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--primary-color); /* Matches body background from shared.css */
}

.page-casino-live-games__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-casino-live-games__light-bg {
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-casino-live-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.page-casino-live-games__hero-content {
    z-index: 1;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-casino-live-games__main-title {
    font-size: 3.2em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino-live-games__subtitle {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-casino-live-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-casino-live-games__btn-primary,
.page-casino-live-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-casino-live-games__btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-casino-live-games__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-casino-live-games__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-casino-live-games__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.page-casino-live-games__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-top: 40px;
}

.page-casino-live-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-casino-live-games__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-casino-live-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: var(--secondary-color);
}

.page-casino-live-games__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    opacity: 0.8;
}

.page-casino-live-games__video-section {
    padding: 60px 20px;
    text-align: center;
}

.page-casino-live-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-casino-live-games__video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: block;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay to make it clickable */
    z-index: 2;
}

.page-casino-live-games__video-link:hover::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5em;
    color: var(--secondary-color);
    opacity: 0.8;
    z-index: 3;
}

.page-casino-live-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    z-index: 1;
}

.page-casino-live-games__features-section .page-casino-live-games__section-title,
.page-casino-live-games__features-section .page-casino-live-games__section-description {
    color: var(--text-dark);
}

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

.page-casino-live-games__feature-card {
    background-color: var(--card-background-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-casino-live-games__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-casino-live-games__feature-icon {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    display: block;
}

.page-casino-live-games__feature-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-casino-live-games__feature-text {
    font-size: 1em;
    line-height: 1.7;
    flex-grow: 1;
}

.page-casino-live-games__games-section .page-casino-live-games__section-title,
.page-casino-live-games__games-section .page-casino-live-games__section-description {
    color: var(--text-light);
}

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

.page-casino-live-games__game-card {
    background-color: var(--card-background-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-casino-live-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-casino-live-games__game-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-casino-live-games__game-title {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-casino-live-games__game-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-casino-live-games__game-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-casino-live-games__game-text {
    font-size: 1em;
    line-height: 1.7;
    flex-grow: 1;
}

.page-casino-live-games__guide-section .page-casino-live-games__section-title,
.page-casino-live-games__guide-section .page-casino-live-games__section-description {
    color: var(--text-dark);
}

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

.page-casino-live-games__step-card {
    background-color: var(--card-background-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-casino-live-games__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-casino-live-games__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-casino-live-games__step-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-casino-live-games__step-text {
    font-size: 1em;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-casino-live-games__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-casino-live-games__tips-section .page-casino-live-games__section-title,
.page-casino-live-games__tips-section .page-casino-live-games__section-description {
    color: var(--text-light);
}

.page-casino-live-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-casino-live-games__tip-item {
    background-color: var(--card-background-dark);
    border-left: 5px solid var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.page-casino-live-games__tip-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-casino-live-games__tip-text {
    font-size: 1em;
    line-height: 1.7;
    opacity: 0.9;
}

.page-casino-live-games__faq-section .page-casino-live-games__section-title,
.page-casino-live-games__faq-section .page-casino-live-games__section-description {
    color: var(--text-dark);
}

.page-casino-live-games__faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-casino-live-games__faq-item {
    background-color: var(--card-background-light);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.page-casino-live-games__faq-item:last-child {
    border-bottom: none;
}

.page-casino-live-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: var(--primary-color);
}

.page-casino-live-games__faq-question:hover {
    background-color: #f0f0f0;
}

.page-casino-live-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-casino-live-games__faq-item.active .page-casino-live-games__faq-toggle {
    transform: rotate(0deg); /* '−' will naturally appear without rotation */
}

.page-casino-live-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-dark);
}

.page-casino-live-games__faq-item.active .page-casino-live-games__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px 25px 25px;
}

.page-casino-live-games__cta-bottom-section {
    padding: 80px 20px;
    text-align: center;
}

.page-casino-live-games__cta-bottom-section .page-casino-live-games__section-title,
.page-casino-live-games__cta-bottom-section .page-casino-live-games__section-description {
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-casino-live-games__main-title {
        font-size: 2.8em;
    }
    .page-casino-live-games__subtitle {
        font-size: 1.2em;
    }
    .page-casino-live-games__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-casino-live-games__hero-section {
        padding: 40px 15px 0 15px;
    }
    .page-casino-live-games__hero-content {
        margin-bottom: 30px;
    }
    .page-casino-live-games__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-casino-live-games__subtitle {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-casino-live-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-casino-live-games__btn-primary,
    .page-casino-live-games__btn-secondary {
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
    }
    .page-casino-live-games__hero-image-wrapper {
        margin-top: 30px;
    }
    .page-casino-live-games__content-area {
        padding: 40px 15px;
    }
    .page-casino-live-games__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-casino-live-games__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-casino-live-games__feature-grid,
    .page-casino-live-games__game-grid,
    .page-casino-live-games__guide-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-casino-live-games__feature-card,
    .page-casino-live-games__game-card,
    .page-casino-live-games__step-card {
        padding: 25px;
    }
    .page-casino-live-games__feature-title,
    .page-casino-live-games__game-title,
    .page-casino-live-games__step-title {
        font-size: 1.3em;
    }
    .page-casino-live-games__tip-title {
        font-size: 1.2em;
    }
    .page-casino-live-games__faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
    }
    .page-casino-live-games__faq-answer {
        padding: 0 20px;
    }
    .page-casino-live-games__faq-item.active .page-casino-live-games__faq-answer {
        padding: 15px 20px 20px 20px;
    }

    /* Mobile Image/Video/Container Adapation */
    .page-casino-live-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-casino-live-games video,
    .page-casino-live-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-casino-live-games__section,
    .page-casino-live-games__card,
    .page-casino-live-games__container,
    .page-casino-live-games__video-section,
    .page-casino-live-games__video-container,
    .page-casino-live-games__video-wrapper,
    .page-casino-live-games__cta-buttons,
    .page-casino-live-games__button-group,
    .page-casino-live-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-casino-live-games__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-casino-live-games__cta-buttons {
        flex-direction: column; /* Ensure buttons stack vertically */
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-casino-live-games__main-title {
        font-size: 1.8em;
    }
    .page-casino-live-games__section-title {
        font-size: 1.6em;
    }
    .page-casino-live-games__feature-icon {
        max-width: 200px;
    }
    .page-casino-live-games__game-image {
        max-height: 200px;
    }
}