/* style/newbie-guide-quick-register.css */
.page-newbie-guide-quick-register {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2E50; /* Deep navy blue background */
    line-height: 1.6;
}

.page-newbie-guide-quick-register__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-newbie-guide-quick-register__hero {
    background: linear-gradient(135deg, #0A2E50 0%, #061e38 100%); /* Darker gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-newbie-guide-quick-register__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-newbie-guide-quick-register__hero-subtitle {
    font-size: 1.3em;
    color: #C0C0C0; /* Lighter gray for subtitle */
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-newbie-guide-quick-register__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2E50; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-newbie-guide-quick-register__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-newbie-guide-quick-register__section {
    padding: 60px 0;
    background-color: #1a3a5a; /* Slightly lighter dark blue for sections */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-newbie-guide-quick-register__section:nth-child(even) {
    background-color: #0A2E50; /* Alternating background for visual separation */
}

.page-newbie-guide-quick-register__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-newbie-guide-quick-register__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #C0C0C0;
}

.page-newbie-guide-quick-register__intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-newbie-guide-quick-register__intro-item {
    background-color: #0A2E50; /* Dark blue for intro items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-newbie-guide-quick-register__intro-item:hover {
    transform: translateY(-5px);
}

.page-newbie-guide-quick-register__intro-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Gold glow for icons */
}

.page-newbie-guide-quick-register__intro-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-newbie-guide-quick-register__intro-item p {
    font-size: 1em;
    color: #E0E0E0;
}

.page-newbie-guide-quick-register__steps .page-newbie-guide-quick-register__section-description {
    margin-bottom: 60px;
}

.page-newbie-guide-quick-register__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    background-color: #0A2E50;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-newbie-guide-quick-register__step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.page-newbie-guide-quick-register__step-number {
    font-size: 3em;
    font-weight: bold;
    color: #FFD700;
    min-width: 80px;
    text-align: center;
    margin-right: 30px;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-newbie-guide-quick-register__step-item:nth-child(even) .page-newbie-guide-quick-register__step-number {
    margin-left: 30px;
    margin-right: 0;
}

.page-newbie-guide-quick-register__step-content {
    flex-grow: 1;
}

.page-newbie-guide-quick-register__step-content h3 {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-newbie-guide-quick-register__step-content p {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-newbie-guide-quick-register__step-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-newbie-guide-quick-register__step-content ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
    background-size: 18px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-newbie-guide-quick-register__step-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2E50;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.page-newbie-guide-quick-register__step-button:hover {
    background-color: #e6c200;
}

.page-newbie-guide-quick-register__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-newbie-guide-quick-register__note {
    font-style: italic;
    color: #FFD700;
    border-left: 4px solid #FFD700;
    padding-left: 15px;
    margin-top: 20px;
}

.page-newbie-guide-quick-register__after-register .page-newbie-guide-quick-register__section-description {
    margin-bottom: 40px;
}

.page-newbie-guide-quick-register__checklist {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.page-newbie-guide-quick-register__checklist li {
    background-color: #0A2E50;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    color: #E0E0E0;
    font-size: 1.1em;
}

.page-newbie-guide-quick-register__checklist-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold color for icons */
}

.page-newbie-guide-quick-register__checklist li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-newbie-guide-quick-register__checklist li a:hover {
    color: #e6c200;
}

.page-newbie-guide-quick-register__action-text {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFD700;
}

.page-newbie-guide-quick-register__cta-button--bottom {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 18px 35px;
    font-size: 1.3em;
}

.page-newbie-guide-quick-register__faq-item {
    background-color: #0A2E50;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-newbie-guide-quick-register__faq-question {
    padding: 20px 25px;
    margin: 0;
    font-size: 1.3em;
    color: #FFD700;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-newbie-guide-quick-register__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-newbie-guide-quick-register__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-newbie-guide-quick-register__faq-answer {
    padding: 0 25px 20px 25px;
    margin: 0;
    font-size: 1.1em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-newbie-guide-quick-register__faq-answer.active {
    max-height: 300px; /* Adjust as needed for content length */
    padding-top: 10px;
}

.page-newbie-guide-quick-register__faq-answer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-newbie-guide-quick-register__faq-answer a:hover {
    text-decoration: underline;
}

.page-newbie-guide-quick-register__final-cta {
    text-align: center;
    background-color: #0A2E50;
    padding: 80px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-newbie-guide-quick-register__cta-button--large {
    font-size: 1.5em;
    padding: 20px 40px;
}

.page-newbie-guide-quick-register__contact-info {
    margin-top: 40px;
    font-size: 1.1em;
    color: #C0C0C0;
}

.page-newbie-guide-quick-register__contact-info p {
    margin-bottom: 10px;
}

.page-newbie-guide-quick-register .highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-newbie-guide-quick-register__hero-title {
        font-size: 2.8em;
    }
    .page-newbie-guide-quick-register__section-title {
        font-size: 2em;
    }
    .page-newbie-guide-quick-register__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-newbie-guide-quick-register__step-item:nth-child(even) {
        flex-direction: column;
    }
    .page-newbie-guide-quick-register__step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .page-newbie-guide-quick-register__step-item:nth-child(even) .page-newbie-guide-quick-register__step-number {
        margin-left: 0;
    }
    .page-newbie-guide-quick-register__step-content h3 {
        font-size: 1.7em;
    }
}

@media (max-width: 768px) {
    .page-newbie-guide-quick-register__hero {
        padding: 80px 0;
    }
    .page-newbie-guide-quick-register__hero-title {
        font-size: 2.2em;
    }
    .page-newbie-guide-quick-register__hero-subtitle {
        font-size: 1.1em;
    }
    .page-newbie-guide-quick-register__section {
        padding: 40px 0;
    }
    .page-newbie-guide-quick-register__section-title {
        font-size: 1.8em;
    }
    .page-newbie-guide-quick-register__step-item {
        padding: 20px;
    }
    .page-newbie-guide-quick-register__step-number {
        font-size: 2.5em;
    }
    .page-newbie-guide-quick-register__step-content h3 {
        font-size: 1.5em;
    }
    .page-newbie-guide-quick-register__checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-newbie-guide-quick-register__hero-title {
        font-size: 1.8em;
    }
    .page-newbie-guide-quick-register__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-newbie-guide-quick-register__section-title {
        font-size: 1.5em;
    }
    .page-newbie-guide-quick-register__intro-item h3 {
        font-size: 1.3em;
    }
    .page-newbie-guide-quick-register__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-newbie-guide-quick-register__faq-question::after {
        right: 20px;
    }
    .page-newbie-guide-quick-register__faq-answer {
        font-size: 1em;
        padding: 0 20px 15px 20px;
    }
    .page-newbie-guide-quick-register__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
}