/* style/game-guides-poker-bluffing-tactics.css */

:root {
    --page-primary-color: #0A2463;
    --page-secondary-color: #E0B94A;
    --page-text-dark: #0A2463;
    --page-text-light: #FFFFFF;
    --page-background-light: #F8F9FA;
    --page-background-dark: #1A3A77; /* Slightly lighter than primary for background */
    --page-accent-color: #f5db9c; /* Complementary to primary for emphasis */
}

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

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

.page-game-guides-poker-bluffing-tactics__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #1A3A77 100%); /* Adjusted gradient for better contrast */
    color: var(--page-text-light);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.page-game-guides-poker-bluffing-tactics__hero-content {
    max-width: 800px;
}

.page-game-guides-poker-bluffing-tactics__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-text-light);
}

.page-game-guides-poker-bluffing-tactics__hero-title .highlight {
    color: var(--page-secondary-color);
}

.page-game-guides-poker-bluffing-tactics__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--page-text-light);
}

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

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

.page-game-guides-poker-bluffing-tactics__btn--primary:hover {
    background-color: #c9a43a; /* Darker gold for hover */
    transform: translateY(-3px);
}

.page-game-guides-poker-bluffing-tactics__hero-image-container {
    max-width: 900px;
    width: 100%;
    margin-top: 30px;
}

.page-game-guides-poker-bluffing-tactics__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides-poker-bluffing-tactics__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    position: relative;
}

.page-game-guides-poker-bluffing-tactics__section-title .highlight {
    color: var(--page-secondary-color);
}

.page-game-guides-poker-bluffing-tactics__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--page-secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.page-game-guides-poker-bluffing-tactics__intro-section,
.page-game-guides-poker-bluffing-tactics__timing-section,
.page-game-guides-poker-bluffing-tactics__opponent-section,
.page-game-guides-poker-bluffing-tactics__mistakes-section,
.page-game-guides-poker-bluffing-tactics__responsible-gambling-section,
.page-game-guides-poker-bluffing-tactics__conclusion-section {
    padding: 60px 0;
    background-color: var(--page-background-light);
}

.page-game-guides-poker-bluffing-tactics__online-casino-section {
    padding: 60px 0;
    background-color: var(--page-background-dark);
    color: var(--page-text-light);
}

.page-game-guides-poker-bluffing-tactics__online-casino-section .page-game-guides-poker-bluffing-tactics__section-title {
    color: var(--page-text-light);
}

.page-game-guides-poker-bluffing-tactics__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: inherit; /* Inherits color from parent section */
}

.page-game-guides-poker-bluffing-tactics__text-content .highlight {
    color: var(--page-secondary-color);
    font-weight: bold;
}

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

.page-game-guides-poker-bluffing-tactics__grid-item {
    background-color: var(--page-background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    color: var(--page-text-dark);
}

.page-game-guides-poker-bluffing-tactics__grid-item:hover {
    transform: translateY(-10px);
}

.page-game-guides-poker-bluffing-tactics__grid-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-game-guides-poker-bluffing-tactics__grid-description {
    font-size: 1em;
    color: #555;
}

.page-game-guides-poker-bluffing-tactics__list,
.page-game-guides-poker-bluffing-tactics__ordered-list {
    list-style-type: disc;
    margin: 20px auto;
    padding-left: 30px;
    max-width: 900px;
    font-size: 1.1em;
    color: inherit;
}

.page-game-guides-poker-bluffing-tactics__ordered-list {
    list-style-type: decimal;
}

.page-game-guides-poker-bluffing-tactics__list li,
.page-game-guides-poker-bluffing-tactics__ordered-list li {
    margin-bottom: 10px;
    color: inherit;
}

.page-game-guides-poker-bluffing-tactics__list li strong {
    color: var(--page-primary-color);
}

.page-game-guides-poker-bluffing-tactics__online-casino-section .page-game-guides-poker-bluffing-tactics__list li strong {
    color: var(--page-secondary-color);
}

.page-game-guides-poker-bluffing-tactics__image-full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-poker-bluffing-tactics__image-center {
    display: block;
    margin: 40px auto;
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-poker-bluffing-tactics__cta-banner {
    background-color: var(--page-primary-color); /* Use primary color for banner background */
    color: var(--page-text-light);
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.page-game-guides-poker-bluffing-tactics__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-guides-poker-bluffing-tactics__cta-banner h3 {
    font-size: 2em;
    color: var(--page-secondary-color);
    margin-bottom: 10px;
}

.page-game-guides-poker-bluffing-tactics__cta-banner p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: var(--page-text-light);
}

.page-game-guides-poker-bluffing-tactics__cta-banner p .highlight {
    color: var(--page-secondary-color);
    font-weight: bold;
}

.page-game-guides-poker-bluffing-tactics__btn--secondary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    border: 2px solid var(--page-secondary-color);
    margin-right: 15px;
}

.page-game-guides-poker-bluffing-tactics__btn--secondary:hover {
    background-color: #c9a43a;
    transform: translateY(-3px);
}

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

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

.page-game-guides-poker-bluffing-tactics__responsible-gambling-icon {
    display: block;
    margin: 30px auto;
    max-width: 150px;
    height: auto;
}

@media (min-width: 768px) {
    .page-game-guides-poker-bluffing-tactics__hero-section {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
    }

    .page-game-guides-poker-bluffing-tactics__hero-content {
        flex: 1;
        padding-right: 30px;
    }

    .page-game-guides-poker-bluffing-tactics__hero-image-container {
        flex: 1;
        margin-top: 0;
    }

    .page-game-guides-poker-bluffing-tactics__hero-title {
        font-size: 4em;
    }

    .page-game-guides-poker-bluffing-tactics__hero-subtitle {
        font-size: 1.6em;
    }

    .page-game-guides-poker-bluffing-tactics__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-game-guides-poker-bluffing-tactics__cta-banner {
        flex-direction: row;
        text-align: left;
        padding: 40px;
    }

    .page-game-guides-poker-bluffing-tactics__cta-image {
        max-width: 300px;
        margin-bottom: 0;
        margin-right: 30px;
    }

    .page-game-guides-poker-bluffing-tactics__cta-text {
        flex: 1;
    }

    .page-game-guides-poker-bluffing-tactics__btn--secondary,
    .page-game-guides-poker-bluffing-tactics__btn--download {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .page-game-guides-poker-bluffing-tactics__hero-title {
        font-size: 2.5em;
    }

    .page-game-guides-poker-bluffing-tactics__hero-subtitle {
        font-size: 1.1em;
    }

    .page-game-guides-poker-bluffing-tactics__section-title {
        font-size: 2em;
    }

    .page-game-guides-poker-bluffing-tactics__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-game-guides-poker-bluffing-tactics__cta-banner h3 {
        font-size: 1.5em;
    }

    .page-game-guides-poker-bluffing-tactics__cta-banner p {
        font-size: 1em;
    }

    .page-game-guides-poker-bluffing-tactics__btn--secondary,
    .page-game-guides-poker-bluffing-tactics__btn--download {
        margin: 10px 0;
    }
}