* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    height: 100vh;
}

.coming-soon {
    position: relative;
    height: 100vh;
    background: url('background.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
    z-index: 2;
}

.logo {
    max-width: 120px;
    margin-bottom: 20px;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.2rem;
    }

    .content p {
        font-size: 1rem;
    }
}
