/* style/games-poker.css */
.page-games-poker {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f8f8f8; /* Light text for dark background */
    background-color: #1A202C;
    line-height: 1.6;
}

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

.page-games-poker-section-title {
    font-size: 2.8em;
    color: #FFD700; /* Auxiliary color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-games-poker-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-games-poker .highlight {
    color: #FFD700;
}

.page-games-poker-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-games-poker-btn.primary-btn {
    background-color: #FFD700; /* Auxiliary color */
    color: #1A202C; /* Dark text for auxiliary background */
}

.page-games-poker-btn.primary-btn:hover {
    background-color: #e6c200; /* Slightly darker yellow on hover */
    transform: translateY(-2px);
}

.page-games-poker-btn.secondary-btn {
    background-color: transparent;
    color: #FFD700; /* Auxiliary color */
    border: 2px solid #FFD700;
}

.page-games-poker-btn.secondary-btn:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

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

.page-games-poker-btn.large-btn {
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-games-poker-text-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-games-poker-text-link:hover {
    text-decoration: underline;
    color: #e6c200;
}

/* Hero Section */
.page-games-poker-hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Dark gradient */
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 500px;
    flex-wrap: wrap;
}

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

.page-games-poker-hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #f8f8f8;
}

.page-games-poker-hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #cccccc;
}

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

.page-games-poker-hero-image {
    flex-shrink: 0;
}

.page-games-poker-hero-image .page-games-poker-image {
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* About Section */
.page-games-poker-about {
    padding: 80px 0;
    background-color: #242c3b; /* Slightly lighter dark background */
}

.page-games-poker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-games-poker-feature-item {
    background-color: #1A202C; /* Primary color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-games-poker-feature-item:hover {
    transform: translateY(-10px);
}

.page-games-poker-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-games-poker-feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-poker-feature-description {
    color: #cccccc;
    font-size: 1.1em;
}

/* Games Showcase Section */
.page-games-poker-games-showcase {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-games-poker-intro-text {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 50px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-games-poker-game-card {
    background-color: #242c3b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-poker-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.page-games-poker-game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-games-poker-game-card h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin: 20px 0 10px;
}

.page-games-poker-game-card p {
    color: #cccccc;
    padding: 0 20px 20px;
    font-size: 1.05em;
}

.page-games-poker-game-card .page-games-poker-btn {
    margin-bottom: 20px;
}

.page-games-poker-cta-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 50px;
    color: #cccccc;
}

/* Promotions Section */
.page-games-poker-promotions {
    padding: 80px 0;
    background-color: #242c3b;
}

.page-games-poker-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-games-poker-promo-card {
    background-color: #1A202C;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-poker-promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.page-games-poker-promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.page-games-poker-promo-card h3 {
    font-size: 1.7em;
    color: #FFD700;
    margin: 20px 0 10px;
}

.page-games-poker-promo-card p {
    color: #cccccc;
    padding: 0 20px 20px;
    font-size: 1.05em;
}

.page-games-poker-promo-card .page-games-poker-btn {
    margin-bottom: 20px;
}

/* App Download Section */
.page-games-poker-app-download {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-games-poker-app-description {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-poker-app-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap-reverse;
}

.page-games-poker-app-info {
    max-width: 500px;
    text-align: left;
}

.page-games-poker-app-info p {
    font-size: 1.2em;
    color: #cccccc;
    margin-bottom: 30px;
}

.page-games-poker-download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-games-poker-app-image .page-games-poker-image {
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Security Section */
.page-games-poker-security {
    padding: 80px 0;
    background-color: #242c3b;
}

.page-games-poker-security-intro {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 50px;
    color: #cccccc;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-poker-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-games-poker-security-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-games-poker-security-item:hover {
    transform: translateY(-10px);
}

.page-games-poker-security-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-poker-security-description {
    color: #cccccc;
    font-size: 1.1em;
}

/* Final CTA Section */
.page-games-poker-cta-final {
    padding: 80px 0;
    background-color: #1A202C;
    text-align: center;
}

.page-games-poker-cta-final .page-games-poker-section-title {
    margin-bottom: 20px;
}

.page-games-poker-cta-description {
    font-size: 1.4em;
    color: #f8f8f8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-poker-hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .page-games-poker-hero-content {
        text-align: center;
    }

    .page-games-poker-hero-title {
        font-size: 3em;
    }

    .page-games-poker-hero-image .page-games-poker-image {
        max-width: 400px;
    }

    .page-games-poker-app-content {
        flex-direction: column;
    }

    .page-games-poker-app-info {
        text-align: center;
    }
}

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

    .page-games-poker-hero-title {
        font-size: 2.5em;
    }

    .page-games-poker-hero-description {
        font-size: 1.1em;
    }

    .page-games-poker-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-games-poker-grid, .page-games-poker-game-grid, .page-games-poker-promo-grid, .page-games-poker-security-grid {
        grid-template-columns: 1fr;
    }
}

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

    .page-games-poker-hero-title {
        font-size: 2em;
    }

    .page-games-poker-hero-actions {
        flex-direction: column;
    }

    .page-games-poker-btn {
        width: 100%;
    }

    .page-games-poker-hero-image .page-games-poker-image {
        max-width: 100%;
    }
    .page-games-poker-app-image .page-games-poker-image {
        max-width: 100%;
    }
}