/* style/blog-how-to-choose-a-reliable-betting-platform.css */

:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --background-dark: #0D0E12;
    --card-background: #17191F;
    --text-light: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
}

.page-blog-how-to-choose-a-reliable-betting-platform {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Text Main: #FFF3E6 - body background #0D0E12 (dark) */
    background-color: var(--background-dark);
    line-height: 1.6;
}

.page-blog-how-to-choose-a-reliable-betting-platform__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-how-to-choose-a-reliable-betting-platform__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding for visual separation */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-blog-how-to-choose-a-reliable-betting-platform__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-how-to-choose-a-reliable-betting-platform__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-how-to-choose-a-reliable-betting-platform__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-how-to-choose-a-reliable-betting-platform__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-choose-a-reliable-betting-platform__intro-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-choose-a-reliable-betting-platform__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: #ffffff; /* Button text always white */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-how-to-choose-a-reliable-betting-platform__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-blog-how-to-choose-a-reliable-betting-platform__cta-button--secondary {
    background: var(--background-dark);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.page-blog-how-to-choose-a-reliable-betting-platform__cta-button--secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.page-blog-how-to-choose-a-reliable-betting-platform__content-section {
    padding: 60px 0;
}

.page-blog-how-to-choose-a-reliable-betting-platform__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.page-blog-how-to-choose-a-reliable-betting-platform__content-section p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-blog-how-to-choose-a-reliable-betting-platform__content-section strong {
    color: var(--primary-color);
}

.page-blog-how-to-choose-a-reliable-betting-platform__criteria-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-choose-a-reliable-betting-platform__criteria-item {
    background-color: var(--card-background); /* Card BG: #17191F */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color); /* Border: #A84F0C */
    transition: transform 0.3s ease;
}

.page-blog-how-to-choose-a-reliable-betting-platform__criteria-item:hover {
    transform: translateY(-5px);
}

.page-blog-how-to-choose-a-reliable-betting-platform__criteria-heading {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-how-to-choose-a-reliable-betting-platform__image-inline {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-choose-a-reliable-betting-platform__evaluation-steps {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    counter-reset: step-counter;
}

.page-blog-how-to-choose-a-reliable-betting-platform__evaluation-steps li {
    background-color: var(--card-background);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 1.05rem;
    color: var(--text-light);
}

.page-blog-how-to-choose-a-reliable-betting-platform__evaluation-steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.page-blog-how-to-choose-a-reliable-betting-platform__call-to-action {
    background: linear-gradient(90deg, #17191F 0%, rgba(255, 140, 26, 0.1) 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid var(--border-color);
}

.page-blog-how-to-choose-a-reliable-betting-platform__call-to-action p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-blog-how-to-choose-a-reliable-betting-platform__faq-section {
    padding: 60px 0;
    background-color: rgba(23, 25, 31, 0.8); /* Slightly lighter card background for FAQ section */
    border-top: 1px solid var(--border-color);
}

.page-blog-how-to-choose-a-reliable-betting-platform__faq-list {
    margin-top: 40px;
}

.page-blog-how-to-choose-a-reliable-betting-platform__faq-item {
    background-color: var(--card-background);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    color: var(--text-light);
}

.page-blog-how-to-choose-a-reliable-betting-platform__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--secondary-color);
    transition: background-color 0.3s ease;
}

.page-blog-how-to-choose-a-reliable-betting-platform__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-choose-a-reliable-betting-platform__faq-item summary:hover {
    background-color: rgba(255, 140, 26, 0.1);
}

.page-blog-how-to-choose-a-reliable-betting-platform__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--primary-color);
    margin-left: 15px;
}

.page-blog-how-to-choose-a-reliable-betting-platform__faq-item[open] .page-blog-how-to-choose-a-reliable-betting-platform__faq-toggle {
    content: '−';
}

.page-blog-how-to-choose-a-reliable-betting-platform__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.page-blog-how-to-choose-a-reliable-betting-platform__faq-answer p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-how-to-choose-a-reliable-betting-platform__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__intro-text {
        font-size: clamp(0.95rem, 2vw, 1.15rem);
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__section-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-choose-a-reliable-betting-platform__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__intro-text {
        font-size: 1rem;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-bottom: 10px; /* Add some spacing if multiple buttons stack */
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__content-section,
    .page-blog-how-to-choose-a-reliable-betting-platform__faq-section {
        padding: 40px 0;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__criteria-item,
    .page-blog-how-to-choose-a-reliable-betting-platform__evaluation-steps li {
        padding: 20px;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__criteria-heading {
        font-size: 1.3rem;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__content-section p {
        font-size: 0.95rem;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__image-inline {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__hero-image-wrapper,
    .page-blog-how-to-choose-a-reliable-betting-platform__content-section .page-blog-how-to-choose-a-reliable-betting-platform__container,
    .page-blog-how-to-choose-a-reliable-betting-platform__faq-section .page-blog-how-to-choose-a-reliable-betting-platform__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__faq-item summary {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__call-to-action {
        padding: 30px 20px;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__call-to-action p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-blog-how-to-choose-a-reliable-betting-platform__hero-section {
        padding-bottom: 20px;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__intro-text {
        font-size: 0.9rem;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__criteria-item {
        padding: 15px;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__criteria-heading {
        font-size: 1.2rem;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__evaluation-steps li {
        font-size: 0.9rem;
        padding: 15px;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__faq-item summary {
        font-size: 0.95rem;
    }
    .page-blog-how-to-choose-a-reliable-betting-platform__faq-answer {
        font-size: 0.9rem;
    }
}