/* style/index-easy-registration.css */

/* Global styles for this page content only */
.page-index-easy-registration {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-index-easy-registration__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-index-easy-registration__section-intro {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-easy-registration__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.page-index-easy-registration__btn--primary {
    background-color: #E3B505;
    color: #0A2463;
    border: 2px solid #E3B505;
}

.page-index-easy-registration__btn--primary:hover {
    background-color: #0A2463;
    color: #E3B505;
    transform: translateY(-3px);
    border-color: #0A2463;
}

.page-index-easy-registration__btn--secondary {
    background-color: #0A2463;
    color: #E3B505;
    border: 2px solid #0A2463;
}

.page-index-easy-registration__btn--secondary:hover {
    background-color: #E3B505;
    color: #0A2463;
    transform: translateY(-3px);
    border-color: #E3B505;
}

.page-index-easy-registration__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-index-easy-registration__hero {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c92 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap-reverse; /* Image on right for desktop, on top for mobile */
}

.page-index-easy-registration__hero-content {
    max-width: 600px;
    text-align: left;
    padding: 0 20px;
}

.page-index-easy-registration__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #E3B505; /* Gold for title for contrast */
}

.page-index-easy-registration__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-easy-registration__hero-image-wrapper {
    flex-shrink: 0;
    max-width: 500px;
    padding: 0 20px;
}

.page-index-easy-registration__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Steps Section */
.page-index-easy-registration__steps {
    padding: 60px 0;
    background-color: #fff;
}

.page-index-easy-registration__step-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-index-easy-registration__step-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: #0A2463;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    color: #E3B505;
    position: relative;
    box-shadow: 0 0 0 5px rgba(227, 181, 5, 0.3);
}

.page-index-easy-registration__step-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.page-index-easy-registration__step-icon span {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #E3B505;
    color: #0A2463;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    border: 2px solid #0A2463;
}

.page-index-easy-registration__step-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-index-easy-registration__step-description {
    font-size: 1.1em;
    color: #555;
}

.page-index-easy-registration__step-list {
    list-style: disc;
    margin-left: 20px;
    margin-top: 15px;
    color: #555;
}

.page-index-easy-registration__step-list li {
    margin-bottom: 8px;
}

.page-index-easy-registration__cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #ddd;
}

.page-index-easy-registration__cta-text {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 25px;
    font-weight: bold;
}

/* Benefits Section */
.page-index-easy-registration__benefits {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.page-index-easy-registration__benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-easy-registration__benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-index-easy-registration__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-index-easy-registration__benefit-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-easy-registration__benefit-description {
    font-size: 1em;
    color: #666;
}

/* Tips Section */
.page-index-easy-registration__tips {
    padding: 60px 0;
    background-color: #fff;
}

.page-index-easy-registration__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-index-easy-registration__tip-list li {
    background-color: #fdfdfd;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 5px solid #E3B505;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
}

.page-index-easy-registration__tip-list li strong {
    color: #0A2463;
}

/* FAQ Section */
.page-index-easy-registration__faq {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.page-index-easy-registration__faq-item {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.page-index-easy-registration__faq-question {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-index-easy-registration__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #E3B505;
    transition: transform 0.3s ease;
}

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

.page-index-easy-registration__faq-answer {
    font-size: 1em;
    color: #555;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-index-easy-registration__faq-answer.active {
    display: block;
}

/* Final CTA Section */
.page-index-easy-registration__final-cta {
    background: linear-gradient(135deg, #0A2463, #0A2463, #E3B505);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-index-easy-registration__final-cta-content {
    max-width: 900px;
}

.page-index-easy-registration__final-cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E3B505;
}

.page-index-easy-registration__final-cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-index-easy-registration__responsible-gaming {
    margin-top: 30px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-easy-registration__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-index-easy-registration__hero-content {
        text-align: center;
    }

    .page-index-easy-registration__hero-title {
        font-size: 2.5em;
    }

    .page-index-easy-registration__hero-description {
        font-size: 1em;
    }

    .page-index-easy-registration__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-index-easy-registration__step-icon {
        margin-bottom: 20px;
    }

    .page-index-easy-registration__step-list {
        text-align: left;
    }

    .page-index-easy-registration__section-title {
        font-size: 2em;
    }

    .page-index-easy-registration__final-cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-index-easy-registration__hero {
        padding: 60px 0;
    }

    .page-index-easy-registration__hero-title {
        font-size: 2em;
    }

    .page-index-easy-registration__section-title {
        font-size: 1.8em;
    }

    .page-index-easy-registration__section-intro {
        font-size: 1em;
    }

    .page-index-easy-registration__step-title {
        font-size: 1.5em;
    }

    .page-index-easy-registration__btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .page-index-easy-registration__final-cta-title {
        font-size: 1.8em;
    }

    .page-index-easy-registration__final-cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-easy-registration__hero-title {
        font-size: 1.8em;
    }

    .page-index-easy-registration__section-title {
        font-size: 1.5em;
    }

    .page-index-easy-registration__step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8em;
    }

    .page-index-easy-registration__step-icon span {
        width: 25px;
        height: 25px;
        font-size: 0.7em;
    }

    .page-index-easy-registration__step-title {
        font-size: 1.3em;
    }

    .page-index-easy-registration__benefit-grid {
        grid-template-columns: 1fr;
    }

    .page-index-easy-registration__final-cta-title {
        font-size: 1.6em;
    }
}