:root {
    --page-register-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-register-card-bg: #11271B;
    --page-register-bg: #08160F;
    --page-register-text-main: #F2FFF6;
    --page-register-text-secondary: #A7D9B8;
    --page-register-border: #2E7A4E;
    --page-register-glow: #57E38D;
    --page-register-gold: #F2C14E;
    --page-register-divider: #1E3A2A;
    --page-register-deep-green: #0A4B2C;
}

.page-register {
    background-color: var(--page-register-bg);
    color: var(--page-register-text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-register__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-register__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    background-color: var(--page-register-bg);
}

.page-register__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-register__hero-content {
    width: 100%;
    max-width: 900px;
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
    background-color: var(--page-register-card-bg);
    border-radius: 10px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-register__main-title {
    font-size: clamp(2.2em, 4vw, 3em);
    font-weight: 700;
    color: var(--page-register-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-register__description {
    font-size: 1.1em;
    color: var(--page-register-text-secondary);
    margin-bottom: 30px;
}

.page-register__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-register__btn-primary,
.page-register__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-register__btn-primary {
    background: var(--page-register-btn-gradient);
    color: var(--page-register-text-main);
    border: 2px solid transparent;
}

.page-register__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-register__btn-secondary {
    background: transparent;
    color: var(--page-register-text-main);
    border: 2px solid var(--page-register-border);
}

.page-register__btn-secondary:hover {
    background-color: var(--page-register-border);
    color: var(--page-register-text-main);
    transform: translateY(-2px);
}

.page-register__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--page-register-text-main);
}

.page-register__why-join-section {
    background-color: var(--page-register-bg);
    padding-bottom: 80px;
}

.page-register__light-bg {
    background-color: var(--page-register-bg);
    color: var(--page-register-text-main);
}

.page-register__dark-bg {
    background-color: var(--page-register-card-bg);
    color: var(--page-register-text-main);
}

.page-register__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-register__grid--reversed {
    grid-template-areas: "image text";
}

.page-register__grid--reversed .page-register__image-container {
    grid-area: image;
}

.page-register__grid--reversed .page-register__text-block {
    grid-area: text;
}

.page-register__text-block {
    color: var(--page-register-text-secondary);
}

.page-register__feature-title,
.page-register__step-title {
    font-size: 1.5em;
    color: var(--page-register-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-register__image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 10px;
}

.page-register__feature-image,
.page-register__steps-image,
.page-register__security-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.page-register__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-register__steps-section {
    background-color: var(--page-register-card-bg);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-register__step-card {
    background-color: var(--page-register-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--page-register-border);
}

.page-register__step-number {
    background: var(--page-register-btn-gradient);
    color: var(--page-register-text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register__security-section {
    background-color: var(--page-register-bg);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-register__security-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-register__security-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--page-register-text-secondary);
}

.page-register__security-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--page-register-glow);
}

.page-register__text-gold {
    color: var(--page-register-gold);
}

.page-register__promotions-section {
    background-color: var(--page-register-card-bg);
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-register__card {
    background-color: var(--page-register-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid var(--page-register-border);
    padding-bottom: 20px;
}

.page-register__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-register__card-title {
    font-size: 1.3em;
    color: var(--page-register-text-main);
    margin-bottom: 10px;
    padding: 0 20px;
}

.page-register__card p {
    color: var(--page-register-text-secondary);
    padding: 0 20px;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-register__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: auto;
}

.page-register__faq-section {
    background-color: var(--page-register-bg);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-register__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__faq-item {
    background-color: var(--page-register-card-bg);
    border: 1px solid var(--page-register-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--page-register-text-main);
    background-color: var(--page-register-card-bg);
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-register__faq-question::-webkit-details-marker {
    display: none;
}

.page-register__faq-question:hover {
    background-color: var(--page-register-deep-green);
}

.page-register__faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--page-register-glow);
    margin-left: 15px;
}

.page-register__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: var(--page-register-text-secondary);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-register__faq-item[open] .page-register__faq-answer {
    max-height: 500px;
    padding-top: 10px;
}

.page-register__faq-item.active .page-register__faq-answer {
    max-height: 500px;
    padding-top: 10px;
}

.page-register__cta-final {
    background-color: var(--page-register-deep-green);
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

@media (max-width: 992px) {
    .page-register__hero-content {
        margin-top: -60px;
        padding: 30px 15px;
    }
    .page-register__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-register__grid--reversed {
        grid-template-areas: "image" "text";
    }
    .page-register__section-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-register__container {
        padding: 30px 15px;
    }

    .page-register__hero-content {
        margin-top: -40px;
        padding: 25px 15px;
    }

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

    .page-register__description {
        font-size: 1em;
    }

    .page-register__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-register__btn-primary,
    .page-register__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    
    .page-register__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-register__feature-title,
    .page-register__step-title {
        font-size: 1.3em;
    }

    .page-register__card-title {
        font-size: 1.1em;
    }

    .page-register__card-image {
        height: 180px;
    }

    .page-register__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-register img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-register__hero-image-wrapper,
    .page-register__image-container,
    .page-register__card,
    .page-register__section,
    .page-register__container,
    .page-register__cta-buttons,
    .page-register__promotion-cards,
    .page-register__faq-list,
    .page-register__hero-section,
    .page-register__why-join-section,
    .page-register__steps-section,
    .page-register__security-section,
    .page-register__promotions-section,
    .page-register__faq-section,
    .page-register__cta-final {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-register__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-register__hero-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-register__main-title {
        font-size: 1.8em;
    }
    .page-register__section-title {
        font-size: 1.5em;
    }
    .page-register__hero-content {
        margin-top: -30px;
        padding: 20px 10px;
    }
    .page-register__cta-buttons {
        gap: 10px;
    }
    .page-register__btn-primary,
    .page-register__btn-secondary {
        padding: 10px 15px;
        font-size: 0.95em;
    }
}