/* style/blog-f13-bet-slot-machine-features.css */

:root {
    --primary-color: #C91F17;
    --secondary-color: #E53935;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    --card-bg: #D32F2F;
    --background-section: #B71C1C;
    --text-main: #FFF5E1;
    --border-color: #F2B544;
    --glow-color: #FFCC66;
    --gold-color: #F4D34D;
    --deep-red-color: #7A0E0E;
}

.page-blog-f13-bet-slot-machine-features {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Default text color for the page content */
    background-color: var(--background-section);
}

.page-blog-f13-bet-slot-machine-features__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--deep-red-color);
    overflow: hidden;
}

.page-blog-f13-bet-slot-machine-features__hero-image-wrapper {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-f13-bet-slot-machine-features__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-blog-f13-bet-slot-machine-features__hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 30px 20px;
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.4); /* Slightly dark background for text contrast */
    border-radius: 10px;
}

.page-blog-f13-bet-slot-machine-features__main-title {
    font-size: clamp(2em, 5vw, 3.2em);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gold-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-f13-bet-slot-machine-features__hero-description {
    font-size: 1.1em;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-blog-f13-bet-slot-machine-features__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-gradient);
    color: #333333; /* Dark text for light button */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-f13-bet-slot-machine-features__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-f13-bet-slot-machine-features__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--background-section);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    margin-top: -30px; /* Overlap with hero for visual flow */
    position: relative;
    z-index: 5;
}

.page-blog-f13-bet-slot-machine-features__section-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    color: var(--gold-color);
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.page-blog-f13-bet-slot-machine-features__subsection-title {
    font-size: clamp(1.4em, 3vw, 2em);
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--gold-color);
    padding-left: 10px;
}

.page-blog-f13-bet-slot-machine-features__paragraph {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-blog-f13-bet-slot-machine-features__highlight {
    color: var(--gold-color);
    font-weight: bold;
}

.page-blog-f13-bet-slot-machine-features__image-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
}

.page-blog-f13-bet-slot-machine-features__btn-link {
    color: var(--gold-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-f13-bet-slot-machine-features__btn-link:hover {
    color: var(--text-main);
}

.page-blog-f13-bet-slot-machine-features__faq-section {
    margin-top: 50px;
    background-color: var(--deep-red-color);
    padding: 40px 20px;
    border-radius: 10px;
}

.page-blog-f13-bet-slot-machine-features__faq-list {
    margin-top: 30px;
}

.page-blog-f13-bet-slot-machine-features__faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-blog-f13-bet-slot-machine-features__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 25px;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--gold-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}

.page-blog-f13-bet-slot-machine-features__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-f13-bet-slot-machine-features__faq-qtext {
    flex-grow: 1;
}

.page-blog-f13-bet-slot-machine-features__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-blog-f13-bet-slot-machine-features__faq-item[open] .page-blog-f13-bet-slot-machine-features__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-f13-bet-slot-machine-features__faq-answer {
    padding: 20px 25px;
    background-color: var(--card-bg);
    color: var(--text-main);
    font-size: 1em;
    line-height: 1.6;
}

.page-blog-f13-bet-slot-machine-features__faq-answer p {
    margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-blog-f13-bet-slot-machine-features {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-f13-bet-slot-machine-features__hero-section {
        padding-bottom: 30px;
        padding-top: 10px !important; /* body handles --header-offset, this is for visual space */
    }

    .page-blog-f13-bet-slot-machine-features__hero-content {
        padding: 20px 15px;
        margin-top: 20px;
    }

    .page-blog-f13-bet-slot-machine-features__main-title {
        font-size: 2em;
    }

    .page-blog-f13-bet-slot-machine-features__hero-description {
        font-size: 1em;
    }

    .page-blog-f13-bet-slot-machine-features__btn-primary {
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-f13-bet-slot-machine-features__content-area {
        padding: 30px 15px;
        margin-top: -20px;
    }

    .page-blog-f13-bet-slot-machine-features__section-title {
        font-size: 1.8em;
    }

    .page-blog-f13-bet-slot-machine-features__subsection-title {
        font-size: 1.3em;
    }

    .page-blog-f13-bet-slot-machine-features__paragraph {
        font-size: 0.95em;
    }

    .page-blog-f13-bet-slot-machine-features__image-inline {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-f13-bet-slot-machine-features__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-f13-bet-slot-machine-features__faq-answer {
        padding: 15px 20px;
    }
    
    /* Mobile specific image and video container adaptations */
    .page-blog-f13-bet-slot-machine-features img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-f13-bet-slot-machine-features__section,
    .page-blog-f13-bet-slot-machine-features__card,
    .page-blog-f13-bet-slot-machine-features__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-f13-bet-slot-machine-features video,
    .page-blog-f13-bet-slot-machine-features__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-f13-bet-slot-machine-features__video-section,
    .page-blog-f13-bet-slot-machine-features__video-container,
    .page-blog-f13-bet-slot-machine-features__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-blog-f13-bet-slot-machine-features__video-section {
        padding-top: 10px !important;
    }

    .page-blog-f13-bet-slot-machine-features__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-f13-bet-slot-machine-features__cta-button,
    .page-blog-f13-bet-slot-machine-features__btn-primary,
    .page-blog-f13-bet-slot-machine-features__btn-secondary,
    .page-blog-f13-bet-slot-machine-features a[class*="button"],
    .page-blog-f13-bet-slot-machine-features 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-left: 15px;
        padding-right: 15px;
    }

    .page-blog-f13-bet-slot-machine-features__cta-buttons,
    .page-blog-f13-bet-slot-machine-features__button-group,
    .page-blog-f13-bet-slot-machine-features__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-blog-f13-bet-slot-machine-features__cta-buttons {
        display: flex;
        flex-direction: column;
    }
}