/* --- FINALES APPLE GLASS DESIGN --- */

body {
    /* Wir laden das Bild hier direkt mit dem korrekten Pfad */
    background-image: url('/images/choso.jpg') !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    background-position: center !important;
    background-color: #1a1a1a !important; /* Fallback Farbe */
}

/* Glassmorphism Effekt für die Kacheln */
.relative.flex.flex-col, 
[class*="bg-white/5"], 
[class*="backdrop-blur"] {
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
    transition: transform 0.2s ease !important;
}

.relative.flex.flex-col:hover {
    transform: scale(1.02) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
}