/* style/registration-login.css */
.page-registration-login {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for text, good contrast with dark background */
    background-color: #0F1A2A; /* A darker shade of primary for overall background */
    line-height: 1.6;
}

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

.page-registration-login__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Auxiliary color for titles */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-registration-login__section-subtitle {
    font-size: 1.2em;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 40px;
}

.page-registration-login__hero-section {
    background: linear-gradient(135deg, #1A2E47, #0F1A2A);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.page-registration-login__hero-content {
    text-align: center;
    max-width: 700px;
    margin-bottom: 40px;
}

.page-registration-login__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-registration-login__hero-description {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-registration-login__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.page-registration-login__btn--primary {
    background-color: #FFD700;
    color: #1A2E47;
    border: 2px solid #FFD700;
}

.page-registration-login__btn--primary:hover {
    background-color: #E0B500;
    transform: translateY(-3px);
}

.page-registration-login__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-registration-login__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E47;
    transform: translateY(-3px);
}

.page-registration-login__btn--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-registration-login__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-registration-login__hero-image-wrapper {
    display: none;
}

.page-registration-login__why-choose-section {
    padding: 60px 0;
    background-color: #1A2E47;
}

.page-registration-login__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-registration-login__feature-item {
    background-color: #0F1A2A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-registration-login__feature-item:hover {
    transform: translateY(-5px);
}

.page-registration-login__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-registration-login__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-registration-login__feature-description {
    color: #B0B0B0;
}

.page-registration-login__guide-section {
    padding: 60px 0;
    background-color: #0F1A2A;
}

.page-registration-login__guide-section--registration {
    background-color: #1A2E47;
}

.page-registration-login__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    counter-reset: step-counter;
}

.page-registration-login__step-item {
    background-color: #0F1A2A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-registration-login__guide-section--registration .page-registration-login__step-item {
    background-color: #1A2E47;
    border: 1px solid #FFD700;
}

.page-registration-login__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #2C4260; /* Darker background for number */
    border: 3px solid #FFD700;
}

.page-registration-login__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-registration-login__step-description {
    color: #B0B0B0;
    margin-bottom: 20px;
}

.page-registration-login__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-registration-login__tip-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #B0B0B0;
}

.page-registration-login__tip-text strong {
    color: #FFD700;
}

.page-registration-login__app-download-section {
    padding: 80px 0;
    background-color: #1A2E47;
    text-align: center;
}

.page-registration-login__app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-registration-login__app-image-wrapper {
    max-width: 400px;
    flex-shrink: 0;
}

.page-registration-login__app-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-registration-login__app-text-content {
    text-align: left;
    max-width: 600px;
}

.page-registration-login__app-text-content p {
    color: #B0B0B0;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-registration-login__list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-registration-login__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-registration-login__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2em;
}

.page-registration-login__promotions-section {
    padding: 60px 0;
    background-color: #0F1A2A;
}

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

.page-registration-login__promo-card {
    background-color: #1A2E47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-registration-login__promo-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-registration-login__promo-description {
    color: #B0B0B0;
    margin-bottom: 25px;
}

.page-registration-login__responsible-gambling-section {
    padding: 60px 0;
    background-color: #1A2E47;
    text-align: center;
}

.page-registration-login__responsible-gambling-section p {
    color: #B0B0B0;
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-login__faq-section {
    padding: 60px 0;
    background-color: #0F1A2A;
}

.page-registration-login__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-registration-login__faq-item {
    background-color: #1A2E47;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-registration-login__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

.page-registration-login__faq-answer {
    color: #B0B0B0;
    font-size: 1.1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-top: 0;
}

.page-registration-login__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    padding-top: 15px;
}

.page-registration-login__cta-section {
    background: linear-gradient(45deg, #1A2E47, #0F1A2A);
    padding: 80px 0;
    text-align: center;
}

.page-registration-login__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-registration-login__cta-description {
    font-size: 1.4em;
    color: #E0E0E0;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-registration-login__hero-section {
        display: flex;
        flex-direction: row;
        text-align: left;
        padding: 100px 0;
    }

    .page-registration-login__hero-content {
        flex: 1;
        text-align: left;
        margin-bottom: 0;
        padding-right: 40px;
    }

    .page-registration-login__hero-title {
        font-size: 4.5em;
    }

    .page-registration-login__hero-description {
        font-size: 1.4em;
    }

    .page-registration-login__hero-actions {
        justify-content: flex-start;
    }

    .page-registration-login__hero-image-wrapper {
        display: block;
        flex: 1;
        max-width: 50%;
        text-align: right;
    }

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

    .page-registration-login__app-content {
        flex-direction: row;
        text-align: left;
        justify-content: center;
    }

    .page-registration-login__app-image-wrapper {
        order: 2;
        margin-left: 40px;
    }

    .page-registration-login__app-text-content {
        order: 1;
        text-align: left;
    }

    .page-registration-login__section-title {
        font-size: 3em;
    }
}

@media (max-width: 767px) {
    .page-registration-login__hero-title {
        font-size: 2.5em;
    }

    .page-registration-login__hero-description {
        font-size: 1em;
    }

    .page-registration-login__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-registration-login__btn {
        width: 100%;
    }

    .page-registration-login__section-title {
        font-size: 2em;
    }

    .page-registration-login__section-subtitle {
        font-size: 1em;
    }

    .page-registration-login__features-grid,
    .page-registration-login__steps-grid,
    .page-registration-login__promotions-grid {
        grid-template-columns: 1fr;
    }

    .page-registration-login__app-content {
        flex-direction: column;
    }

    .page-registration-login__app-image-wrapper {
        margin-bottom: 30px;
    }

    .page-registration-login__app-text-content {
        text-align: center;
    }

    .page-registration-login__list {
        text-align: left;
        padding-left: 20px;
    }

    .page-registration-login__cta-title {
        font-size: 2em;
    }

    .page-registration-login__cta-description {
        font-size: 1.1em;
    }
}