:root {
    --page-bg-color: #08160F; /* Background */
    --card-bg-color: #11271B; /* Card BG */
    --text-main-color: #F2FFF6; /* Text Main */
    --text-secondary-color: #A7D9B8; /* Text Secondary */
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    --border-color: #2E7A4E; /* Border */
    --glow-color: #57E38D; /* Glow */
    --gold-color: #F2C14E; /* Gold */
    --divider-color: #1E3A2A; /* Divider */
    --deep-green-color: #0A4B2C; /* Deep Green */
}

.page-blog-99ok-login-troubleshooting {
    background-color: var(--page-bg-color);
    color: var(--text-main-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Add some padding at the bottom before footer */
}

.page-blog-99ok-login-troubleshooting__section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-blog-99ok-login-troubleshooting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-99ok-login-troubleshooting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--deep-green-color); /* A darker green for the hero background */
    overflow: hidden;
    text-align: center;
}

.page-blog-99ok-login-troubleshooting__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height of hero image wrapper */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-blog-99ok-login-troubleshooting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-blog-99ok-login-troubleshooting__hero-content {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
    max-width: 800px;
    margin-top: 30px; /* Space between image and content */
    background-color: var(--card-bg-color); /* Use card background for content block */
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.page-blog-99ok-login-troubleshooting__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Flexible font size */
    font-weight: bold;
    color: var(--text-main-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-blog-99ok-login-troubleshooting__hero-description {
    font-size: 1.1em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

.page-blog-99ok-login-troubleshooting__section-title {
    font-size: 2.5em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-99ok-login-troubleshooting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--button-gradient);
    border-radius: 5px;
}