* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Imagine comună */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop default */
.desktop {
    display: block;
}

.mobile {
    display: none;
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}