/* Dexter boat artwork inspired styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 80% 15%, #f5c46b 0, transparent 55%),
    linear-gradient(to bottom, #f08b1f 0%, #8c1111 50%, #050608 100%);
  background-color: #050608;
  color: #fdf4e3;
  overflow: hidden;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage {
  position: relative;
  width: 110vw;
  height: 110vh;
  overflow: hidden;
}

.tile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--scale, 1));
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.85);
  animation: float 30s ease-in-out infinite alternate;
}

.tile img {
  display: block;
  width: 240px;
  height: auto;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.tile-signup {
  z-index: 5;
  cursor: pointer;
}

.tile-signup img {
  width: 240px; /* gleich groß wie andere Tiles, kein sichtbarer Rahmen */
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) scale(var(--scale, 1)) translate(-20px, -10px) rotate(-3deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(var(--scale, 1)) translate(10px, 8px) rotate(1deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(var(--scale, 1)) translate(25px, -15px) rotate(4deg);
  }
}
