/* style/index-quick-registration-guide.css */

/* Variables */
:root {
    --page-index-quick-registration-guide-primary-color: #003366;
    --page-index-quick-registration-guide-secondary-color: #FFD700;
    --page-index-quick-registration-guide-text-dark: #333333;
    --page-index-quick-registration-guide-text-light: #ffffff;
    --page-index-quick-registration-guide-accent-light: #e0e0e0;
    --page-index-quick-registration-guide-border-color: #cccccc;
}

.page-index-quick-registration-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-index-quick-registration-guide-text-dark);
    background-color: #f8f8f8;
}

.page-index-quick-registration-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-quick-registration-guide__hero-section {
    background: linear-gradient(135deg, var(--page-index-quick-registration-guide-primary-color) 0%, #0a4f94 100%);
    color: var(--page-index-quick-registration-guide-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-quick-registration-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,subtle_texture]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-quick-registration-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-index-quick-registration-guide-secondary-color);
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-index-quick-registration-guide__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-index-quick-registration-guide__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-index-quick-registration-guide__section-title {
    font-size: 2.5em;
    color: var(--page-index-quick-registration-guide-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-quick-registration-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-index-quick-registration-guide-secondary-color);
    border-radius: 2px;
}

.page-index-quick-registration-guide__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-quick-registration-guide__text-content--center {
    text-align: center;
}

.page-index-quick-registration-guide__keyword {
    color: var(--page-index-quick-registration-guide-primary-color);
    font-weight: bold;
}

.page-index-quick-registration-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-quick-registration-guide__btn--primary {
    background-color: var(--page-index-quick-registration-guide-secondary-color);
    color: var(--page-index-quick-registration-guide-primary-color);
    border: 2px solid var(--page-index-quick-registration-guide-secondary-color);
}

.page-index-quick-registration-guide__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-quick-registration-guide__btn--secondary {
    background-color: var(--page-index-quick-registration-guide-primary-color);
    color: var(--page-index-quick-registration-guide-text-light);
    border: 2px solid var(--page-index-quick-registration-guide-primary-color);
}

.page-index-quick-registration-guide__btn--secondary:hover {
    background-color: #002244;
    border-color: #002244;
    transform: translateY(-3px);
}

.page-index-quick-registration-guide__btn--lg {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-index-quick-registration-guide__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    margin: 5px;
}

.page-index-quick-registration-guide__inline-link {
    color: var(--page-index-quick-registration-guide-primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-index-quick-registration-guide__inline-link:hover {
    color: var(--page-index-quick-registration-guide-secondary-color);
}

/* Why Choose Section */
.page-index-quick-registration-guide__why-choose {
    padding: 60px 0;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.page-index-quick-registration-guide__why-choose .page-index-quick-registration-guide__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-index-quick-registration-guide__why-choose .page-index-quick-registration-guide__section-title {
    width: 100%;
}

.page-index-quick-registration-guide__why-choose .page-index-quick-registration-guide__text-content {
    flex: 1;
    min-width: 300px;
}

.page-index-quick-registration-guide__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    flex: 1;
    min-width: 300px;
}

.page-index-quick-registration-guide__feature-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    display: flex;
    align-items: center;
    color: var(--page-index-quick-registration-guide-text-dark);
}

.page-index-quick-registration-guide__icon {
    margin-right: 10px;
    color: var(--page-index-quick-registration-guide-secondary-color);
    font-size: 1.2em;
}

.page-index-quick-registration-guide__icon--check::before {
    content: '✔'; /* Unicode checkmark */
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    line-height: 1.2em;
    text-align: center;
    border-radius: 50%;
    background-color: var(--page-index-quick-registration-guide-primary-color);
    color: var(--page-index-quick-registration-guide-text-light);
    font-size: 0.8em;
    margin-right: 8px;
}

.page-index-quick-registration-guide__image-right {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-left: auto;
}

/* Registration Steps */
.page-index-quick-registration-guide__registration-steps {
    padding: 60px 0;
    background-color: #f0f4f7;
}

.page-index-quick-registration-guide__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-quick-registration-guide__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-quick-registration-guide__step-number {
    font-size: 3em;
    font-weight: bold;
    color: var(--page-index-quick-registration-guide-secondary-color);
    margin-right: 30px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--page-index-quick-registration-guide-primary-color);
    border-radius: 50%;
    color: var(--page-index-quick-registration-guide-text-light);
    border: 3px solid var(--page-index-quick-registration-guide-secondary-color);
}

.page-index-quick-registration-guide__step-content {
    flex-grow: 1;
}

.page-index-quick-registration-guide__step-title {
    font-size: 1.8em;
    color: var(--page-index-quick-registration-guide-primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-index-quick-registration-guide__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-index-quick-registration-guide__form-fields {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-index-quick-registration-guide__form-fields li {
    margin-bottom: 8px;
}

.page-index-quick-registration-guide__note {
    font-style: italic;
    color: #666;
    margin-top: 15px;
}

/* Tips Section */
.page-index-quick-registration-guide__tips-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-index-quick-registration-guide__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-quick-registration-guide__tip-card {
    background-color: #f9f9f9;
    border: 1px solid var(--page-index-quick-registration-guide-accent-light);
    border-left: 5px solid var(--page-index-quick-registration-guide-secondary-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.page-index-quick-registration-guide__tip-card:hover {
    transform: translateY(-5px);
}

.page-index-quick-registration-guide__tip-title {
    font-size: 1.5em;
    color: var(--page-index-quick-registration-guide-primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-index-quick-registration-guide__tip-card p {
    font-size: 1em;
    color: #555;
}

.page-index-quick-registration-guide__full-width-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Explore Section */
.page-index-quick-registration-guide__explore-section {
    padding: 60px 0;
    background-color: #f0f4f7;
}

.page-index-quick-registration-guide__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-quick-registration-guide__category-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-quick-registration-guide__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-quick-registration-guide__category-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-index-quick-registration-guide__category-title {
    font-size: 1.6em;
    color: var(--page-index-quick-registration-guide-primary-color);
    margin-bottom: 10px;
}

.page-index-quick-registration-guide__category-card p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-index-quick-registration-guide__faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-index-quick-registration-guide__faq-item {
    background-color: #f9f9f9;
    border: 1px solid var(--page-index-quick-registration-guide-accent-light);
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-quick-registration-guide__faq-question {
    font-size: 1.4em;
    color: var(--page-index-quick-registration-guide-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-index-quick-registration-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: var(--page-index-quick-registration-guide-secondary-color);
    transition: transform 0.3s ease;
}

.page-index-quick-registration-guide__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-index-quick-registration-guide__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-index-quick-registration-guide__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 15px;
}

/* Call to Action Section */
.page-index-quick-registration-guide__cta-section {
    background: linear-gradient(90deg, var(--page-index-quick-registration-guide-primary-color) 0%, #0a4f94 100%);
    color: var(--page-index-quick-registration-guide-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-index-quick-registration-guide__cta-content {
    max-width: 900px;
}

.page-index-quick-registration-guide__cta-title {
    font-size: 3em;
    color: var(--page-index-quick-registration-guide-secondary-color);
    margin-bottom: 20px;
}

.page-index-quick-registration-guide__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-quick-registration-guide__hero-title {
        font-size: 2.8em;
    }
    .page-index-quick-registration-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-quick-registration-guide__section-title {
        font-size: 2em;
    }
    .page-index-quick-registration-guide__why-choose .page-index-quick-registration-guide__container {
        flex-direction: column;
        text-align: center;
    }
    .page-index-quick-registration-guide__image-right {
        max-width: 80%;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-index-quick-registration-guide__step-item {
        flex-direction: column;
        text-align: center;
    }
    .page-index-quick-registration-guide__step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .page-index-quick-registration-guide__cta-title {
        font-size: 2.5em;
    }
    .page-index-quick-registration-guide__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-index-quick-registration-guide__hero-title {
        font-size: 2.2em;
    }
    .page-index-quick-registration-guide__hero-subtitle {
        font-size: 1em;
    }
    .page-index-quick-registration-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-quick-registration-guide__section-title {
        font-size: 1.8em;
    }
    .page-index-quick-registration-guide__step-title {
        font-size: 1.5em;
    }
    .page-index-quick-registration-guide__game-categories,
    .page-index-quick-registration-guide__tips-grid {
        grid-template-columns: 1fr;
    }
    .page-index-quick-registration-guide__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-index-quick-registration-guide__hero-section,
    .page-index-quick-registration-guide__why-choose,
    .page-index-quick-registration-guide__registration-steps,
    .page-index-quick-registration-guide__tips-section,
    .page-index-quick-registration-guide__explore-section,
    .page-index-quick-registration-guide__faq-section,
    .page-index-quick-registration-guide__cta-section {
        padding: 40px 0;
    }
    .page-index-quick-registration-guide__hero-title {
        font-size: 1.8em;
    }
    .page-index-quick-registration-guide__hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-quick-registration-guide__btn--lg {
        padding: 15px 25px;
        font-size: 1.1em;
    }
    .page-index-quick-registration-guide__section-title {
        font-size: 1.5em;
    }
    .page-index-quick-registration-guide__step-number {
        font-size: 2.5em;
        width: 50px;
        height: 50px;
    }
    .page-index-quick-registration-guide__step-title {
        font-size: 1.3em;
    }
    .page-index-quick-registration-guide__faq-question {
        font-size: 1.2em;
    }
    .page-index-quick-registration-guide__cta-title {
        font-size: 1.8em;
    }
    .page-index-quick-registration-guide__cta-text {
        font-size: 1em;
    }
}