.regular {
    font-family: 'Montserrat Condensed', sans-serif;
    font-weight: 400; /* Uses the Regular font file */
}

.bold {
    font-family: 'Montserrat Condensed', sans-serif;
    font-weight: 700; /* Uses the Bold font file */
}

body {
    margin: 0;
    padding: 0;
    background-color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 0px; /* 50px; */
    max-width: 500px; /* Forces text to wrap by limiting container width */
    margin: 0 auto;
}

.logo {
    width: 0px; /* 250px; */
    height: 0px;
    /* Fallback background color for visibility if base64 fails */
    background-color: #000;
    /* Replace with your logo's base64-encoded string */
    /* background-image: url('lucra_logo.png'); */
    background-size: cover;
    background-position: center;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Transparent overlay */
    pointer-events: none;
}

.container h1 {
    font-family: 'Montserrat Condensed', sans-serif; /* Correct font name */
    font-size: 1.4Rem; /* 22px; */
    margin: 0px 0;
    letter-spacing: 8px;
    line-height: 2; /* Improves readability */
    font-weight: 700;
    background: linear-gradient(to right, #016BD9, #ffffff, #F206C9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block; /* Works for multi-line text */
    
    white-space: nowrap;
    /* letter-spacing: -0.1em; */
    overflow-x: hidden;
    text-overflow: ellipsis;
    width: 100%; /* Ensure container width is defined */
    box-sizing: border-box; /* Prevent padding/margin issues */
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    user-select: none; /* Prevent text/image selection */
}

.container h2 {
    font-family: 'Montserrat Condensed', sans-serif;
    font-weight: 400;
    font-size: 1.5Rem;
    color: #eee;
    margin: 10px 0;
    letter-spacing: 10px;
}

.copyright {
    font-family: 'Arial', sans-serif;
    font-size: 0.6rem;
    color: #ccc;
    user-select: none; /* Prevent text/image selection */
}

@media (max-width: 600px) {
    .logo {
        width: 80vw;
        height: 80vw;
        max-width: 400px;
        max-height: 400px;
    }
    .company-name {
        font-size: 2rem;
    }
    .copyright {
        font-size: 0.8rem;
    }
}
