* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    background: #fff;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

.owners-link {
    display: block;
    text-align: center;
    padding: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #15803d;
    text-decoration: none;
    background: #f4f6f5;
}

.owners-link:hover {
    text-decoration: underline;
}

/* Little UFO that trails the mouse cursor with a slight delay, like a
   shadow. Positioned/animated via JS (alien.js) since CSS alone can't do
   the delayed easing — this just handles sizing/visibility. */
.alien-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 54px;
    height: auto;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.alien-cursor.visible {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .alien-cursor {
        display: none;
    }
}

/* Hard lockout on phones/tablets — no real mouse, so there's nothing for it
   to follow. Belt-and-suspenders alongside the JS pointer:fine check. */
@media (max-width: 768px), (hover: none) {
    .alien-cursor {
        display: none !important;
    }
}
