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

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

/* Hero Section */
.page-games-poker__hero-section {
    background: linear-gradient(135deg, #1A237E, #3F51B5);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-poker__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,card_pattern,gaming_texture]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-games-poker__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: #FFC107; /* Highlight color for title */
}

.page-games-poker__hero-title .highlight {
    color: #FFC107;
}

.page-games-poker__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-games-poker__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-games-poker__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-games-poker__btn--primary {
    background-color: #FFC107;
    color: #1A237E;
    border: 2px solid #FFC107;
}

.page-games-poker__btn--primary:hover {
    background-color: #e6a700;
    border-color: #e6a700;
    transform: translateY(-2px);
}

.page-games-poker__btn--secondary {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-games-poker__btn--secondary:hover {
    background-color: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
}

.page-games-poker__btn--link {
    color: #1A237E;
    text-decoration: underline;
    padding: 0;
    border: none;
    background: none;
    font-size: 1em;
}

.page-games-poker__btn--link:hover {
    color: #FFC107;
}

.page-games-poker__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

/* Sections */
.page-games-poker__introduction-section,
.page-games-poker__featured-games,
.page-games-poker__advantages-section,
.page-games-poker__strategy-guide,
.page-games-poker__cta-section {
    padding: 80px 0;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-games-poker__section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-games-poker__section-subtitle {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-poker__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-games-poker__content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-games-poker__image-content {
        order: 2;
    }
    .page-games-poker__text-content {
        order: 1;
    }
}

.page-games-poker__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-games-poker__text-content p {
    margin-bottom: 15px;
    color: #444;
}

/* Featured Games */
.page-games-poker__game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-games-poker__game-card {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}

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

.page-games-poker__game-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.page-games-poker__game-card-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-games-poker__game-card-title a {
    color: #1A237E;
    text-decoration: none;
}

.page-games-poker__game-card-title a:hover {
    color: #FFC107;
}

.page-games-poker__game-card-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    padding: 0 15px;
}

/* Advantages */
.page-games-poker__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-games-poker__advantage-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-games-poker__advantage-item:hover {
    transform: translateY(-5px);
}

.page-games-poker__advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(26, 35, 126, 0.2));
}

.page-games-poker__advantage-item h3 {
    color: #1A237E;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-games-poker__advantage-item p {
    color: #555;
    font-size: 0.95em;
}

/* Strategy Guide */
.page-games-poker__strategy-guide {
    background-color: #f0f2f5;
}

.page-games-poker__strategy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-games-poker__strategy-content h3 {
    color: #1A237E;
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-games-poker__strategy-content p {
    color: #444;
    margin-bottom: 20px;
}

/* CTA Section */
.page-games-poker__cta-section {
    text-align: center;
    padding: 100px 0;
    background: #1A237E;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-games-poker__cta-image {
    width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-games-poker__cta-content {
    max-width: 600px;
    text-align: left;
}

.page-games-poker__cta-content .page-games-poker__section-title {
    color: #FFC107;
    font-size: 2.8em;
    text-align: left;
    margin-bottom: 20px;
}

.page-games-poker__cta-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-games-poker__cta-content p .highlight {
    color: #FFC107;
    font-weight: bold;
}

.page-games-poker__cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Floating Ad */
.page-games-poker__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFC107;
    border: 2px solid #1A237E;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.5s ease-out;
}

.page-games-poker__floating-ad.show {
    transform: translateX(0);
}

.page-games-poker__floating-ad a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1A237E;
    font-weight: bold;
}

.page-games-poker__floating-ad-image {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
}

.page-games-poker__floating-ad-text {
    font-size: 1em;
    margin-left: 10px;
}

.page-games-poker__floating-ad-close {
    background: none;
    border: none;
    font-size: 1.5em;
    color: #1A237E;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    margin-left: 10px;
}

.page-games-poker__floating-ad-close:hover {
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-games-poker__hero-title {
        font-size: 3em;
    }
    .page-games-poker__section-title {
        font-size: 2em;
    }
    .page-games-poker__cta-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        gap: 30px;
    }
    .page-games-poker__cta-content {
        text-align: center;
    }
    .page-games-poker__cta-content .page-games-poker__section-title {
        text-align: center;
    }
    .page-games-poker__cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-games-poker__hero-section {
        padding: 80px 0;
    }
    .page-games-poker__hero-title {
        font-size: 2.5em;
    }
    .page-games-poker__hero-description {
        font-size: 1em;
    }
    .page-games-poker__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-games-poker__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-games-poker__introduction-section,
    .page-games-poker__featured-games,
    .page-games-poker__advantages-section,
    .page-games-poker__strategy-guide,
    .page-games-poker__cta-section {
        padding: 50px 0;
    }
    .page-games-poker__section-title {
        font-size: 1.8em;
    }
    .page-games-poker__section-subtitle {
        font-size: 0.95em;
    }
    .page-games-poker__game-cards-grid {
        grid-template-columns: 1fr;
    }
    .page-games-poker__advantages-grid {
        grid-template-columns: 1fr;
    }
    .page-games-poker__cta-image {
        width: 200px;
    }
    .page-games-poker__cta-content .page-games-poker__section-title {
        font-size: 2em;
    }
    .page-games-poker__cta-content p {
        font-size: 1em;
    }
    .page-games-poker__floating-ad {
        flex-direction: column;
        align-items: flex-start;
        right: 10px;
        bottom: 10px;
        padding: 10px;
    }
    .page-games-poker__floating-ad-text {
        margin-left: 0;
        margin-top: 5px;
        text-align: center;
        width: 100%;
    }
    .page-games-poker__floating-ad-close {
        position: absolute;
        top: 5px;
        right: 5px;
        margin-left: 0;
    }
}