/* style/game-strategies-poker.css */
.page-game-strategies-poker {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for body text on dark background */
    background-color: #1a1a1a; /* Dark background */
}

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

.page-game-strategies-poker__hero-section {
    background: linear-gradient(135deg, #8B0000, #FFD700);
    padding: 100px 0;
    text-align: center;
    color: #f0f0f0;
}

.page-game-strategies-poker__main-title {
    font-size: 3.5em;
    color: #f0f0f0; /* White/light color for title on gradient */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-strategies-poker__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-strategies-poker__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-strategies-poker__section:last-of-type {
    border-bottom: none;
}

.page-game-strategies-poker__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-strategies-poker__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #8B0000;
    border-radius: 2px;
}

.page-game-strategies-poker__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-game-strategies-poker__content-grid:nth-child(even) {
    flex-direction: row-reverse;
}

.page-game-strategies-poker__text-content {
    flex: 1;
}

.page-game-strategies-poker__text-content h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-game-strategies-poker__text-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-game-strategies-poker__text-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-game-strategies-poker__text-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-game-strategies-poker__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-game-strategies-poker__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-strategies-poker__image--full-width {
    display: block;
    margin: 40px auto;
    max-width: 90%;
}

.page-game-strategies-poker__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-game-strategies-poker__list li {
    background-color: #2a2a2a;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-game-strategies-poker__list li:hover {
    transform: translateY(-5px);
}

.page-game-strategies-poker__list h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-game-strategies-poker__list p {
    line-height: 1.7;
}

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

.page-game-strategies-poker__strategy-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-game-strategies-poker__strategy-card:hover {
    transform: translateY(-5px);
}

.page-game-strategies-poker__strategy-card h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-game-strategies-poker__strategy-card p {
    line-height: 1.7;
}

.page-game-strategies-poker__variant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategies-poker__variant-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-game-strategies-poker__variant-card h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-game-strategies-poker__variant-card p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-game-strategies-poker__variant-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

.page-game-strategies-poker__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    font-size: 1.1em;
}

.page-game-strategies-poker__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1a1a1a; /* Dark text for contrast */
}

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

.page-game-strategies-poker__btn--secondary {
    background-color: #8B0000; /* Deep Red */
    color: #f0f0f0; /* Light text for contrast */
    border: 1px solid #8B0000;
}

.page-game-strategies-poker__btn--secondary:hover {
    background-color: #6a0000;
    transform: translateY(-2px);
}

.page-game-strategies-poker__btn--tertiary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-strategies-poker__btn--tertiary:hover {
    background-color: #FFD700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.page-game-strategies-poker__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

.page-game-strategies-poker__image--app-showcase {
    max-width: 700px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-strategies-poker__main-title {
        font-size: 2.8em;
    }

    .page-game-strategies-poker__section-title {
        font-size: 2em;
    }

    .page-game-strategies-poker__content-grid {
        flex-direction: column;
    }

    .page-game-strategies-poker__content-grid:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-game-strategies-poker__hero-section {
        padding: 80px 0;
    }

    .page-game-strategies-poker__main-title {
        font-size: 2.2em;
    }

    .page-game-strategies-poker__subtitle {
        font-size: 1em;
    }

    .page-game-strategies-poker__section {
        padding: 40px 0;
    }

    .page-game-strategies-poker__section-title {
        font-size: 1.8em;
    }

    .page-game-strategies-poker__strategy-card-grid,
    .page-game-strategies-poker__variant-grid {
        grid-template-columns: 1fr;
    }

    .page-game-strategies-poker__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }

    .page-game-strategies-poker__image--app-showcase {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-game-strategies-poker__main-title {
        font-size: 1.8em;
    }

    .page-game-strategies-poker__section-title {
        font-size: 1.5em;
    }

    .page-game-strategies-poker__hero-section {
        padding: 60px 0;
    }

    .page-game-strategies-poker__btn {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    .page-game-strategies-poker__image--app-showcase {
        max-width: 100%;
    }
}