* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    font-family: Mont, sans-serif;
}

.screen {
    height: 100%;
    background: linear-gradient(#d9f1ff 0%, #01AFEC 25%, #018acd 45%, #018acd 55%, #01AFEC 75%, #d9f1ff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-block {
    text-align: center;
    color: white;
}

.logo {
    width: 180px;
    margin-bottom: 20px;
}

.welcome {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
}

.progress-bar {
    margin-top: 40px;
    width: 250px;
    height: 10px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #017ABE;
    width: 0%;
    animation: loadProgress 3s forwards;
}

@keyframes loadProgress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@font-face {
    font-family: Mont;
    src: url(../fonts/font.otf) format('opentype');)
}
@font-face {
    font-family: Mont;
    src: url(../fonts/font_b.otf) format('opentype');)
}

#second_page {
    height: 100%;
    background: linear-gradient(#d9f1ff 0%, #01AFEC 25%, #018acd 45%, #018acd 55%, #01AFEC 75%, #d9f1ff 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

#second_page .second-logo-block {
    margin-top: 20px;
}

#second_page .second-logo {
    width: 110px;
}

#second_page .second-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#second_page h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    text-transform: uppercase;
    color: white;
}

#second_page .highlight {
    color: #ffffff;
    font-weight: bold;
}

#second_page .subtext {
    font-size: 14px;
    font-weight: 500;
    color: #e1e1e1;
    letter-spacing: 0.5px;
}

#second_page .start-button {
    margin-top: 30px;
    background: #005fa3;
    color: white;
    font-size: 25px;
    padding: 12px 30px;
    border: 2px solid grey;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 54px rgba(0, 207, 255, 0.94);
    transition: background 0.3s ease;
}

#second_page .start-button:hover {
    background: #007fd5;
}

#third_page {
    height: 100%;
    background: linear-gradient(#d9f1ff 0%, #01AFEC 25%, #018acd 45%, #018acd 55%, #01AFEC 75%, #d9f1ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
}

#third_page .third-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 360px;
}

#third_page .third-logo {
    width: 110px;
    margin-bottom: 20px;
}

#third_page .bonus-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid white;
    border-radius: 25px;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

#third_page .bonus-img {
    width: 220px;
    margin-bottom: 15px;
}

#third_page .bonus-text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 0;
    border-bottom: 4px solid rgba(255,255,255,0.4);
}

#third_page .bonus-amount {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 0;
    border-bottom: 4px solid rgba(255,255,255,0.4);
}

#third_page .bonus-subtext {
    margin-left: 15px;
    margin-right: 15px;
    font-weight: 950;
    font-size: 16px;
    color: white;
}

#third_page .earn-call {
    font-weight: 700;
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 10px;
}

#third_page .earn-call .bold {
    font-weight: 700;
    color: white;
}

#third_page .arrow-downs {
    margin: 10px 0 20px;
}

#third_page .arrow {
    width: 20px;
    height: 20px;
    border-left: 6px solid white;
    border-bottom: 6px solid white;
    transform: rotate(45deg);
    margin: 5px auto;
    opacity: 0.9;
}

#third_page .start-button {
    background: #005fa3;
    color: white;
    font-size: 25px;
    padding: 12px 30px;
    border: 2px solid grey;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 54px 10px rgba(0, 207, 255, 0.94);
    transition: background 0.3s ease;
    margin-bottom: 25px;
}

#third_page .start-button:hover {
    background: #007fd5;
}

#fourth_page {
    height: 100%;
    background: linear-gradient(#d9f1ff 0%, #01AFEC 25%, #018acd 45%, #018acd 55%, #01AFEC 75%, #d9f1ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
    font-family: Mont, sans-serif;
}

#fourth_page .fourth-logo-block {
    margin-top: 10px;
}

#fourth_page .fourth-logo {
    width: 110px;
}

#fourth_page .balance {
    margin: 15px 0;
    min-width: 300px;
    font-size: 35px;
    font-weight: bold;
    border: 1px solid white;
    border-radius: 12px;
    padding: 8px 20px;
    margin-bottom: 50px;
}

#fourth_page .platform-card {
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    width: 90%;
    max-width: 340px;
    min-width: 300px;
}

#fourth_page .platform-image {
    margin-top: 80px;
    width: 150px;
    transition: transform 5s ease-in-out;
}

.platform-image-wrapper {
    min-height: 250px;
}

#fourth_page .platform-image.animate {
    transform: scale(1.8);
}

#fourth_page .status-text {
    margin-top: 12px;
    font-size: 14px;
    color: #fff;
    min-height: 32px;
}

#fourth_page .invest-button {
    margin-top: 15px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border: 2px solid #00cfff;
    border-radius: 30px;
    background-color: #005fa3;
    box-shadow: 0 0 46px 10px rgba(0, 207, 255, 0.5);
    transition: background 0.3s ease;
}

#fourth_page .invest-button:disabled {
    background-color: #999;
    box-shadow: none;
    border-color: #ccc;
}

#fifth_page {
    height: 100%;
    background: linear-gradient(#d9f1ff 0%, #01AFEC 25%, #018acd 45%, #018acd 55%, #01AFEC 75%, #d9f1ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-family: Mont, sans-serif;
    color: white;
}

#fifth_page .fifth-logo-block {
    margin-top: 10px;
}

#fifth_page .fifth-logo {
    width: 110px;
}

#fifth_page .fifth-title {
    color: black;
    font-size: 30px;
    font-weight: 700;
    margin: 20px 0 40px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

#fifth_page .fifth-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid white;
    border-radius: 12px;
    padding: 15px 0;
    max-width: 340px;
    width: 95%;
}

#fifth_page .fifth-main-text {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
}

#fifth_page .flag-img {
    width: 100%;
    margin: 10px 0;
}

#fifth_page .fifth-subtext {
    font-size: 14px;
    color: white;
    font-weight: 400;
    line-height: 1.4;
}

#fifth_page .arrow-downs {
    margin: 20px 0 10px;
}

#fifth_page .arrow {
    width: 20px;
    height: 20px;
    border-left: 6px solid white;
    border-bottom: 6px solid white;
    transform: rotate(45deg);
    margin: 5px auto;
    opacity: 0.9;
}

#fifth_page .register-button {
    background: #005fa3;
    color: white;
    font-size: 16px;
    padding: 12px 30px;
    border: 2px solid #00cfff;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 0 46px 10px rgba(0, 207, 255, 0.87);
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 30px;
}

#fifth_page .register-button:hover {
    background: #007fd5;
}

#sixth_page {
    height: 100%;
    background: linear-gradient(#d9f1ff 0%, #01AFEC 25%, #018acd 45%, #018acd 55%, #01AFEC 75%, #d9f1ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-family: Mont, sans-serif;
    color: white;
}

#sixth_page .sixth-logo-block {
    margin-top: 10px;
}

#sixth_page .sixth-logo {
    width: 110px;
}

#sixth_page .sixth-title {
    color: black;
    font-size: 30px;
    font-weight: 700;
    margin: 20px 0 10px;
    text-transform: uppercase;
}

#sixth_page .reg-form {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sixth_page .reg-form input[type="text"],
#sixth_page .reg-form input[type="tel"] {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    margin: 8px 0;
    box-sizing: border-box;
}

#sixth_page .phone-wrapper {
    position: relative;
    width: 100%;
}

#sixth_page .phone-wrapper .flag-icon {
    position: absolute;
    left: 10px;
    top: 12px;
    width: 20px;
}

#sixth_page .phone-wrapper input {
    padding-left: 40px;
}

#sixth_page .secure-msg {
    font-size: 11px;
    margin: 0 0 4px;
    color: #e0e0e0;
    line-height: 1.4;
}

#sixth_page .info-icon {
    font-size: 14px;
    vertical-align: middle;
}

#sixth_page .consent-msg {
    font-size: 11px;
    color: white;
    line-height: 1.4;
    margin: 6px 0 16px;
}

#sixth_page .submit-button {
    background: #005fa3;
    color: white;
    font-size: 20px;
    padding: 12px 30px;
    border: 2px solid #00cfff;
    border-radius: 30px;
    font-weight: 800;
    box-shadow: 0 0 46px 10px rgba(0, 207, 255, 0.78);
    cursor: pointer;
    transition: background 0.3s ease;
}

#sixth_page .submit-button:hover {
    background: #007fd5;
}

#sixth_page .footer-legal {
    position: absolute;
    width: 100%;
    bottom: 25px;
    font-size: 13px;
    color: #454545;
    margin-top: 20px;
}

::placeholder {
    text-align: center;
}


