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

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    user-select: none; /* Prevent text/image selection */
}

.logo {
    width: 220px;
    height: 220px;
    /* 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;
}

.company-name {
    font-family: 'Montserrat+Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.65rem;
    color: #fff;
    margin: 0px 0;
    letter-spacing: 1px;
}

.copyright {
    font-family: 'Arial', sans-serif;
    font-size: 0.5rem;
    color: #ccc;
}

@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;
    }
}
