@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #000;
    color: #fff;
}

.coming-soon {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.desktop-img,
.mobile-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide mobile image by default */
.mobile-img {
    display: none;
}

/* Content on top */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.content p {
    font-size: 20px;
}

/* Show mobile image on small screens */
@media (max-width: 768px) {
    .desktop-img {
        display: none;
    }
    .mobile-img {
        display: block;
    }

    .content h1 {
        font-size: 32px;
    }

    .content p {
        font-size: 16px;
    }
}

