body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: white;
    overflow: hidden;
}

body {
    background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&q=80&w=1920') no-repeat center center fixed;
    background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Strat întunecat pentru lizibilitate */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 5px;
    margin-bottom: 0;
}

.tagline {
    font-weight: 300;
    font-size: 1.2rem;
    margin-top: 10px;
}

.status-box {
    margin-top: 50px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

footer {
    position: absolute;
    bottom: 30px;
    font-size: 0.8rem;
    opacity: 0.7;
}