body {
     transition: opacity 0.6s ease;
    margin: 0;
    background: #4b0000;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* Container */
.puzzle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Puzzle Basis */
.puzzle {
    width: 420px;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        filter 0.25s ease,
        opacity 0.6s ease;
}

/* Abstandfrei */
.puzzle.left { margin-right: -70px; z-index: 2; }
.puzzle.right { z-index: 1; }

/* 3D Hover */
.puzzle:hover {
    transform: translateY(-6px) scale(1.03);
    filter: brightness(1.08);
}

/* Pressed */
.puzzle:active {
    transform: translateY(2px) scale(0.98);
    filter: brightness(0.95);
}

/* Text */
.puzzle-text {
    fill: white;
    font-size: 22px;
    font-weight: bold;
    text-anchor: middle;
    pointer-events: none;
}

/* Morph-Trennung */
.split-left {
    transform: translateX(-160px) rotate(-8deg);
}

.split-right {
    transform: translateX(160px) rotate(8deg);
}

/* Fade-Out */
.fade-out {
    opacity: 0;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .puzzle-container {
        flex-direction: column;
    }

    .puzzle {
        width: 90vw;
        margin: 0 !important;
    }

    .puzzle.left {
        margin-bottom: -40px !important;
    }
}
