.section2 {
    width: 100%;      
    height: 100vh;
    min-height: 100dvh;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0c0c15dc;
}

.pure-carousel-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 5vw;
    box-sizing: border-box;
    
    /* Der Schlüssel für butterweiches, natives Wischen auf Touch & Trackpad */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    
    /* Verhindert Browser-Konflikte beim horizontalen Wischen */
    touch-action: pan-x pan-y;
}

/* Scrollbar komplett ausblenden */
.pure-carousel-container::-webkit-scrollbar {
    display: none;
}
.pure-carousel-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pure-carousel {
    display: flex;
    gap: 30px;
    width: max-content;
}

.pure-card {
    min-width: 310px;
    width: 310px;
    aspect-ratio: 2 / 3;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid rgb(248, 245, 245);
background: linear-gradient(to bottom, #f6f4f492, #493a3a78);
    flex-shrink: 0;
    user-select: none;
    -webkit-user-select: none;
}

.pure-card-link {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
}

.pure-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    box-sizing: border-box;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(49, 44, 122, 0.71) 70%, rgba(2, 5, 42, 0.386) 100%);
    backdrop-filter: blur(8px) brightness(0.2);
    transition: backdrop-filter 0.4s ease, background 0.4s ease;
}

.pure-card-content:hover {
    backdrop-filter: blur(2px) brightness(0.3);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.pure-card-content h3 {
    font-size: 38px;
    margin-bottom: 10px;
    
}

.pure-card-content span {
    font-size: 24px;
    opacity: 0.9;
}

.pure-controls {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.pure-arrow {
    background: rgba(12, 4, 44, 0.523);
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 50%;
    color: rgb(235, 233, 240);
    font-size: 18px;
    backdrop-filter: blur(15px);
    transition: background 0.3s;
}

.pure-arrow:hover {
    background: rgba(12, 4, 44, 0.8);
}