/* style/resources-benefits-of-playing-cards-for-free.css */

/* Base styles for the page content */
.page-resources-benefits-of-playing-cards-for-free {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: var(--background-color, #FFFFFF); /* Inherit from shared, default white */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-benefits-of-playing-cards-for-free__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Universal image/video/button responsive styles - Important for mobile */
.page-resources-benefits-of-playing-cards-for-free img,
.page-resources-benefits-of-playing-cards-for-free video,
.page-resources-benefits-of-playing-cards-for-free__video {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-resources-benefits-of-playing-cards-for-free__section,
.page-resources-benefits-of-playing-cards-for-free__card,
.page-resources-benefits-of-playing-cards-for-free__container,
.page-resources-benefits-of-playing-cards-for-free__video-container,
.page-resources-benefits-of-playing-cards-for-free__video-wrapper,
.page-resources-benefits-of-playing-cards-for-free__cta-buttons,
.page-resources-benefits-of-playing-cards-for-free__button-group,
.page-resources-benefits-of-playing-cards-for-free__btn-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-resources-benefits-of-playing-cards-for-free__btn-primary,
.page-resources-benefits-of-playing-cards-for-free__btn-secondary,
.page-resources-benefits-of-playing-cards-for-free a[class*="button"],
.page-resources-benefits-of-playing-cards-for-free a[class*="btn"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

/* Hero Section */
.page-resources-benefits-of-playing-cards-for-free__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #017439; /* Main brand color */
    color: #ffffff;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.page-resources-benefits-of-playing-cards-for-free__hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.page-resources-benefits-of-playing-cards-for-free__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFF00; /* Register/Login font color for emphasis */
}

.page-resources-benefits-of-playing-cards-for-free__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-benefits-of-playing-cards-for-free__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    background-color: #C30808; /* Login/Register color */
    color: #FFFF00; /* Login/Register font color */
    border: 2px solid #C30808;
    margin-top: 20px;
}

.page-resources-benefits-of-playing-cards-for-free__btn-primary:hover {
    background-color: #a30606;
    color: #ffffff;
}

.page-resources-benefits-of-playing-cards-for-free__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-resources-benefits-of-playing-cards-for-free__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
}

/* Intro Section */
.page-resources-benefits-of-playing-cards-for-free__intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-resources-benefits-of-playing-cards-for-free__section-title {
    font-size: 2.2em;
    color: #017439;
    text-align: center;
    margin-bottom: 20px;
}

.page-resources-benefits-of-playing-cards-for-free__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: #555555;
}

/* Benefits Overview Section */
.page-resources-benefits-of-playing-cards-for-free__benefits-overview {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-resources-benefits-of-playing-cards-for-free__benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-benefits-of-playing-cards-for-free__benefit-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    color: #333333;
}

.page-resources-benefits-of-playing-cards-for-free__benefit-card:hover {
    transform: translateY(-10px);
}

.page-resources-benefits-of-playing-cards-for-free__benefit-icon {
    width: 100%; /* Ensure image fills card width responsively */
    height: auto;
    max-width: 250px; /* Max size for card icons */
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum size for images */
    min-height: 200px;
}

.page-resources-benefits-of-playing-cards-for-free__card-title {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 15px;
}

.page-resources-benefits-of-playing-cards-for-free__card-description {
    font-size: 1em;
    color: #555555;
}

/* Video Section */
.page-resources-benefits-of-playing-cards-for-free__video-section {
    padding: 80px 0;
    text-align: center;
    background-color: #017439; /* Dark background */
    color: #ffffff;
}

.page-resources-benefits-of-playing-cards-for-free__section-title--white {
    color: #ffffff;
}

.page-resources-benefits-of-playing-cards-for-free__section-intro--white {
    color: #f0f0f0;
}

.page-resources-benefits-of-playing-cards-for-free__video-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-benefits-of-playing-cards-for-free__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.page-resources-benefits-of-playing-cards-for-free__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-resources-benefits-of-playing-cards-for-free__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-benefits-of-playing-cards-for-free__btn-secondary {
    background-color: #ffffff;
    color: #017439;
    border: 2px solid #017439;
}

.page-resources-benefits-of-playing-cards-for-free__btn-secondary:hover {
    background-color: #e0e0e0;
}

/* CTA Banner Section */
.page-resources-benefits-of-playing-cards-for-free__cta-banner {
    position: relative;
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.page-resources-benefits-of-playing-cards-for-free__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3; /* Subtle background image */
}

.page-resources-benefits-of-playing-cards-for-free__cta-content {
    position: relative;
    z-index: 1;
}

.page-resources-benefits-of-playing-cards-for-free__cta-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #FFFF00; /* Emphasize with yellow */
}

.page-resources-benefits-of-playing-cards-for-free__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.page-resources-benefits-of-playing-cards-for-free__btn-register {
    background-color: #C30808; /* Register button color */
    color: #FFFF00; /* Register button font color */
    border-color: #C30808;
}

.page-resources-benefits-of-playing-cards-for-free__btn-register:hover {
    background-color: #a30606;
}

/* FAQ Section */
.page-resources-benefits-of-playing-cards-for-free__faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-resources-benefits-of-playing-cards-for-free__faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.page-resources-benefits-of-playing-cards-for-free__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #333333;
}

.page-resources-benefits-of-playing-cards-for-free__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
    color: #017439;
    list-style: none; /* For <summary> tag */
}

.page-resources-benefits-of-playing-cards-for-free__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for <summary> */
}

.page-resources-benefits-of-playing-cards-for-free__faq-item[open] .page-resources-benefits-of-playing-cards-for-free__faq-question {
    background-color: #f0f0f0;
}

.page-resources-benefits-of-playing-cards-for-free__faq-qtext {
    flex-grow: 1;
}

.page-resources-benefits-of-playing-cards-for-free__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #017439;
}

.page-resources-benefits-of-playing-cards-for-free__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #555555;
    background-color: #f9f9f9;
}

/* Conclusion Section */
.page-resources-benefits-of-playing-cards-for-free__conclusion-section {
    padding: 80px 0;
    background-color: #f0f0f0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-benefits-of-playing-cards-for-free__hero-title {
        font-size: 2.2em;
    }
    .page-resources-benefits-of-playing-cards-for-free__section-title {
        font-size: 1.8em;
    }
    .page-resources-benefits-of-playing-cards-for-free__cta-title {
        font-size: 2em;
    }
    .page-resources-benefits-of-playing-cards-for-free__video-wrapper {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .page-resources-benefits-of-playing-cards-for-free {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources-benefits-of-playing-cards-for-free__hero-section {
        padding: 40px 15px;
    }
}