#registration-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#registration-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#registration-form .form-group input[type="text"],
#registration-form .form-group input[type="email"],
#registration-form .form-group input[type="tel"],
#registration-form .phone-field {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 15px;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

#registration-form .form-group input:focus,
#registration-form .phone-field:focus {
    outline: none;
    border-color: #F79E1C;
    box-shadow: 0 0 0 3px rgba(247, 158, 28, 0.2);
}

#registration-form .form-group input::placeholder,
#registration-form .phone-field::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#registration-form .phone-input-wrapper {
    width: 100%;
}

#registration-form .iti {
    width: 100%;
}

#registration-form .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #F79E1C 0%, #e88a0a 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

#registration-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 158, 28, 0.4);
}

#registration-form .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    text-align: center;
    padding: 30px 20px;
}

.success-message h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #F79E1C;
    font-family: 'Oswald', sans-serif;
}

.success-message p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Roboto', sans-serif;
}

.iti__selected-dial-code {
    color: #fff !important;
}

.iti__arrow {
    border-top-color: #fff !important;
}

.iti--separate-dial-code .iti__selected-flag {
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px 0 0 8px;
}

.header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 0 0 200px;
    height: 34px;
    padding: 0;
}

@media (max-width: 1024px) {
   .header__btn {
      flex: 0 0 134px;
   }
}

/* Navigation Menu */
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
.main-nav a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.main-nav a:hover {
    color: #F79E1C;
}
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}
.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}
.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}
.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 10px;
}

/* Mobile */
@media (max-width: 900px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10,10,30,0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 10000;
    }
    .main-nav.active {
        display: flex;
    }
    .main-nav a {
        font-size: 20px;
        color: #fff;
    }
    .footer-contact {
        flex-direction: column;
        gap: 12px;
    }
    .footer-nav {
        flex-wrap: wrap;
        gap: 10px !important;
    }
}

/* Contact Form */
.contact-form-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 15px 60px;
}
.contact-form-box {
    width: 100%;
    max-width: 480px;
    padding: 40px 36px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(56px);
    -webkit-backdrop-filter: blur(56px);
    box-shadow: 0 0 30px rgba(0,0,0,0.27);
    border: 1px solid #3d3d3d;
    border-radius: 24px;
}
.contact-form-box h2 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.3;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-section h2 {
    color: #fff;
    margin-bottom: 10px;
}
.cta-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}
.cta-section .cryptocurrency__btn {
    display: inline-block;
}

/* FAQ dark theme override */
.faq_item {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s ease;
}
.faq_item:hover {
    border-color: rgba(247,158,28,0.3);
}
.faq_item.active {
    border-color: rgba(247,158,28,0.5);
}
.faq_titleWrp {
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
}
.faq_desc span {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.6;
}
.faq_arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.faq_arrow img {
    filter: invert(1);
    width: 16px;
    height: 16px;
}
.faq_wrapper {
    gap: 12px;
}

/* Page block text styling */
.page-block-wrap h2 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
}
.page-block-wrap h3 {
    color: #F79E1C;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.page-block-wrap ul {
    color: rgba(255,255,255,0.8);
    padding-left: 20px;
    margin-bottom: 15px;
}
.page-block-wrap ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}
