/* style/blog-how-to-access-shbet1.css */

/* Custom Colors */
:root {
    --shbet1-primary-color: #11A84E;
    --shbet1-secondary-color: #22C768;
    --shbet1-bg-color: #08160F;
    --shbet1-card-bg: #11271B;
    --shbet1-text-main: #F2FFF6;
    --shbet1-text-secondary: #A7D9B8;
    --shbet1-border-color: #2E7A4E;
    --shbet1-glow-color: #57E38D;
    --shbet1-gold-color: #F2C14E;
    --shbet1-divider-color: #1E3A2A;
    --shbet1-deep-green: #0A4B2C;
    --shbet1-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-how-to-access-shbet1 {
    font-family: Arial, sans-serif;
    color: var(--shbet1-text-main); /* Default text color for the page */
    background-color: var(--shbet1-bg-color); /* Matches body background */
}

.page-blog-how-to-access-shbet1__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, header offset handled by body */
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-how-to-access-shbet1__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-blog-how-to-access-shbet1__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-how-to-access-shbet1__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: var(--shbet1-text-main);
}

.page-blog-how-to-access-shbet1__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--shbet1-text-main);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-access-shbet1__description {
    font-size: clamp(1em, 1.5vw, 1.25em);
    margin-bottom: 30px;
    color: var(--shbet1-text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-access-shbet1__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-how-to-access-shbet1__btn-primary,
.page-blog-how-to-access-shbet1__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    min-width: 180px;
}

.page-blog-how-to-access-shbet1__btn-primary {
    background: var(--shbet1-button-gradient);
    color: var(--shbet1-text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-access-shbet1__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-how-to-access-shbet1__btn-secondary {
    background: transparent;
    color: var(--shbet1-secondary-color);
    border: 2px solid var(--shbet1-secondary-color);
}

.page-blog-how-to-access-shbet1__btn-secondary:hover {
    background: var(--shbet1-secondary-color);
    color: var(--shbet1-text-main);
}

.page-blog-how-to-access-shbet1__btn-large {
    padding: 18px 35px;
    font-size: 1.1em;
}

.page-blog-how-to-access-shbet1__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--shbet1-bg-color); /* Ensure consistent background */
    color: var(--shbet1-text-main);
}

.page-blog-how-to-access-shbet1__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-how-to-access-shbet1__section-title {
    font-size: 2.2em;
    color: var(--shbet1-primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.page-blog-how-to-access-shbet1__sub-title {
    font-size: 1.6em;
    color: var(--shbet1-secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-how-to-access-shbet1__paragraph,
.page-blog-how-to-access-shbet1__ordered-list li,
.page-blog-how-to-access-shbet1__unordered-list li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--shbet1-text-secondary);
}

.page-blog-how-to-access-shbet1__paragraph a,
.page-blog-how-to-access-shbet1__ordered-list li a,
.page-blog-how-to-access-shbet1__unordered-list li a {
    color: var(--shbet1-gold-color);
    text-decoration: underline;
}

.page-blog-how-to-access-shbet1__paragraph a:hover,
.page-blog-how-to-access-shbet1__ordered-list li a:hover,
.page-blog-how-to-access-shbet1__unordered-list li a:hover {
    color: var(--shbet1-glow-color);
}

.page-blog-how-to-access-shbet1__ordered-list,
.page-blog-how-to-access-shbet1__unordered-list {
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-blog-how-to-access-shbet1__ordered-list li strong,
.page-blog-how-to-access-shbet1__unordered-list li strong {
    color: var(--shbet1-text-main);
}

.page-blog-how-to-access-shbet1__image-block {
    margin: 30px 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-how-to-access-shbet1__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

.page-blog-how-to-access-shbet1__cta-section {
    background-color: var(--shbet1-card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-access-shbet1__cta-section .page-blog-how-to-access-shbet1__section-title {
    color: var(--shbet1-text-main);
    margin-top: 0;
}

.page-blog-how-to-access-shbet1__cta-section .page-blog-how-to-access-shbet1__paragraph {
    color: var(--shbet1-text-secondary);
    margin-bottom: 30px;
}

.page-blog-how-to-access-shbet1__faq-list {
    margin-top: 40px;
    border-top: 1px solid var(--shbet1-divider-color);
}

.page-blog-how-to-access-shbet1__faq-item {
    border-bottom: 1px solid var(--shbet1-divider-color);
    padding: 15px 0;
    color: var(--shbet1-text-main);
}

.page-blog-how-to-access-shbet1__faq-item details > summary {
    list-style: none;
}

.page-blog-how-to-access-shbet1__faq-item details > summary::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-access-shbet1__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    color: var(--shbet1-text-main);
    padding: 10px 0;
}

.page-blog-how-to-access-shbet1__faq-question:hover {
    color: var(--shbet1-primary-color);
}

.page-blog-how-to-access-shbet1__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-how-to-access-shbet1__faq-item[open] .page-blog-how-to-access-shbet1__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-how-to-access-shbet1__faq-answer {
    padding-top: 10px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--shbet1-text-secondary);
    padding-left: 20px;
}

.page-blog-how-to-access-shbet1 .highlight {
    color: var(--shbet1-gold-color);
    font-weight: bold;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
    .page-blog-how-to-access-shbet1__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-blog-how-to-access-shbet1__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-blog-how-to-access-shbet1__description {
        font-size: clamp(0.9em, 3.5vw, 1.1em);
    }

    .page-blog-how-to-access-shbet1__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-how-to-access-shbet1__btn-primary,
    .page-blog-how-to-access-shbet1__btn-secondary,
    .page-blog-how-to-access-shbet1 a[class*="button"],
    .page-blog-how-to-access-shbet1 a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-how-to-access-shbet1__content-area {
        padding: 30px 15px;
    }

    .page-blog-how-to-access-shbet1__section-title {
        font-size: 1.8em;
    }

    .page-blog-how-to-access-shbet1__sub-title {
        font-size: 1.4em;
    }

    .page-blog-how-to-access-shbet1__paragraph,
    .page-blog-how-to-access-shbet1__ordered-list li,
    .page-blog-how-to-access-shbet1__unordered-list li,
    .page-blog-how-to-access-shbet1__faq-answer {
        font-size: 1em;
        line-height: 1.6;
    }

    .page-blog-how-to-access-shbet1__faq-question {
        font-size: 1.1em;
    }

    /* Ensure all images are responsive */
    .page-blog-how-to-access-shbet1 img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-how-to-access-shbet1__image-block,
    .page-blog-how-to-access-shbet1__hero-image-wrapper,
    .page-blog-how-to-access-shbet1__container,
    .page-blog-how-to-access-shbet1__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .page-blog-how-to-access-shbet1__hero-section {
        padding: 30px 10px;
        padding-top: 10px !important;
    }

    .page-blog-how-to-access-shbet1__main-title {
        font-size: clamp(1.5em, 8vw, 2.2em);
    }

    .page-blog-how-to-access-shbet1__section-title {
        font-size: 1.6em;
    }

    .page-blog-how-to-access-shbet1__sub-title {
        font-size: 1.2em;
    }

    .page-blog-how-to-access-shbet1__btn-primary,
    .page-blog-how-to-access-shbet1__btn-secondary {
        min-width: unset;
    }
}