/* style/game-guides-poker-skills.css */

:root {
    --page-poker-primary-color: #1A237E;
    --page-poker-secondary-color: #FFC107;
    --page-poker-text-light: #ffffff;
    --page-poker-text-dark: #333333;
    --page-poker-background-light: #f4f7f6;
    --page-poker-background-dark: #2c3e50;
    --page-poker-accent-color: #e5dc81; /* Complementary to primary */
    --page-poker-button-hover: #e0ac00;
}

.page-game-guides-poker-skills {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-poker-text-dark);
    background-color: var(--page-poker-background-light);
}

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

.page-game-guides-poker-skills__hero {
    background: linear-gradient(135deg, var(--page-poker-primary-color) 0%, #3f51b5 100%);
    color: var(--page-poker-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides-poker-skills__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:poker,abstract,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-guides-poker-skills__hero > .page-game-guides-poker-skills__container {
    position: relative;
    z-index: 1;
}

.page-game-guides-poker-skills__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-poker-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides-poker-skills__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-poker-text-light);
}

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

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

.page-game-guides-poker-skills__button--primary {
    background-color: var(--page-poker-secondary-color);
    color: var(--page-poker-primary-color);
    border: 2px solid var(--page-poker-secondary-color);
}

.page-game-guides-poker-skills__button--primary:hover {
    background-color: var(--page-poker-button-hover);
    transform: translateY(-3px);
}

.page-game-guides-poker-skills__button--secondary {
    background-color: transparent;
    color: var(--page-poker-secondary-color);
    border: 2px solid var(--page-poker-secondary-color);
}

.page-game-guides-poker-skills__button--secondary:hover {
    background-color: var(--page-poker-secondary-color);
    color: var(--page-poker-primary-color);
    transform: translateY(-3px);
}

.page-game-guides-poker-skills__button--tertiary {
    background-color: var(--page-poker-primary-color);
    color: var(--page-poker-secondary-color);
    border: 2px solid var(--page-poker-secondary-color);
}

.page-game-guides-poker-skills__button--tertiary:hover {
    background-color: var(--page-poker-secondary-color);
    color: var(--page-poker-primary-color);
    transform: translateY(-3px);
}

.page-game-guides-poker-skills__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-game-guides-poker-skills__section:last-of-type {
    border-bottom: none;
}

.page-game-guides-poker-skills__section--dark {
    background-color: var(--page-poker-primary-color);
    color: var(--page-poker-text-light);
}

.page-game-guides-poker-skills__section--dark .page-game-guides-poker-skills__section-title,
.page-game-guides-poker-skills__section--dark .page-game-guides-poker-skills__card-title {
    color: var(--page-poker-secondary-color);
}

.page-game-guides-poker-skills__section-title {
    font-size: 2.5em;
    color: var(--page-poker-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-guides-poker-skills__section-title--white {
    color: var(--page-poker-text-light);
}

.page-game-guides-poker-skills__section--intro p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-game-guides-poker-skills__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-poker-skills__image--full-width {
    display: block;
    margin: 40px auto;
}

.page-game-guides-poker-skills__image--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    width: 45%;
    max-width: 500px;
}

.page-game-guides-poker-skills__image--left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    width: 45%;
    max-width: 500px;
}

.page-game-guides-poker-skills__image--center {
    display: block;
    margin: 40px auto;
    max-width: 800px;
}

.page-game-guides-poker-skills__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides-poker-skills__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-game-guides-poker-skills__grid--3-col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-game-guides-poker-skills__card {
    background-color: var(--page-poker-text-light);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-guides-poker-skills__card:hover {
    transform: translateY(-5px);
}

.page-game-guides-poker-skills__card-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-game-guides-poker-skills__card-title {
    font-size: 1.5em;
    color: var(--page-poker-primary-color);
    margin-bottom: 15px;
}

.page-game-guides-poker-skills__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-game-guides-poker-skills__list li {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid var(--page-poker-secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
}

.page-game-guides-poker-skills__list--bullet li {
    background-color: var(--page-poker-primary-color);
    color: var(--page-poker-text-light);
    border-left-color: var(--page-poker-secondary-color);
}

.page-game-guides-poker-skills__list li strong {
    color: var(--page-poker-secondary-color);
}

.page-game-guides-poker-skills__feature-item {
    background-color: var(--page-poker-text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides-poker-skills__feature-title {
    font-size: 1.6em;
    color: var(--page-poker-primary-color);
    margin-bottom: 15px;
}

.page-game-guides-poker-skills__service-card {
    background-color: var(--page-poker-text-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-poker-skills__service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-game-guides-poker-skills__service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.page-game-guides-poker-skills__service-title {
    font-size: 1.3em;
    color: var(--page-poker-primary-color);
    margin-bottom: 10px;
}

.page-game-guides-poker-skills__cta-bottom {
    background: linear-gradient(45deg, var(--page-poker-primary-color) 0%, #3f51b5 100%);
    color: var(--page-poker-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-game-guides-poker-skills__cta-bottom .page-game-guides-poker-skills__section-title {
    color: var(--page-poker-secondary-color);
    margin-bottom: 20px;
}

.page-game-guides-poker-skills__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--page-poker-text-light);
}

/* Clearfix for floated images */
.page-game-guides-poker-skills__section::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-guides-poker-skills__title {
        font-size: 3em;
    }
    .page-game-guides-poker-skills__subtitle {
        font-size: 1.2em;
    }
    .page-game-guides-poker-skills__section-title {
        font-size: 2em;
    }
    .page-game-guides-poker-skills__image--right,
    .page-game-guides-poker-skills__image--left {
        float: none;
        width: 100%;
        margin: 30px auto;
    }
    .page-game-guides-poker-skills__grid--2-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-game-guides-poker-skills__hero {
        padding: 80px 0;
    }
    .page-game-guides-poker-skills__title {
        font-size: 2.5em;
    }
    .page-game-guides-poker-skills__subtitle {
        font-size: 1em;
    }
    .page-game-guides-poker-skills__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-guides-poker-skills__button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
    }
    .page-game-guides-poker-skills__section {
        padding: 40px 0;
    }
    .page-game-guides-poker-skills__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-guides-poker-skills__grid {
        grid-template-columns: 1fr;
    }
    .page-game-guides-poker-skills__card-title {
        font-size: 1.3em;
    }
    .page-game-guides-poker-skills__list li {
        padding: 15px;
        font-size: 1em;
    }
    .page-game-guides-poker-skills__feature-title {
        font-size: 1.4em;
    }
    .page-game-guides-poker-skills__service-title {
        font-size: 1.1em;
    }
    .page-game-guides-poker-skills__cta-bottom {
        padding: 60px 0;
    }
    .page-game-guides-poker-skills__cta-description {
        font-size: 1em;
    }
}