:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-button-color: #C30808;
    --login-button-color: #C30808;
    --background-color: #FFFFFF;
    --register-login-text-color: #FFFF00;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
}

.page-blog-poker-strategies-tips {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-color);
}

.page-blog-poker-strategies-tips__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Article Header Section */
.page-blog-poker-strategies-tips__hero-article-header {
    background-color: #f9f9f9;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-blog-poker-strategies-tips__hero-image-wrapper {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-poker-strategies-tips__hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-poker-strategies-tips__hero-content {
    text-align: center;
}

.page-blog-poker-strategies-tips__main-title {
    font-size: clamp(28px, 4vw, 36px); /* Adjusted to clamp */
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-poker-strategies-tips__intro-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-poker-strategies-tips__meta-info {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* Content Area */
.page-blog-poker-strategies-tips__content-area {
    padding: 40px 0;
}

.page-blog-poker-strategies-tips__article-body h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.page-blog-poker-strategies-tips__article-body h3 {
    font-size: 22px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-poker-strategies-tips__article-body p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-blog-poker-strategies-tips__article-body ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-blog-poker-strategies-tips__article-body li {
    margin-bottom: 8px;
}

.page-blog-poker-strategies-tips__article-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* FAQ Section */
.page-blog-poker-strategies-tips__faq-list {
    margin-top: 30px;
}

details.page-blog-poker-strategies-tips__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
details.page-blog-poker-strategies-tips__faq-item summary.page-blog-poker-strategies-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}
details.page-blog-poker-strategies-tips__faq-item summary.page-blog-poker-strategies-tips__faq-question::-webkit-details-marker {
    display: none;
}
details.page-blog-poker-strategies-tips__faq-item summary.page-blog-poker-strategies-tips__faq-question:hover {
    background: #f5f5f5;
}
.page-blog-poker-strategies-tips__faq-qtext {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--primary-color);
}
.page-blog-poker-strategies-tips__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-blog-poker-strategies-tips__faq-item .page-blog-poker-strategies-tips__faq-answer {
    padding: 0 20px 20px;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
    color: #555;
    font-size: 16px;
}
details.page-blog-poker-strategies-tips__faq-item[open] summary.page-blog-poker-strategies-tips__faq-question {
    background-color: #e8f5e9; /* Light green when open */
    border-bottom: 1px solid var(--primary-color);
}


/* CTA Section */
.page-blog-poker-strategies-tips__cta-section {
    text-align: center;
    background-color: #e8f5e9; /* Light green background */
    padding: 50px 20px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-poker-strategies-tips__cta-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog-poker-strategies-tips__cta-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-poker-strategies-tips__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--register-button-color); /* Using register color for prominence */
    color: var(--register-login-text-color); /* Using register text color */
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-blog-poker-strategies-tips__cta-button:hover {
    background: #a80707; /* Darker red on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-poker-strategies-tips__hero-article-header {
        padding: 30px 0;
        padding-top: 10px !important; /* Ensure small top padding on mobile */
    }

    .page-blog-poker-strategies-tips__main-title {
        font-size: clamp(24px, 6vw, 28px); /* Adjusted for mobile */
        padding: 0 15px;
    }

    .page-blog-poker-strategies-tips__intro-text {
        font-size: 16px;
        padding: 0 15px;
    }

    .page-blog-poker-strategies-tips__content-area {
        padding: 20px 0;
    }

    .page-blog-poker-strategies-tips__container {
        padding: 0 15px;
    }

    .page-blog-poker-strategies-tips__article-body h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-blog-poker-strategies-tips__article-body h3 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-blog-poker-strategies-tips__article-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto;
    }

    /* FAQ */
    details.page-blog-poker-strategies-tips__faq-item summary.page-blog-poker-strategies-tips__faq-question {
        padding: 15px;
    }
    .page-blog-poker-strategies-tips__faq-qtext {
        font-size: 15px;
    }
    details.page-blog-poker-strategies-tips__faq-item .page-blog-poker-strategies-tips__faq-answer {
        padding: 0 15px 15px;
    }

    /* CTA */
    .page-blog-poker-strategies-tips__cta-section {
        padding: 30px 15px;
        margin-top: 30px;
    }

    .page-blog-poker-strategies-tips__cta-title {
        font-size: 26px;
    }

    .page-blog-poker-strategies-tips__cta-description {
        font-size: 16px;
    }

    .page-blog-poker-strategies-tips__cta-button {
        padding: 12px 30px;
        font-size: 18px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* General image and container responsiveness */
    .page-blog-poker-strategies-tips img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-poker-strategies-tips__hero-article-header,
    .page-blog-poker-strategies-tips__content-area,
    .page-blog-poker-strategies-tips__cta-section,
    .page-blog-poker-strategies-tips__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}