/* style/blog-how-to-securely-register-u888id.css */

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

.page-blog-how-to-securely-register-u888id {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--background-dark);
}

.page-blog-how-to-securely-register-u888id__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Rely on body for header offset, use small top padding */
    background-color: var(--background-dark);
    overflow: hidden;
}

.page-blog-how-to-securely-register-u888id__hero-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.page-blog-how-to-securely-register-u888id__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for hero image */
    filter: brightness(0.7);
}

.page-blog-how-to-securely-register-u888id__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    transform: translateY(-50px); /* Move content up slightly to overlap image bottom */
    background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-securely-register-u888id__main-title {
    font-size: clamp(2em, 4vw, 3em);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-blog-how-to-securely-register-u888id__intro-text {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-blog-how-to-securely-register-u888id__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-gradient);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-securely-register-u888id__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-blog-how-to-securely-register-u888id__content-area {
    background-color: var(--background-dark);
    padding: 60px 20px;
    color: var(--text-main);
}

.page-blog-how-to-securely-register-u888id__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-how-to-securely-register-u888id__section-title {
    font-size: 2.2em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-how-to-securely-register-u888id__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-blog-how-to-securely-register-u888id__step-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-securely-register-u888id__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(var(--glow-color), 0.5);
}

.page-blog-how-to-securely-register-u888id__step-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.page-blog-how-to-securely-register-u888id__step-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-how-to-securely-register-u888id__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.page-blog-how-to-securely-register-u888id__list li {
    background-color: var(--deep-green);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    color: var(--text-main);
    font-size: 1.05em;
}

.page-blog-how-to-securely-register-u888id__tip-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-securely-register-u888id__tip-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-blog-how-to-securely-register-u888id__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-securely-register-u888id__benefits-list li {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-securely-register-u888id__benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(var(--glow-color), 0.5);
}

.page-blog-how-to-securely-register-u888id__benefit-item-title {
    font-size: 1.6em;
    color: var(--gold-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-blog-how-to-securely-register-u888id__cta-bottom,
.page-blog-how-to-securely-register-u888id__cta-final {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
    padding: 18px 35px;
}

.page-blog-how-to-securely-register-u888id__faq-section {
    background-color: var(--background-dark);
    padding: 60px 20px;
    color: var(--text-main);
}

.page-blog-how-to-securely-register-u888id__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-how-to-securely-register-u888id__faq-item[open] {
    background-color: var(--deep-green);
    border-color: var(--primary-color);
}

.page-blog-how-to-securely-register-u888id__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    position: relative;
}

.page-blog-how-to-securely-register-u888id__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-securely-register-u888id__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
    transition: transform 0.3s ease;
}

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

.page-blog-how-to-securely-register-u888id__faq-answer {
    padding: 0 25px 20px 25px;
    color: var(--text-secondary);
    font-size: 1.05em;
}

.page-blog-how-to-securely-register-u888id__conclusion-section {
    background-color: var(--background-dark);
    padding: 60px 20px;
    text-align: center;
    color: var(--text-main);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-blog-how-to-securely-register-u888id {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-securely-register-u888id__hero-section {
        padding: 10px 15px 40px 15px;
    }

    .page-blog-how-to-securely-register-u888id__hero-image {
        max-height: 300px;
    }

    .page-blog-how-to-securely-register-u888id__hero-content {
        padding: 20px 15px;
        transform: translateY(-30px);
    }

    .page-blog-how-to-securely-register-u888id__main-title {
        font-size: 1.8em;
    }

    .page-blog-how-to-securely-register-u888id__intro-text {
        font-size: 1em;
    }

    .page-blog-how-to-securely-register-u888id__btn-primary,
    .page-blog-how-to-securely-register-u888id__cta-bottom,
    .page-blog-how-to-securely-register-u888id__cta-final {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px !important;
        font-size: 1em;
    }

    .page-blog-how-to-securely-register-u888id__content-area,
    .page-blog-how-to-securely-register-u888id__faq-section,
    .page-blog-how-to-securely-register-u888id__conclusion-section {
        padding: 30px 15px;
    }

    .page-blog-how-to-securely-register-u888id__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-how-to-securely-register-u888id__step-card,
    .page-blog-how-to-securely-register-u888id__tip-card,
    .page-blog-how-to-securely-register-u888id__benefits-list li {
        padding: 20px;
        margin-bottom: 20px;
    }

    .page-blog-how-to-securely-register-u888id__step-title,
    .page-blog-how-to-securely-register-u888id__tip-title,
    .page-blog-how-to-securely-register-u888id__benefit-item-title {
        font-size: 1.3em;
    }

    .page-blog-how-to-securely-register-u888id__step-image,
    .page-blog-how-to-securely-register-u888id img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-how-to-securely-register-u888id__container,
    .page-blog-how-to-securely-register-u888id__hero-section,
    .page-blog-how-to-securely-register-u888id__content-area,
    .page-blog-how-to-securely-register-u888id__faq-section,
    .page-blog-how-to-securely-register-u888id__conclusion-section,
    .page-blog-how-to-securely-register-u888id__step-card,
    .page-blog-how-to-securely-register-u888id__tip-card,
    .page-blog-how-to-securely-register-u888id__benefits-list,
    .page-blog-how-to-securely-register-u888id__faq-item {
        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-securely-register-u888id__benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-how-to-securely-register-u888id__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-blog-how-to-securely-register-u888id__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 1em;
    }
}