/* style/blog-top-5-online-casino-trends.css */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #f0f0f0;
    --bg-light-gray: #f9f9f9;
    --border-color: #e0e0e0;
    --button-register-bg: #C30808;
    --button-login-bg: #C30808;
    --button-text-color: #FFFF00; /* For register/login buttons */
}

.page-blog-top-5-online-casino-trends {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Default text color for light body background */
    background-color: var(--secondary-color); /* Matches body background if not explicitly set elsewhere */
}

/* Hero Section */
.page-blog-top-5-online-casino-trends__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    background-color: var(--bg-light-gray);
    border-bottom: 1px solid var(--border-color);
}

.page-blog-top-5-online-casino-trends__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-top-5-online-casino-trends__hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-top-5-online-casino-trends__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-top-5-online-casino-trends__main-title {
    font-size: clamp(24px, 4vw, 42px); /* Clamp for responsive H1 */
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-blog-top-5-online-casino-trends__intro-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-color-dark);
}

.page-blog-top-5-online-casino-trends__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-register-bg); /* Using custom color for register/login */
    color: var(--button-text-color); /* Custom color for register/login text */
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-top-5-online-casino-trends__cta-button:hover {
    background: #a30606; /* Slightly darker red */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


/* Content Section */
.page-blog-top-5-online-casino-trends__content-section {
    padding: 40px 0;
    background-color: var(--secondary-color);
}

.page-blog-top-5-online-casino-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-top-5-online-casino-trends__section-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.page-blog-top-5-online-casino-trends__image-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-top-5-online-casino-trends__image-content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-blog-top-5-online-casino-trends__image-content-wrapper img {
    flex: 1;
    min-width: 400px; /* Ensure images are not too small */
    max-width: 550px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-blog-top-5-online-casino-trends__text-block {
    flex: 2;
    min-width: 300px; /* Allow text block to shrink */
}

.page-blog-top-5-online-casino-trends p {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-color-dark);
}

.page-blog-top-5-online-casino-trends__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-blog-top-5-online-casino-trends__cta-button--final {
    font-size: 20px;
    padding: 18px 50px;
}

/* FAQ Section */
.page-blog-top-5-online-casino-trends__faq-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.page-blog-top-5-online-casino-trends__faq-list {
    margin-top: 30px;
}

details.page-blog-top-5-online-casino-trends__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--secondary-color);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

details.page-blog-top-5-online-casino-trends__faq-item summary.page-blog-top-5-online-casino-trends__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--primary-color);
    font-weight: 600;
}

details.page-blog-top-5-online-casino-trends__faq-item summary.page-blog-top-5-online-casino-trends__faq-question::-webkit-details-marker {
    display: none;
}

details.page-blog-top-5-online-casino-trends__faq-item summary.page-blog-top-5-online-casino-trends__faq-question:hover {
    background: var(--bg-light-gray);
}

.page-blog-top-5-online-casino-trends__faq-qtext {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.page-blog-top-5-online-casino-trends__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-blog-top-5-online-casino-trends__faq-item .page-blog-top-5-online-casino-trends__faq-answer {
    padding: 0 20px 20px;
    background: var(--bg-light-gray);
    border-radius: 0 0 5px 5px;
    color: var(--text-color-dark);
}

details.page-blog-top-5-online-casino-trends__faq-item .page-blog-top-5-online-casino-trends__faq-answer p {
    margin-bottom: 0;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-top-5-online-casino-trends__image-content-wrapper img {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-blog-top-5-online-casino-trends__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-top-5-online-casino-trends__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-blog-top-5-online-casino-trends__hero-image-wrapper img {
        border-radius: 4px;
    }

    .page-blog-top-5-online-casino-trends__main-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .page-blog-top-5-online-casino-trends__intro-text {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .page-blog-top-5-online-casino-trends__cta-button,
    .page-blog-top-5-online-casino-trends__cta-button--final {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-top-5-online-casino-trends__container {
        padding: 0 15px;
    }

    .page-blog-top-5-online-casino-trends__section-title {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-top-5-online-casino-trends__image-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .page-blog-top-5-online-casino-trends__image-content-wrapper--reversed {
        flex-direction: column; /* Also stack reversed on mobile */
    }

    .page-blog-top-5-online-casino-trends__image-content-wrapper img {
        min-width: unset;
        width: 100%;
        max-width: 100%;
        height: auto; /* Ensure image responsiveness */
    }
    
    .page-blog-top-5-online-casino-trends__image-content-wrapper img,
    .page-blog-top-5-online-casino-trends__hero-image-wrapper img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
    }
    
    .page-blog-top-5-online-casino-trends__content-section,
    .page-blog-top-5-online-casino-trends__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }

    .page-blog-top-5-online-casino-trends p {
        font-size: 15px;
    }

    details.page-blog-top-5-online-casino-trends__faq-item summary.page-blog-top-5-online-casino-trends__faq-question {
        padding: 15px;
    }

    .page-blog-top-5-online-casino-trends__faq-qtext {
        font-size: 15px;
    }

    details.page-blog-top-5-online-casino-trends__faq-item .page-blog-top-5-online-casino-trends__faq-answer {
        padding: 0 15px 15px;
    }
}