/* style/games-card-games.css */
.page-games-card-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f8f8;
}

.page-games-card-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-games-card-games__hero-section {
    background: linear-gradient(135deg, #003366, #1a4d80); /* Darker blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-card-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract_cards_pattern,subtle_texture,dark_blue_gold]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-games-card-games__hero-section > .page-games-card-games__container {
    position: relative;
    z-index: 1;
}

.page-games-card-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00; /* Wealth Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-games-card-games__hero-description {
    font-size: 1.3em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-games-card-games__hero-cta {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    background-color: #FFCC00; /* Wealth Gold */
    color: #003366; /* Betting Blue */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-games-card-games__hero-cta:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-games-card-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-games-card-games__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-games-card-games__section-title {
    font-size: 2.5em;
    color: #003366; /* Betting Blue */
    margin-bottom: 30px;
    font-weight: bold;
}

.page-games-card-games__section-intro {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555;
}

.page-games-card-games__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-games-card-games__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-games-card-games__text-content {
    flex: 1;
}

.page-games-card-games__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-games-card-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-games-card-games__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-games-card-games__list li {
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFCC00;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: #333;
    line-height: 1.5;
}

.page-games-card-games__list li strong {
    color: #003366;
}

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

.page-games-card-games__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-games-card-games__game-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.page-games-card-games__game-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-games-card-games__game-description {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.page-games-card-games__game-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: #555;
}

.page-games-card-games__game-details li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.page-games-card-games__game-details li strong {
    color: #003366;
}

.page-games-card-games__btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-games-card-games__btn--primary {
    background-color: #FFCC00; /* Wealth Gold */
    color: #003366; /* Betting Blue */
    border: 2px solid #FFCC00;
}

.page-games-card-games__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

.page-games-card-games__btn--secondary {
    background-color: #003366; /* Betting Blue */
    color: #FFCC00; /* Wealth Gold */
    border: 2px solid #003366;
    margin-left: 15px;
}

.page-games-card-games__btn--secondary:hover {
    background-color: #002244;
    border-color: #002244;
}

.page-games-card-games__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-games-card-games__cta-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.page-games-card-games__step-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-games-card-games__step-list li {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 6px solid #FFCC00;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    color: #333;
    line-height: 1.6;
    font-size: 1.1em;
}

.page-games-card-games__step-list li strong {
    color: #003366;
    font-size: 1.2em;
    display: block;
    margin-bottom: 5px;
}

.page-games-card-games__banner-image {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-games-card-games__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 20px auto;
    padding: 25px;
    max-width: 900px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-games-card-games__faq-question {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
}

.page-games-card-games__faq-answer {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

.page-games-card-games__faq-answer a {
    color: #003366;
    text-decoration: underline;
}

.page-games-card-games__faq-answer a:hover {
    color: #FFCC00;
}

.page-games-card-games__closing-statement {
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 900px;
    margin: 50px auto 0;
    color: #333;
    font-weight: 500;
}

.page-games-card-games__closing-statement a {
    color: #FFCC00;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-games-card-games__closing-statement a:hover {
    color: #003366;
    text-decoration: underline;
}

.page-games-card-games__keyword {
    color: #003366;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-card-games__hero-title {
        font-size: 2.8em;
    }

    .page-games-card-games__section-title {
        font-size: 2em;
    }

    .page-games-card-games__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-games-card-games__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-games-card-games__image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-games-card-games__hero-title {
        font-size: 2.2em;
    }

    .page-games-card-games__hero-description {
        font-size: 1.1em;
    }

    .page-games-card-games__hero-cta {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-games-card-games__section-title {
        font-size: 1.8em;
    }

    .page-games-card-games__game-grid {
        grid-template-columns: 1fr;
    }

    .page-games-card-games__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .page-games-card-games__cta-group {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-games-card-games__hero-title {
        font-size: 1.8em;
    }

    .page-games-card-games__hero-description {
        font-size: 1em;
    }

    .page-games-card-games__section-title {
        font-size: 1.5em;
    }

    .page-games-card-games__faq-question {
        font-size: 1.2em;
    }

    .page-games-card-games__faq-answer {
        font-size: 0.95em;
    }

    .page-games-card-games__list li, .page-games-card-games__step-list li {
        padding: 15px;
        font-size: 1em;
    }
}