/* style/game-types-poker-chess.css */
.page-game-types-poker-chess {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

.page-game-types-poker-chess__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-types-poker-chess__container--centered {
    text-align: center;
}

.page-game-types-poker-chess__hero {
    background: linear-gradient(135deg, #0A2463 0%, #1A3E8A 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-types-poker-chess__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-game-types-poker-chess__hero > .page-game-types-poker-chess__container {
    position: relative;
    z-index: 1;
}

.page-game-types-poker-chess__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-poker-chess__description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-game-types-poker-chess__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-game-types-poker-chess__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-game-types-poker-chess__button--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-game-types-poker-chess__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-game-types-poker-chess__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-game-types-poker-chess__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-game-types-poker-chess__button--play {
    background-color: #0A2463; /* Dark blue */
    color: #FFD700; /* Gold */
    border: 1px solid #0A2463;
    padding: 10px 20px;
    font-size: 1em;
}

.page-game-types-poker-chess__button--play:hover {
    background-color: #1A3E8A;
    color: #FFD700;
    transform: translateY(-1px);
}

.page-game-types-poker-chess__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-game-types-poker-chess__section:nth-of-type(even) {
    background-color: #fdfdfd;
}

.page-game-types-poker-chess__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-game-types-poker-chess__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-game-types-poker-chess__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-game-types-poker-chess__feature-list li {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-poker-chess__feature-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-game-types-poker-chess__feature-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-game-types-poker-chess__feature-image, .page-game-types-poker-chess__game-types-image, .page-game-types-poker-chess__get-started-image, .page-game-types-poker-chess__promo-image, .page-game-types-poker-chess__responsibility-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-types-poker-chess__game-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FFD700;
}

.page-game-types-poker-chess__game-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-game-types-poker-chess__game-details {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.page-game-types-poker-chess__game-details strong {
    color: #0A2463;
}

.page-game-types-poker-chess__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-game-types-poker-chess__steps-list li {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 70px;
    border-top: 5px solid #0A2463;
}

.page-game-types-poker-chess__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 30px;
    background-color: #FFD700;
    color: #0A2463;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-game-types-poker-chess__step-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-game-types-poker-chess__promo-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-game-types-poker-chess__promo-list li {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid #FFD700;
}

.page-game-types-poker-chess__promo-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-game-types-poker-chess__responsibility-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-game-types-poker-chess__responsibility-list li {
    background-color: #e0eaf6; /* Lighter blue */
    color: #0A2463;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    flex: 1 1 auto;
    max-width: 48%; /* For two columns on larger screens */
}

.page-game-types-poker-chess__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-game-types-poker-chess__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-types-poker-chess__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-game-types-poker-chess__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-types-poker-chess__faq-answer {
    margin-top: 10px;
    color: #555;
    display: none;
}

.page-game-types-poker-chess__faq-answer.active {
    display: block;
}

.page-game-types-poker-chess__section--final-cta {
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-game-types-poker-chess__section--final-cta .page-game-types-poker-chess__section-title {
    color: #FFD700;
}

.page-game-types-poker-chess__section--final-cta .page-game-types-poker-chess__section-title::after {
    background-color: #FFD700;
}

.page-game-types-poker-chess__section--final-cta .page-game-types-poker-chess__description {
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-types-poker-chess__title {
        font-size: 2.5em;
    }

    .page-game-types-poker-chess__section-title {
        font-size: 2em;
    }

    .page-game-types-poker-chess__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-types-poker-chess__feature-list, .page-game-types-poker-chess__steps-list, .page-game-types-poker-chess__promo-list {
        grid-template-columns: 1fr;
    }

    .page-game-types-poker-chess__steps-list li {
        padding-left: 20px;
        padding-top: 60px;
    }

    .page-game-types-poker-chess__steps-list li::before {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .page-game-types-poker-chess__responsibility-list li {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-game-types-poker-chess__title {
        font-size: 2em;
    }

    .page-game-types-poker-chess__description {
        font-size: 1em;
    }

    .page-game-types-poker-chess__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-types-poker-chess__button {
        width: 100%;
    }

    .page-game-types-poker-chess__section-title {
        font-size: 1.8em;
    }
}