/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #000000;
    /* Default font for everything else can stay standard */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

/* --- Injected: subtle full-screen background image layer --- */
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: url("358.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.10;             /* tweak 0.05–0.20 */
    filter: blur(1px);         /* optional */
    transform: scale(1.02);    /* optional: avoids blur edge seams */

    z-index: 0;
    pointer-events: none;
}
/* --- End injected --- */


/* Container for Centered Items */
.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding-bottom: 50px;

    /* Injected: ensure content is above the background layer */
    position: relative;
    z-index: 1;
}


/* UPDATED TITLE STYLES */
.main-title {
    /* New rounded font applied here */
    font-family: 'Nunito', sans-serif;

    /* Increased size */
    font-size: 5rem;

    font-weight: 900;
    letter-spacing: 0.1em; /* Reduced slightly as rounded fonts look better tighter */
    margin: 0 0 0px 0;
    text-transform: uppercase;
    text-align: center;
}

/* IMPORTANT: @media rules must be outside selectors in plain CSS */
@media (max-width: 600px) {
    .main-title {
        font-size: 3rem;
        letter-spacing: 0.1em;
    }
}

.logo {
    display: block;
    max-width: 200px;
    height: auto;

    /* Optional: ensure it renders above background too */
    position: relative;
    z-index: 1;
}


/* Bottom Pinned Text */
.bottom-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);

    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.8;
    text-align: center;

    /* Injected: ensure it renders above background too */
    z-index: 1;
}
