/* style/register-login-account-creation.css */

/* Biến CSS */
:root {
    --page-register-login-account-creation-primary-color: #1A202C;
    --page-register-login-account-creation-secondary-color: #FFD700;
    --page-register-login-account-creation-text-light: #FFFFFF;
    --page-register-login-account-creation-text-dark: #1A202C;
    --page-register-login-account-creation-background-light: #F8F9FA;
    --page-register-login-account-creation-accent-dark: #998100; /* Darker shade of gold for contrast */
    --page-register-login-account-creation-border-color: #3A4750;
}

.page-register-login-account-creation {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-register-login-account-creation-text-dark); /* Default text color */
    background-color: var(--page-register-login-account-creation-background-light);
}

.page-register-login-account-creation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-register-login-account-creation__hero-section {
    background: linear-gradient(135deg, var(--page-register-login-account-creation-primary-color) 0%, #3A4750 50%, var(--page-register-login-account-creation-primary-color) 100%);
    color: var(--page-register-login-account-creation-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-account-creation__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,dark_pattern]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-register-login-account-creation__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-register-login-account-creation-secondary-color);
    position: relative;
    z-index: 1;
}

.page-register-login-account-creation__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-register-login-account-creation__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    border: none;
    position: relative;
    z-index: 1;
}

.page-register-login-account-creation__btn--primary {
    background-color: var(--page-register-login-account-creation-secondary-color);
    color: var(--page-register-login-account-creation-text-dark);
}

.page-register-login-account-creation__btn--primary:hover {
    background-color: var(--page-register-login-account-creation-accent-dark);
    color: var(--page-register-login-account-creation-text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-register-login-account-creation__btn--secondary {
    background-color: transparent;
    border: 2px solid var(--page-register-login-account-creation-primary-color);
    color: var(--page-register-login-account-creation-primary-color);
    margin-left: 15px;
}

.page-register-login-account-creation__btn--secondary:hover {
    background-color: var(--page-register-login-account-creation-primary-color);
    color: var(--page-register-login-account-creation-secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-register-login-account-creation__btn--download {
    background-color: var(--page-register-login-account-creation-primary-color);
    color: var(--page-register-login-account-creation-secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px;
}

.page-register-login-account-creation__btn--download:hover {
    background-color: #3A4750;
    color: var(--page-register-login-account-creation-secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-register-login-account-creation__download-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(80%) sepia(90%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-register-login-account-creation__btn--final-cta {
    background-color: var(--page-register-login-account-creation-secondary-color);
    color: var(--page-register-login-account-creation-text-dark);
    font-size: 1.2em;
    padding: 18px 35px;
    margin-top: 30px;
}

.page-register-login-account-creation__btn--final-cta:hover {
    background-color: var(--page-register-login-account-creation-accent-dark);
    color: var(--page-register-login-account-creation-text-light);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-register-login-account-creation__section {
    padding: 60px 0;
    background-color: var(--page-register-login-account-creation-background-light);
}

.page-register-login-account-creation__section:nth-of-type(even) {
    background-color: #e9ecef; /* Slightly different background for contrast */
}

.page-register-login-account-creation__section-title {
    font-size: 2.5em;
    color: var(--page-register-login-account-creation-primary-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.page-register-login-account-creation__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-register-login-account-creation-secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-register-login-account-creation__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555;
}

/* Why Choose Section */
.page-register-login-account-creation__why-choose {
    background-color: var(--page-register-login-account-creation-background-light);
}

.page-register-login-account-creation__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-register-login-account-creation__feature-item {
    background-color: var(--page-register-login-account-creation-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-account-creation__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-register-login-account-creation__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(15%) sepia(10%) saturate(300%) hue-rotate(180deg) brightness(90%) contrast(90%); /* Darken for primary color */
}

.page-register-login-account-creation__feature-title {
    font-size: 1.5em;
    color: var(--page-register-login-account-creation-primary-color);
    margin-bottom: 15px;
}

.page-register-login-account-creation__feature-text {
    font-size: 1em;
    color: #666;
}

/* Registration Steps */
.page-register-login-account-creation__registration-steps {
    background-color: #e9ecef;
}

.page-register-login-account-creation__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.page-register-login-account-creation__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--page-register-login-account-creation-text-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.page-register-login-account-creation__step-item:nth-child(odd) {
    align-items: flex-start;
    text-align: left;
}

.page-register-login-account-creation__step-item:nth-child(even) {
    align-items: flex-end;
    text-align: right;
}

.page-register-login-account-creation__step-number {
    background-color: var(--page-register-login-account-creation-secondary-color);
    color: var(--page-register-login-account-creation-primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-account-creation__step-item:nth-child(odd) .page-register-login-account-creation__step-number {
    margin-left: -70px;
}

.page-register-login-account-creation__step-item:nth-child(even) .page-register-login-account-creation__step-number {
    margin-right: -70px;
}

.page-register-login-account-creation__step-title {
    font-size: 1.8em;
    color: var(--page-register-login-account-creation-primary-color);
    margin-bottom: 15px;
}

.page-register-login-account-creation__step-text {
    font-size: 1.05em;
    color: #444;
    max-width: 700px;
    margin-bottom: 25px;
}

.page-register-login-account-creation__info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.page-register-login-account-creation__info-list li {
    background-color: #f0f2f5;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-left: 5px solid var(--page-register-login-account-creation-secondary-color);
    border-radius: 5px;
    font-size: 1em;
    color: #333;
}

.page-register-login-account-creation__info-list li strong {
    color: var(--page-register-login-account-creation-primary-color);
}

.page-register-login-account-creation__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Login Guide */
.page-register-login-account-creation__login-guide {
    background-color: var(--page-register-login-account-creation-background-light);
}

.page-register-login-account-creation__ordered-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    counter-reset: login-step;
}

.page-register-login-account-creation__ordered-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    font-size: 1.1em;
    color: #333;
}

.page-register-login-account-creation__ordered-list li::before {
    counter-increment: login-step;
    content: counter(login-step);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--page-register-login-account-creation-primary-color);
    color: var(--page-register-login-account-creation-secondary-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

/* Benefits */
.page-register-login-account-creation__benefits {
    background-color: #e9ecef;
}

.page-register-login-account-creation__benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.page-register-login-account-creation__benefits-list li {
    background-color: var(--page-register-login-account-creation-text-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #333;
    position: relative;
    padding-left: 45px;
}

.page-register-login-account-creation__benefits-list li::before {
    content: '✅';
    position: absolute;
    left: 15px;
    top: 20px;
    font-size: 1.2em;
}

/* FAQ Section */
.page-register-login-account-creation__faq {
    background-color: var(--page-register-login-account-creation-background-light);
}

.page-register-login-account-creation__faq-item {
    background-color: var(--page-register-login-account-creation-text-light);
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-register-login-account-creation__faq-question {
    padding: 20px;
    margin: 0;
    font-size: 1.2em;
    color: var(--page-register-login-account-creation-primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee;
}

.page-register-login-account-creation__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-register-login-account-creation__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-register-login-account-creation__faq-answer {
    padding: 20px;
    margin: 0;
    font-size: 1em;
    color: #555;
    display: none;
    border-top: 1px solid #eee;
    background-color: #fff;
}

.page-register-login-account-creation__faq-question.active + .page-register-login-account-creation__faq-answer {
    display: block;
}

/* Security Tips */
.page-register-login-account-creation__security-tips {
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-register-login-account-creation__security-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
}

.page-register-login-account-creation__security-list li {
    background-color: var(--page-register-login-account-creation-text-light);
    padding: 18px 25px;
    margin-bottom: 15px;
    border-left: 6px solid var(--page-register-login-account-creation-secondary-color);
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
    font-size: 1.05em;
    color: #333;
}

.page-register-login-account-creation__security-image {
    max-width: 500px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* App Download */
.page-register-login-account-creation__app-download {
    background-color: var(--page-register-login-account-creation-primary-color);
    color: var(--page-register-login-account-creation-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-register-login-account-creation__app-download .page-register-login-account-creation__section-title,
.page-register-login-account-creation__app-download .page-register-login-account-creation__section-description {
    color: var(--page-register-login-account-creation-text-light);
}

.page-register-login-account-creation__app-download .page-register-login-account-creation__section-title::after {
    background-color: var(--page-register-login-account-creation-secondary-color);
}

.page-register-login-account-creation__app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-register-login-account-creation__app-image {
    max-width: 600px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Conclusion */
.page-register-login-account-creation__conclusion {
    text-align: center;
    background-color: var(--page-register-login-account-creation-background-light);
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-register-login-account-creation__hero-title {
        font-size: 2.8em;
    }
    .page-register-login-account-creation__hero-subtitle {
        font-size: 1.2em;
    }
    .page-register-login-account-creation__section-title {
        font-size: 2em;
    }
    .page-register-login-account-creation__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-register-login-account-creation__benefits-list {
        grid-template-columns: 1fr;
    }
    .page-register-login-account-creation__step-item:nth-child(odd) .page-register-login-account-creation__step-number,
    .page-register-login-account-creation__step-item:nth-child(even) .page-register-login-account-creation__step-number {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .page-register-login-account-creation__step-item,
    .page-register-login-account-creation__step-item:nth-child(odd),
    .page-register-login-account-creation__step-item:nth-child(even) {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-register-login-account-creation__hero-title {
        font-size: 2.2em;
    }
    .page-register-login-account-creation__hero-subtitle {
        font-size: 1em;
    }
    .page-register-login-account-creation__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register-login-account-creation__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-register-login-account-creation__app-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-register-login-account-creation__security-image,
    .page-register-login-account-creation__app-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-register-login-account-creation__hero-section {
        padding: 60px 0;
    }
    .page-register-login-account-creation__hero-title {
        font-size: 1.8em;
    }
    .page-register-login-account-creation__section-title {
        font-size: 1.8em;
    }
    .page-register-login-account-creation__section-description {
        font-size: 0.95em;
    }
    .page-register-login-account-creation__btn {
        width: 100%;
        box-sizing: border-box;
    }
    .page-register-login-account-creation__btn--primary,
    .page-register-login-account-creation__btn--secondary {
        margin: 10px 0;
    }
    .page-register-login-account-creation__features-grid {
        grid-template-columns: 1fr;
    }
}