/* style/index-quick-registration.css */
.page-index-quick-registration {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-index-quick-registration__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-quick-registration__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

.page-index-quick-registration__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107; /* High contrast with dark blue background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-quick-registration__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-index-quick-registration__cta-button {
    display: inline-block;
    background-color: #ffc107; /* Auxiliary color for CTA */
    color: #000; /* High contrast text for button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-quick-registration__cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-index-quick-registration__cta-button--secondary {
    background-color: #0056b3; /* Darker primary for secondary CTA */
    color: #fff;
    margin-left: 20px;
}

.page-index-quick-registration__cta-button--secondary:hover {
    background-color: #003f80;
}

.page-index-quick-registration__section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary color for titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-quick-registration__benefits-section,
.page-index-quick-registration__how-to-register,
.page-index-quick-registration__verification-section,
.page-index-quick-registration__promotion-section,
.page-index-quick-registration__game-preview,
.page-index-quick-registration__app-download,
.page-index-quick-registration__faq-section,
.page-index-quick-registration__final-cta {
    padding: 80px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-index-quick-registration__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-index-quick-registration__benefit-item {
    padding: 30px;
    border-radius: 10px;
    background-color: #f0f8ff; /* Light background */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

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

.page-index-quick-registration__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.page-index-quick-registration__benefit-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-index-quick-registration__benefit-description {
    color: #555;
}

.page-index-quick-registration__intro-text {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 60px;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-index-quick-registration__step-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-index-quick-registration__step-item:hover {
    transform: translateY(-8px);
}

.page-index-quick-registration__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc107;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-quick-registration__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index-quick-registration__step-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-index-quick-registration__step-description {
    color: #555;
    margin-bottom: 25px;
}

.page-index-quick-registration__step-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.page-index-quick-registration__step-button:hover {
    background-color: #0056b3;
}

.page-index-quick-registration__tips-text {
    text-align: center;
    font-size: 1.1em;
    margin-top: 50px;
    color: #333;
    background-color: #e6f7ff;
    padding: 20px;
    border-left: 5px solid #007bff;
    border-radius: 5px;
}

.page-index-quick-registration__verification-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-index-quick-registration__verification-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-index-quick-registration__verification-text {
    flex: 2;
    min-width: 300px;
}

.page-index-quick-registration__verification-text h3 {
    color: #007bff;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.page-index-quick-registration__verification-text p {
    color: #555;
    margin-bottom: 15px;
}

.page-index-quick-registration__verification-text ul {
    list-style: none;
    padding: 0;
    margin-left: 20px;
}

.page-index-quick-registration__verification-text ul li {
    position: relative;
    margin-bottom: 10px;
    color: #444;
    padding-left: 25px;
}

.page-index-quick-registration__verification-text ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
}

.page-index-quick-registration__promotion-intro,
.page-index-quick-registration__game-intro,
.page-index-quick-registration__app-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #444;
}

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

.page-index-quick-registration__promo-card {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.page-index-quick-registration__promo-image {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-index-quick-registration__promo-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-index-quick-registration__promo-description {
    color: #555;
    margin-bottom: 20px;
}

.page-index-quick-registration__promo-button {
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-quick-registration__promo-button:hover {
    background-color: #e0a800;
}

.page-index-quick-registration__note-text {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 20px;
    margin-bottom: 50px;
}

.page-index-quick-registration__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-quick-registration__game-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

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

.page-index-quick-registration__game-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-quick-registration__game-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-index-quick-registration__game-description {
    color: #555;
}

.page-index-quick-registration__app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    justify-content: center;
    margin-top: 40px;
}

.page-index-quick-registration__app-image {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    height: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.page-index-quick-registration__app-details {
    flex: 1.5;
    min-width: 300px;
}

.page-index-quick-registration__app-details p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-index-quick-registration__app-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-index-quick-registration__app-details ul li {
    position: relative;
    margin-bottom: 10px;
    color: #444;
    padding-left: 30px;
    font-size: 1.05em;
}

.page-index-quick-registration__app-details ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    color: #28a745;
}

.page-index-quick-registration__download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.page-index-quick-registration__download-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-quick-registration__download-button img {
    width: 24px;
    height: 24px;
}

.page-index-quick-registration__download-button--ios {
    background-color: #333;
    color: #fff;
}

.page-index-quick-registration__download-button--ios:hover {
    background-color: #000;
    transform: translateY(-3px);
}

.page-index-quick-registration__download-button--android {
    background-color: #28a745;
    color: #fff;
}

.page-index-quick-registration__download-button--android:hover {
    background-color: #218838;
    transform: translateY(-3px);
}

.page-index-quick-registration__qr-code-text {
    text-align: center;
    font-size: 1.1em;
    color: #444;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-index-quick-registration__qr-code {
    display: block;
    margin: 0 auto;
    width: 180px;
    height: 180px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.page-index-quick-registration__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-quick-registration__faq-item {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-quick-registration__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

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

.page-index-quick-registration__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
    opacity: 1;
}

.page-index-quick-registration__contact-prompt {
    text-align: center;
    font-size: 1.1em;
    margin-top: 40px;
    color: #444;
}

.page-index-quick-registration__contact-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-index-quick-registration__contact-link:hover {
    text-decoration: underline;
}

.page-index-quick-registration__final-cta {
    text-align: center;
    background-color: #007bff;
    color: #fff;
    padding: 100px 0;
    border-radius: 10px;
    margin-bottom: 0;
}

.page-index-quick-registration__final-cta .page-index-quick-registration__section-title {
    color: #ffc107;
}

.page-index-quick-registration__final-cta .page-index-quick-registration__section-title::after {
    background-color: #fff;
}

.page-index-quick-registration__final-cta-text {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-quick-registration__hero-title {
        font-size: 2.8em;
    }
    .page-index-quick-registration__hero-subtitle {
        font-size: 1.3em;
    }
    .page-index-quick-registration__section-title {
        font-size: 2em;
    }
    .page-index-quick-registration__verification-content {
        flex-direction: column;
        text-align: center;
    }
    .page-index-quick-registration__verification-image {
        max-width: 80%;
    }
    .page-index-quick-registration__app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-index-quick-registration__app-image {
        max-width: 60%;
    }
    .page-index-quick-registration__download-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-index-quick-registration__hero-title {
        font-size: 2.2em;
    }
    .page-index-quick-registration__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-quick-registration__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-index-quick-registration__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-index-quick-registration__section-title {
        font-size: 1.8em;
    }
    .page-index-quick-registration__intro-text,
    .page-index-quick-registration__promotion-intro,
    .page-index-quick-registration__game-intro,
    .page-index-quick-registration__app-intro,
    .page-index-quick-registration__final-cta-text {
        font-size: 1em;
    }
    .page-index-quick-registration__promo-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .page-index-quick-registration__hero-title {
        font-size: 1.8em;
    }
    .page-index-quick-registration__hero-subtitle {
        font-size: 1em;
    }
    .page-index-quick-registration__cta-button {
        display: block;
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-index-quick-registration__cta-button--secondary {
        margin-top: 10px;
    }
    .page-index-quick-registration__section-title {
        font-size: 1.5em;
    }
    .page-index-quick-registration__download-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-index-quick-registration__download-button {
        width: 100%;
        max-width: 250px;
    }
}