body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.landing-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 90vw;
    max-width: 400px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}

.landing-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.slogan {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 0;
}

@media (max-width: 600px) {
    .landing-content {
        max-width: 95vw;
        padding: 1rem;
    }

    .landing-content h1 {
        font-size: 1.5rem;
    }

    .slogan {
        font-size: 1rem;
    }
}