* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    background-color: #fff;
    color: #111;
    line-height: 1.6;
}

.cryptonavv-header {
    background-color: #fff;
    box-shadow: -2px 3px 90px -20px rgb(0 0 0 / 25%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.cryptonavv-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.cryptonavv-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    color: #141414;
    text-decoration: none;
}

.cryptonavv-logo-img {
    height: 36px;
    margin-right: 4px;
}

.cryptonavv-soon {
    background-color: #fff;
    border: 1px solid #141414;
    border-radius: 30px;
    color: #141414;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 500;
}

.cryptonavv-main {
    margin-top: 120px;
    padding: 40px 5%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cryptonavv-title {
    font-family: 'Heebo', sans-serif;
    color: #141414;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cryptonavv-subtitle {
    font-family: 'Heebo', sans-serif;
    color: #141414;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 20px;
}

.cryptonavv-image {
    max-width: 680px;
    width: 100%;
    margin: 0 auto 30px auto;
    border-radius: 10px;
}

.cryptonavv-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    font-weight: 300;
}

.cryptonavv-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 20px;
    border-radius: 4px;
    overflow: hidden;
}

.cryptonavv-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
}

.cryptonavv-button {
    background-color: #141414;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cryptonavv-button:hover {
    background-color: #333;
}

.cryptonavv-thanks {
    display: none;
    color: #141414;
    font-size: 18px;
    margin-top: 20px;
}

.cryptonavv-footer {
    background-color: #141414;
    color: #fff;
    padding: 20px 5%;
    text-align: center;
    margin-top: 80px;
}

.cryptonavv-footer-text {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 13px;
}

@media (max-width: 768px) {
    .cryptonavv-title {
        font-size: 36px;
    }
    
    .cryptonavv-subtitle {
        font-size: 20px;
    }
    
    .cryptonavv-form {
        flex-direction: column;
    }
    
    .cryptonavv-input {
        margin-bottom: 10px;
        border-radius: 4px;
    }
    
    .cryptonavv-button {
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .cryptonavv-title {
        font-size: 28px;
    }
    
    .cryptonavv-subtitle {
        font-size: 18px;
    }
    

}