/* style/blog-casino-live-experience.css */

/* Custom Properties (from the provided palette) */
:root {
    --lucky8-main-color: #11A84E;
    --lucky8-accent-color: #22C768;
    --lucky8-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --lucky8-card-bg: #11271B;
    --lucky8-background: #08160F;
    --lucky8-text-main: #F2FFF6;
    --lucky8-text-secondary: #A7D9B8;
    --lucky8-border: #2E7A4E;
    --lucky8-glow: #57E38D;
    --lucky8-gold: #F2C14E;
    --lucky8-divider: #1E3A2A;
    --lucky8-deep-green: #0A4B2C;
}

/* Base styles for the page content */
.page-blog-casino-live-experience {
    font-family: Arial, sans-serif;
    color: var(--lucky8-text-main); /* Main text color for dark background */
    background-color: var(--lucky8-background); /* This will be overridden by body background from shared.css if present */
    line-height: 1.6;
    font-size: 16px;
}

/* Headings */
.page-blog-casino-live-experience h1,
.page-blog-casino-live-experience h2,
.page-blog-casino-live-experience h3 {
    color: var(--lucky8-text-main);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-casino-live-experience h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    text-align: center;
    color: var(--lucky8-gold); /* Using gold for main title for emphasis */
}

.page-blog-casino-live-experience h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-top: 40px;
    color: var(--lucky8-accent-color);
}

.page-blog-casino-live-experience h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-top: 30px;
    color: var(--lucky8-text-main);
}

.page-blog-casino-live-experience p {
    margin-bottom: 15px;
    color: var(--lucky8-text-secondary);
}

.page-blog-casino-live-experience a {
    color: var(--lucky8-gold); /* Links in content */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-casino-live-experience a:hover {
    color: var(--lucky8-glow);
    text-decoration: underline;
}

/* Section styling */
.page-blog-casino-live-experience__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--lucky8-divider);
}

.page-blog-casino-live-experience__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-casino-live-experience__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
    overflow: hidden;
    background-color: var(--lucky8-deep-green); /* Background for hero section */
}

.page-blog-casino-live-experience__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for aesthetic */
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-casino-live-experience__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-casino-live-experience__hero-content {
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-casino-live-experience__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--lucky8-text-secondary);
}

.page-blog-casino-live-experience__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Buttons */
.page-blog-casino-live-experience__btn-primary,
.page-blog-casino-live-experience__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-blog-casino-live-experience__btn-primary {
    background: var(--lucky8-button-gradient);
    color: var(--lucky8-text-main);
    border: none;
}

.page-blog-casino-live-experience__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-casino-live-experience__btn-secondary {
    background: transparent;
    color: var(--lucky8-text-main);
    border: 2px solid var(--lucky8-border);
}

.page-blog-casino-live-experience__btn-secondary:hover {
    background: var(--lucky8-border);
    color: var(--lucky8-text-main);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Image styles */
.page-blog-casino-live-experience__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-casino-live-experience__image-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-casino-live-experience__image-center {
    text-align: center;
}

/* Card styles */
.page-blog-casino-live-experience__game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-casino-live-experience__card {
    background-color: var(--lucky8-card-bg);
    border: 1px solid var(--lucky8-border);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--lucky8-text-secondary);
}

.page-blog-casino-live-experience__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-casino-live-experience__card-title {
    color: var(--lucky8-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.page-blog-casino-live-experience__card-text {
    color: var(--lucky8-text-secondary);
}

/* Lists */
.page-blog-casino-live-experience__list,
.page-blog-casino-live-experience__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
    margin-bottom: 20px;
    color: var(--lucky8-text-secondary);
}

.page-blog-casino-live-experience__ordered-list {
    list-style-type: decimal;
}

.page-blog-casino-live-experience__list li,
.page-blog-casino-live-experience__ordered-list li {
    margin-bottom: 10px;
    color: var(--lucky8-text-secondary);
}

.page-blog-casino-live-experience__list-item-title {
    color: var(--lucky8-text-main);
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 5px;
}

.page-blog-casino-live-experience__list-item-text {
    margin-bottom: 10px;
}

/* FAQ Section */
.page-blog-casino-live-experience__faq-list {
    margin-top: 40px;
}

.page-blog-casino-live-experience__faq-item {
    background-color: var(--lucky8-card-bg);
    border: 1px solid var(--lucky8-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--lucky8-text-secondary);
}

.page-blog-casino-live-experience__faq-item summary {
    list-style: none; /* Remove default marker */
}

.page-blog-casino-live-experience__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-casino-live-experience__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    color: var(--lucky8-text-main);
    background-color: var(--lucky8-deep-green);
    border-bottom: 1px solid var(--lucky8-border);
    transition: background-color 0.3s ease;
}

.page-blog-casino-live-experience__faq-question:hover {
    background-color: var(--lucky8-main-color);
}

.page-blog-casino-live-experience__faq-qtext {
    flex-grow: 1;
    color: var(--lucky8-text-main);
}

.page-blog-casino-live-experience__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--lucky8-gold);
}

.page-blog-casino-live-experience__faq-answer {
    padding: 20px 25px;
    color: var(--lucky8-text-secondary);
}

/* CTA Section */
.page-blog-casino-live-experience__cta-section {
    text-align: center;
    background-color: var(--lucky8-deep-green);
    padding: 80px 0;
}

.page-blog-casino-live-experience__cta-section .page-blog-casino-live-experience__section-title {
    color: var(--lucky8-gold);
    margin-bottom: 30px;
}

.page-blog-casino-live-experience__cta-section .page-blog-casino-live-experience__text-block {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--lucky8-text-secondary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-blog-casino-live-experience h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .page-blog-casino-live-experience h2 {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
    }
    .page-blog-casino-live-experience h3 {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }
    .page-blog-casino-live-experience__game-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-casino-live-experience {
        font-size: 15px;
        line-height: 1.5;
    }
    .page-blog-casino-live-experience__section {
        padding: 40px 0;
    }
    .page-blog-casino-live-experience__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-blog-casino-live-experience__hero-description {
        font-size: 1rem;
    }
    .page-blog-casino-live-experience__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 15px; /* Add padding to container for buttons */
        box-sizing: border-box;
    }
    .page-blog-casino-live-experience__btn-primary,
    .page-blog-casino-live-experience__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }

    /* Mobile image, video, container responsiveness */
    .page-blog-casino-live-experience img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-casino-live-experience video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-casino-live-experience__container,
    .page-blog-casino-live-experience__card,
    .page-blog-casino-live-experience__section,
    .page-blog-casino-live-experience__hero-content,
    .page-blog-casino-live-experience__hero-image-wrapper,
    .page-blog-casino-live-experience__game-cards,
    .page-blog-casino-live-experience__faq-list,
    .page-blog-casino-live-experience__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent overflow */
    }
    .page-blog-casino-live-experience__hero-image-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .page-blog-casino-live-experience__game-cards {
        gap: 20px;
    }
    .page-blog-casino-live-experience__faq-question {
        padding: 15px 20px;
    }
    .page-blog-casino-live-experience__faq-answer {
        padding: 15px 20px;
    }
    .page-blog-casino-live-experience__cta-section {
        padding: 60px 0;
    }
}

/* Ensure no filter on images */
.page-blog-casino-live-experience img {
    filter: none;
}