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

/* Biến CSS */
:root {
    --page-primary-color: #1A202C;
    --page-accent-color: #FFD700;
    --page-text-light: #FFFFFF;
    --page-text-dark: #1A202C;
    --page-background-dark: #1A202C;
    --page-background-light: #F8F8F8;
    --page-card-background: #2D3748;
}

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

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

.page-index-quick-registration-channel__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-quick-registration-channel__section:nth-of-type(even) {
    background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-index-quick-registration-channel__section-title {
    font-size: 2.5em;
    color: var(--page-accent-color);
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-index-quick-registration-channel__section-description {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-index-quick-registration-channel__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #3a475a 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-index-quick-registration-channel__hero-title {
    font-size: 3.5em;
    color: var(--page-accent-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-index-quick-registration-channel__hero-subtitle {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-quick-registration-channel__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-index-quick-registration-channel__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-index-quick-registration-channel__btn--primary {
    background-color: var(--page-accent-color);
    color: var(--page-text-dark);
    border: 2px solid var(--page-accent-color);
}

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

.page-index-quick-registration-channel__btn--secondary {
    background-color: transparent;
    color: var(--page-accent-color);
    border: 2px solid var(--page-accent-color);
}

.page-index-quick-registration-channel__btn--secondary:hover {
    background-color: var(--page-accent-color);
    color: var(--page-text-dark);
    transform: translateY(-3px);
}

.page-index-quick-registration-channel__btn--large {
    padding: 18px 35px;
    font-size: 1.3em;
}

.page-index-quick-registration-channel__hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    margin-top: 30px;
}

/* Why Lucky88 Section */
.page-index-quick-registration-channel__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-quick-registration-channel__feature-card,
.page-index-quick-registration-channel__info-card {
    background-color: var(--page-card-background);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-quick-registration-channel__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--page-accent-color));
}

.page-index-quick-registration-channel__feature-title,
.page-index-quick-registration-channel__info-title {
    font-size: 1.5em;
    color: var(--page-accent-color);
    margin-bottom: 15px;
}

.page-index-quick-registration-channel__feature-description,
.page-index-quick-registration-channel__info-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
}

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

.page-index-quick-registration-channel__step-card {
    background-color: var(--page-card-background);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    padding-top: 80px; /* Space for step number */
}

.page-index-quick-registration-channel__step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--page-accent-color);
    color: var(--page-text-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-index-quick-registration-channel__step-title {
    font-size: 1.6em;
    color: var(--page-accent-color);
    margin-bottom: 15px;
}

.page-index-quick-registration-channel__step-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-index-quick-registration-channel__process-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.4);
    margin-top: 50px;
}

/* Exclusive Offers Section */
.page-index-quick-registration-channel__offer-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 700px;
    text-align: left;
}

.page-index-quick-registration-channel__offer-list li {
    background-color: var(--page-card-background);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.page-index-quick-registration-channel__list-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    filter: drop-shadow(0 0 3px var(--page-accent-color));
}

.page-index-quick-registration-channel__cta-center {
    margin-top: 40px;
}

.page-index-quick-registration-channel__promotion-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.4);
    margin-top: 50px;
}

/* Mobile App Section */
.page-index-quick-registration-channel__flex-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    text-align: left;
}

.page-index-quick-registration-channel__text-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-index-quick-registration-channel__text-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-index-quick-registration-channel__text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-index-quick-registration-channel__text-content ul li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.page-index-quick-registration-channel__image-content {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.page-index-quick-registration-channel__mobile-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Responsible Gambling Section */
.page-index-quick-registration-channel__responsible-gambling .page-index-quick-registration-channel__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-index-quick-registration-channel__responsible-image {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.4);
    margin-top: 50px;
}

/* FAQ Section */
.page-index-quick-registration-channel__faq {
    text-align: left;
}

.page-index-quick-registration-channel__faq-item {
    background-color: var(--page-card-background);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.page-index-quick-registration-channel__faq-question {
    font-size: 1.3em;
    color: var(--page-accent-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

.page-index-quick-registration-channel__faq-answer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1em;
    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-channel__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    opacity: 1;
    padding-top: 15px;
}

/* Final CTA Section */
.page-index-quick-registration-channel__final-cta {
    background: linear-gradient(45deg, #2D3748, var(--page-primary-color));
    padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-quick-registration-channel__hero-title {
        font-size: 2.5em;
    }
    .page-index-quick-registration-channel__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-quick-registration-channel__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-quick-registration-channel__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-index-quick-registration-channel__section-title {
        font-size: 2em;
    }
    .page-index-quick-registration-channel__feature-card,
    .page-index-quick-registration-channel__info-card,
    .page-index-quick-registration-channel__step-card {
        padding: 25px;
        padding-top: 70px;
    }
    .page-index-quick-registration-channel__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-index-quick-registration-channel__flex-content {
        flex-direction: column;
        text-align: center;
    }
    .page-index-quick-registration-channel__text-content {
        order: 2;
    }
    .page-index-quick-registration-channel__image-content {
        order: 1;
    }
    .page-index-quick-registration-channel__text-content ul {
        text-align: left; /* Keep list items left-aligned */
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .page-index-quick-registration-channel__hero-title {
        font-size: 2em;
    }
    .page-index-quick-registration-channel__hero-subtitle {
        font-size: 1em;
    }
    .page-index-quick-registration-channel__btn {
        width: 90%;
    }
    .page-index-quick-registration-channel__section-title {
        font-size: 1.8em;
    }
    .page-index-quick-registration-channel__offer-list li {
        font-size: 1em;
    }
    .page-index-quick-registration-channel__faq-question {
        font-size: 1.1em;
    }
    .page-index-quick-registration-channel__faq-answer {
        font-size: 0.9em;
    }
}