.page-blog-how-to-use-82vn-code-for-quick-registration-login {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Default text color from palette */
    background-color: var(--page-bg, #08160F); /* Default background color from palette */
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-blog-how-to-use-82vn-code-for-quick-registration-login__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    overflow: hidden;
    background-color: var(--deep-green, #0A4B2C); /* Dark background for hero */
    min-height: 500px; /* Ensure hero section has a minimum height */
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Slightly dimmed to make text readable */
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 30px;
    color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%; /* Ensure button container is full width */
    max-width: 500px; /* Limit max width for desktop */
    margin: 0 auto;
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__btn-primary,
.page-blog-how-to-use-82vn-code-for-quick-registration-login__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    min-width: 180px; /* Ensure buttons are not too small */
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button color */
    color: var(--text-main, #F2FFF6);
    border: 2px solid transparent;
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__btn-secondary {
    background: transparent;
    color: var(--glow, #57E38D); /* Use glow color for secondary button text */
    border: 2px solid var(--glow, #57E38D);
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__btn-secondary:hover {
    background: var(--glow, #57E38D);
    color: var(--page-bg, #08160F);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4);
}

/* General Section Styling */
.page-blog-how-to-use-82vn-code-for-quick-registration-login__content-section,
.page-blog-how-to-use-82vn-code-for-quick-registration-login__benefits-section,
.page-blog-how-to-use-82vn-code-for-quick-registration-login__security-section,
.page-blog-how-to-use-82vn-code-for-quick-registration-login__faq-section,
.page-blog-how-to-use-82vn-code-for-quick-registration-login__conclusion-section {
    padding: 60px 0;
    background-color: var(--page-bg, #08160F);
    color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__text-block {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-secondary, #A7D9B8);
}

/* Step-by-step Guide */
.page-blog-how-to-use-82vn-code-for-quick-registration-login__step-by-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__step-item {
    background-color: var(--card-bg, #11271B); /* Card background color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__step-title {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    display: block;
    object-fit: cover;
}

/* Benefits Grid */
.page-blog-how-to-use-82vn-code-for-quick-registration-login__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__benefit-card {
    background-color: var(--card-bg, #11271B); /* Card background color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: var(--text-main, #F2FFF6);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__benefit-icon {
    width: 200px; /* Ensure card images are large enough */
    height: 200px;
    object-fit: contain; /* Use contain for icons/logos */
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__link {
    color: var(--glow, #57E38D);
    text-decoration: none;
    font-weight: 500;
    margin-top: auto; /* Push link to bottom */
    transition: color 0.3s ease;
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__link:hover {
    color: var(--gold, #F2C14E);
    text-decoration: underline;
}

/* Security List */
.page-blog-how-to-use-82vn-code-for-quick-registration-login__security-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__list-item {
    background-color: var(--card-bg, #11271B);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__list-icon {
    width: 200px; /* Min image size */
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__list-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main, #F2FFF6);
}

/* FAQ Section */
.page-blog-how-to-use-82vn-code-for-quick-registration-login__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__faq-item {
    background-color: var(--card-bg, #11271B);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main, #F2FFF6);
    cursor: pointer;
    background-color: var(--card-bg, #11271B);
    border-bottom: 1px solid var(--divider, #1E3A2A);
    list-style: none; /* For details/summary */
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker */
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow, #57E38D);
}

.page-blog-how-to-use-82vn-code-for-quick-registration-login__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary, #A7D9B8);
    background-color: var(--deep-green, #0A4B2C); /* Slightly different background for answer */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-how-to-use-82vn-code-for-quick-registration-login {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-use-82vn-code-for-quick-registration-login__hero-section {
        padding: 40px 15px;
        min-height: 400px;
    }

    .page-blog-how-to-use-82vn-code-for-quick-registration-login__main-title {
        font-size: 2rem;
    }

    .page-blog-how-to-use-82vn-code-for-quick-registration-login__description {
        font-size: 1rem;
    }
}