
.top-bar {
    position: fixed;
    width: 100%;
    padding: 25px 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .logo {
    height: 20px;
}

.top-bar .email {
    color: #ffffff;
    text-decoration: none;
    font-size: 10px;
    font-family: 'Circular Std Medium';
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.container {
    display: flex;
    width: 80%;
    max-width: 1400px;
    height: 100vh;
    margin: 0 auto;
}

.container .col-100 {
    height: 100vh;
    display: flex;
}

.card-soon {
    width: 500px;
    height: 500px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid transparent;
    background: linear-gradient(90deg,#8754F1, #3ABDFF) padding-box, linear-gradient(90deg, #8754F1, #3ABDFF) border-box;
    box-shadow: 3px 9px 27px rgba(58, 189, 255, 0.35);
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 29px; /* Ensures the image container also has rounded corners */
    position: relative;
}

.image-container img {
    height: 120%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.text-soon {
    width: 100%;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.text-soon p {
    font-size: 18px;
    letter-spacing: 11px;
    background: linear-gradient(90deg, #3ABDFF, #3ABDFF, #8754F1, #8754F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 0;
}

.text-soon h1 {
    font-size: 40px;
    letter-spacing: 47px;
    margin-top: 30px;
}

.text-soon .description {
    font-size: 16px;
    text-transform: none;
    color: #fff;
    max-width: 500px;
}

.progress-bar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background: #0D1933;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
    opacity: 0; 
}

.progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,#8754F1, #3ABDFF);
    border-radius: 5px;
    opacity: 0.8;
}

.text-absolute {
    font-size: 10px;
    font-weight: 300;
    color: #53596E;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.pos-l {
    writing-mode: vertical-rl;
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
}

.pos-r {
    writing-mode: vertical-lr;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.pos-b {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-transform: none;
    letter-spacing: normal;
    font-size: 16px;
    max-width:500px;
    text-align: center;
    
}


/* Smartphone */
@media only screen and (max-width: 480px) {

    .top-bar {
        position: fixed;
        width: 100%;
        padding: 25px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .top-bar .logo {
        height: 20px;
    }
    
    .top-bar .email {
        color: #ffffff;
        text-decoration: none;
        font-size: 10px;
        font-family: 'Circular Std Medium';
        font-weight: 300;
        letter-spacing: 5px;
        text-transform: uppercase;
    }
    
    .container {
        display: flex;
        width: 80%;
        max-width: 1400px;
        height: 100vh;
        margin: 0 auto;
    }
    
    .container .col-100 {
        height: 100vh;
        display: flex;
    }
    
    .card-soon {
        width: 500px;
        height: 350px;
        margin: auto;
        position: relative;
        overflow: hidden;
        border-radius: 30px;
        border: 1px solid transparent;
        background: linear-gradient(90deg,#8754F1, #3ABDFF) padding-box, linear-gradient(90deg, #8754F1, #3ABDFF) border-box;
        box-shadow: 3px 9px 27px rgba(58, 189, 255, 0.35);
    }
    
    .image-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 29px; /* Ensures the image container also has rounded corners */
        position: relative;
    }
    
    .image-container img {
        height: 120%;
        object-fit: cover;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .text-soon {
        width: 100%;
        position: absolute;
        text-align: center;
        text-transform: uppercase;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .text-soon p {
        font-size: 14px;
        letter-spacing: 11px;
        background: linear-gradient(90deg, #3ABDFF, #3ABDFF, #8754F1, #8754F1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        margin-bottom: 0;
    }
    
    .text-soon h1 {
        font-size: 40px;
        letter-spacing: 27px;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-left: 27px;
    }
    
    .text-soon .description {
        font-size: 16px;
        text-transform: none;
        color: #fff;
        max-width: 500px;
    }
    
    .progress-bar {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 10px;
        background: #0D1933;
        border-radius: 5px;
        overflow: hidden;
        z-index: 1;
        opacity: 0; 
    }
    
    .progress {
        height: 100%;
        width: 0;
        background: linear-gradient(90deg,#8754F1, #3ABDFF);
        border-radius: 5px;
        opacity: 0.8;
    }
    
    .text-absolute {
        font-size: 10px;
        font-weight: 300;
        color: #53596E;
        text-transform: uppercase;
        letter-spacing: 5px;
    }
    
    .pos-l {
        writing-mode: vertical-rl;
        position: absolute;
        left: 25px;
        top: 50%;
        transform: translateY(-50%) rotate(-180deg);
        display: none;
    }
    
    .pos-r {
        writing-mode: vertical-lr;
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        display: none;
    }
    
    .pos-b {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        text-transform: none;
        letter-spacing: normal;
        font-size: 14px;
        width:80%;
        text-align: center;
    }
    

}


/* Tablet Portrait */
@media only screen and (min-width: 481px) and (max-width: 768px) {

    .top-bar {
        position: fixed;
        width: 100%;
        padding: 25px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .top-bar .logo {
        height: 20px;
    }
    
    .top-bar .email {
        color: #ffffff;
        text-decoration: none;
        font-size: 10px;
        font-family: 'Circular Std Medium';
        font-weight: 300;
        letter-spacing: 5px;
        text-transform: uppercase;
    }
    
    .container {
        display: flex;
        width: 80%;
        max-width: 1400px;
        height: 100vh;
        margin: 0 auto;
    }
    
    .container .col-100 {
        height: 100vh;
        display: flex;
    }
    
    .card-soon {
        width: 500px;
        height: 500px;
        margin: auto;
        position: relative;
        overflow: hidden;
        border-radius: 30px;
        border: 1px solid transparent;
        background: linear-gradient(90deg,#8754F1, #3ABDFF) padding-box, linear-gradient(90deg, #8754F1, #3ABDFF) border-box;
        box-shadow: 3px 9px 27px rgba(58, 189, 255, 0.35);
    }
    
    .image-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 29px; /* Ensures the image container also has rounded corners */
        position: relative;
    }
    
    .image-container img {
        height: 120%;
        object-fit: cover;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .text-soon {
        width: 100%;
        position: absolute;
        text-align: center;
        text-transform: uppercase;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .text-soon p {
        font-size: 18px;
        letter-spacing: 11px;
        background: linear-gradient(90deg, #3ABDFF, #3ABDFF, #8754F1, #8754F1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }
    
    .text-soon h1 {
        font-size: 40px;
        letter-spacing: 47px;
        margin-top: 30px;
        margin-left: 47px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .text-soon .description {
        font-size: 16px;
        text-transform: none;
        color: #fff;
        max-width: 500px;
    }
    
    .progress-bar {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 10px;
        background: #0D1933;
        border-radius: 5px;
        overflow: hidden;
        z-index: 1;
        opacity: 0; 
    }
    
    .progress {
        height: 100%;
        width: 0;
        background: linear-gradient(90deg,#8754F1, #3ABDFF);
        border-radius: 5px;
        opacity: 0.8;
    }
    
    .text-absolute {
        font-size: 10px;
        font-weight: 300;
        color: #53596E;
        text-transform: uppercase;
        letter-spacing: 5px;
    }
    
    .pos-l {
        writing-mode: vertical-rl;
        position: absolute;
        left: 25px;
        top: 50%;
        transform: translateY(-50%) rotate(-180deg);
    }
    
    .pos-r {
        writing-mode: vertical-lr;
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .pos-b {
        position: absolute;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        text-transform: none;
        letter-spacing: normal;
        font-size: 18px;
        width: 80%;
        text-align: center;
    }
    

}


/* Tablet Landscape */
@media only screen and (min-width: 769px) and (max-width: 1024px) {

    .top-bar {
        position: fixed;
        width: 100%;
        padding: 25px 85px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .top-bar .logo {
        height: 20px;
    }
    
    .top-bar .email {
        color: #ffffff;
        text-decoration: none;
        font-size: 10px;
        font-family: 'Circular Std Medium';
        font-weight: 300;
        letter-spacing: 5px;
        text-transform: uppercase;
    }
    
    .container {
        display: flex;
        width: 80%;
        max-width: 1400px;
        height: 100vh;
        margin: 0 auto;
    }
    
    .container .col-100 {
        height: 100vh;
        display: flex;
    }
    
    .card-soon {
        width: 500px;
        height: 500px;
        margin: auto;
        position: relative;
        overflow: hidden;
        border-radius: 30px;
        border: 1px solid transparent;
        background: linear-gradient(90deg,#8754F1, #3ABDFF) padding-box, linear-gradient(90deg, #8754F1, #3ABDFF) border-box;
        box-shadow: 3px 9px 27px rgba(58, 189, 255, 0.35);
    }
    
    .image-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 29px; /* Ensures the image container also has rounded corners */
        position: relative;
    }
    
    .image-container img {
        height: 120%;
        object-fit: cover;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .text-soon {
        width: 100%;
        position: absolute;
        text-align: center;
        text-transform: uppercase;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .text-soon p {
        font-size: 18px;
        letter-spacing: 11px;
        background: linear-gradient(90deg, #3ABDFF, #3ABDFF, #8754F1, #8754F1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }
    
    .text-soon h1 {
        font-size: 40px;
        letter-spacing: 47px;
        margin-top: 30px;
    }
    
    .text-soon .description {
        font-size: 16px;
        text-transform: none;
        color: #fff;
        max-width: 500px;
    }
    
    .progress-bar {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 10px;
        background: #0D1933;
        border-radius: 5px;
        overflow: hidden;
        z-index: 1;
        opacity: 0; 
    }
    
    .progress {
        height: 100%;
        width: 0;
        background: linear-gradient(90deg,#8754F1, #3ABDFF);
        border-radius: 5px;
        opacity: 0.8;
    }
    
    .text-absolute {
        font-size: 10px;
        font-weight: 300;
        color: #53596E;
        text-transform: uppercase;
        letter-spacing: 5px;
    }
    
    .pos-l {
        writing-mode: vertical-rl;
        position: absolute;
        left: 25px;
        top: 50%;
        transform: translateY(-50%) rotate(-180deg);
    }
    
    .pos-r {
        writing-mode: vertical-lr;
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .pos-b {
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        text-transform: none;
        letter-spacing: normal;
        font-size: 16px;
        max-width:500px;
        text-align: center;
        
    }
    

}