/* style/blog-troubleshooting-suncity888-access.css */

/* Custom Colors */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --btn-gradient-start: #2AD16F;
    --btn-gradient-end: #13994A;
    --card-bg: #11271B;
    --bg-color: #08160F; /* This is the body background color */
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

/* Base styles for the page content, considering body background is dark */
.page-blog-troubleshooting-suncity888-access {
    background-color: var(--bg-color); /* Matches body background for seamless look */
    color: var(--text-main); /* Light text for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom before footer */
}

/* Hero Section */
.page-blog-troubleshooting-suncity888-access__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, larger bottom padding */
    background-color: var(--deep-green); /* A slightly different dark green for the hero section background */
    overflow: hidden;
}

.page-blog-troubleshooting-suncity888-access__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width for large screens */
    margin-bottom: 30px; /* Space between image and text content */
}

.page-blog-troubleshooting-suncity888-access__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-troubleshooting-suncity888-access__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

.page-blog-troubleshooting-suncity888-access__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    color: var(--gold-color); /* Gold color for main title */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-troubleshooting-suncity888-access__hero-description {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-troubleshooting-suncity888-access__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-troubleshooting-suncity888-access__btn-primary,
.page-blog-troubleshooting-suncity888-access__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%; /* Button responsive */
    box-sizing: border-box; /* Button responsive */
    white-space: normal; /* Button text wrap */
    word-wrap: break-word; /* Button text wrap */
}

.page-blog-troubleshooting-suncity888-access__btn-primary {
    background: var(--btn-gradient-start); /* Fallback for gradient */
    background: linear-gradient(180deg, var(--btn-gradient-start) 0%, var(--btn-gradient-end) 100%);
    color: var(--text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-troubleshooting-suncity888-access__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
    opacity: 0.9;
}

.page-blog-troubleshooting-suncity888-access__btn-secondary {
    background-color: transparent;
    color: var(--btn-gradient-start);
    border: 2px solid var(--btn-gradient-start);
}

.page-blog-troubleshooting-suncity888-access__btn-secondary:hover {
    background-color: rgba(42, 209, 111, 0.1);
    transform: translateY(-3px);
    color: var(--text-main);
}

/* Content Area */
.page-blog-troubleshooting-suncity888-access__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--bg-color);
    color: var(--text-main);
}

.page-blog-troubleshooting-suncity888-access__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: var(--gold-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-troubleshooting-suncity888-access__sub-title {
    font-size: clamp(1.4em, 2.8vw, 2em);
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.page-blog-troubleshooting-suncity888-access__paragraph {
    font-size: 1em;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.page-blog-troubleshooting-suncity888-access__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-blog-troubleshooting-suncity888-access__list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.page-blog-troubleshooting-suncity888-access__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.1em;
    line-height: 1;
}

.page-blog-troubleshooting-suncity888-access__ordered-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    counter-reset: step-counter;
}

.page-blog-troubleshooting-suncity888-access__ordered-list .page-blog-troubleshooting-suncity888-access__list-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    counter-increment: step-counter;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.page-blog-troubleshooting-suncity888-access__ordered-list .page-blog-troubleshooting-suncity888-access__list-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: var(--primary-color);
    color: var(--text-main);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9em;
    border: 2px solid var(--glow-color);
    box-shadow: 0 0 5px var(--glow-color);
}

.page-blog-troubleshooting-suncity888-access__image-block {
    margin: 30px 0;
    text-align: center;
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-troubleshooting-suncity888-access__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-blog-troubleshooting-suncity888-access__inline-link {
    color: var(--gold-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-blog-troubleshooting-suncity888-access__inline-link:hover {
    color: var(--glow-color);
}

/* FAQ Section */
.page-blog-troubleshooting-suncity888-access__faq-container {
    margin-top: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.page-blog-troubleshooting-suncity888-access__faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 15px;
}

.page-blog-troubleshooting-suncity888-access__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-blog-troubleshooting-suncity888-access__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-main);
    font-size: 1.1em;
    padding: 10px 0;
    list-style: none; /* For details/summary */
}

.page-blog-troubleshooting-suncity888-access__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-troubleshooting-suncity888-access__faq-toggle {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-blog-troubleshooting-suncity888-access__faq-item[open] .page-blog-troubleshooting-suncity888-access__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-blog-troubleshooting-suncity888-access__faq-answer {
    padding-top: 10px;
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.5;
}

/* CTA Section at the bottom */
.page-blog-troubleshooting-suncity888-access__cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: var(--deep-green);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-blog-troubleshooting-suncity888-access__cta-section .page-blog-troubleshooting-suncity888-access__section-title {
    color: var(--gold-color);
    margin-top: 0;
    margin-bottom: 20px;
}

.page-blog-troubleshooting-suncity888-access__cta-section .page-blog-troubleshooting-suncity888-access__paragraph {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-troubleshooting-suncity888-access__hero-content {
        padding: 0 15px;
    }
    .page-blog-troubleshooting-suncity888-access__content-area {
        padding: 30px 15px;
    }
    .page-blog-troubleshooting-suncity888-access__faq-container {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    /* General content padding */
    .page-blog-troubleshooting-suncity888-access__hero-section,
    .page-blog-troubleshooting-suncity888-access__content-area,
    .page-blog-troubleshooting-suncity888-access__cta-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Images responsiveness */
    .page-blog-troubleshooting-suncity888-access img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    
    .page-blog-troubleshooting-suncity888-access__image-block {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Video responsiveness (if any, though not in current HTML) */
    .page-blog-troubleshooting-suncity888-access video,
    .page-blog-troubleshooting-suncity888-access__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-troubleshooting-suncity888-access__video-section,
    .page-blog-troubleshooting-suncity888-access__video-container,
    .page-blog-troubleshooting-suncity888-access__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-troubleshooting-suncity888-access__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
    .page-blog-troubleshooting-suncity888-access__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Button responsiveness */
    .page-blog-troubleshooting-suncity888-access__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-troubleshooting-suncity888-access__btn-primary,
    .page-blog-troubleshooting-suncity888-access__btn-secondary,
    .page-blog-troubleshooting-suncity888-access a[class*="button"],
    .page-blog-troubleshooting-suncity888-access a[class*="btn"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-blog-troubleshooting-suncity888-access__main-title {
        font-size: 2em; /* Adjust H1 for smaller screens */
    }

    .page-blog-troubleshooting-suncity888-access__section-title {
        font-size: 1.5em;
    }

    .page-blog-troubleshooting-suncity888-access__sub-title {
        font-size: 1.2em;
    }
    
    .page-blog-troubleshooting-suncity888-access__faq-question {
        font-size: 1em;
    }

    .page-blog-troubleshooting-suncity888-access__ordered-list .page-blog-troubleshooting-suncity888-access__list-item {
        padding: 15px;
        padding-left: 40px;
    }
    .page-blog-troubleshooting-suncity888-access__ordered-list .page-blog-troubleshooting-suncity888-access__list-item::before {
        top: 15px;
        left: 10px;
    }
}