/* style/game-center-poker-games.css */
.page-game-center-poker-games {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Main background color */
    line-height: 1.6;
}

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

/* Hero Section */
.page-game-center-poker-games__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Gradient background */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-game-center-poker-games__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-game-center-poker-games__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Auxiliary color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-game-center-poker-games__hero-subtitle {
    font-size: 1.3em;
    color: #B0B0B0;
    margin-bottom: 30px;
}

.page-game-center-poker-games__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.page-game-center-poker-games__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-game-center-poker-games__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-game-center-poker-games__section:last-of-type {
    border-bottom: none;
}

.page-game-center-poker-games__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Auxiliary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-center-poker-games__section p {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

/* CTA Buttons */
.page-game-center-poker-games__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for CTA */
    color: #0A192F; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.page-game-center-poker-games__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-game-center-poker-games__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    margin-left: 20px;
}

.page-game-center-poker-games__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

/* Feature List */
.page-game-center-poker-games__feature-list,
.page-game-center-poker-games__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-game-center-poker-games__feature-list li,
.page-game-center-poker-games__promo-list li {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-game-center-poker-games__icon {
    color: #FFD700;
    font-size: 1.5em;
    margin-right: 15px;
}

/* Game Grid */
.page-game-center-poker-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-center-poker-games__game-card {
    background-color: #1a293e; /* Slightly lighter dark background */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-game-center-poker-games__game-card:hover {
    transform: translateY(-5px);
}

.page-game-center-poker-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-game-center-poker-games__game-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-game-center-poker-games__game-description {
    font-size: 0.95em;
    color: #B0B0B0;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-game-center-poker-games__game-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-game-center-poker-games__game-button:hover {
    background-color: #e6c200;
}

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

.page-game-center-poker-games__cta-final-content {
    max-width: 800px;
}

.page-game-center-poker-games__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-game-center-poker-games__cta-group .page-game-center-poker-games__cta-button {
    margin-top: 0; /* Override default margin */
}

/* Security Section */
.page-game-center-poker-games__security {
    text-align: center;
}

.page-game-center-poker-games__security-image {
    max-width: 250px;
    height: auto;
    margin: 30px auto;
    display: block;
}

/* Footer Links (within main for this page) */
.page-game-center-poker-games__footer-links {
    background-color: #0A192F;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-center-poker-games__footer-text {
    color: #808080;
    font-size: 0.9em;
}

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

    .page-game-center-poker-games__hero-content,
    .page-game-center-poker-games__hero-image-wrapper {
        text-align: center;
    }

    .page-game-center-poker-games__hero-title {
        font-size: 2.8em;
    }

    .page-game-center-poker-games__hero-subtitle {
        font-size: 1.1em;
    }

    .page-game-center-poker-games__section-title {
        font-size: 2em;
    }

    .page-game-center-poker-games__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-game-center-poker-games__hero {
        padding: 60px 0;
    }

    .page-game-center-poker-games__hero-title {
        font-size: 2.2em;
    }

    .page-game-center-poker-games__section {
        padding: 40px 0;
    }

    .page-game-center-poker-games__section-title {
        font-size: 1.8em;
    }

    .page-game-center-poker-games__game-grid {
        grid-template-columns: 1fr;
    }

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

    .page-game-center-poker-games__cta-button {
        width: 100%;
        max-width: 300px;
    }

    .page-game-center-poker-games__cta-button--secondary {
        margin-top: 0;
    }
}