* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SECTION als feste Box → kein Scrollen */
.about-section {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #6702740e 0%, #7602a049 50%, #ffffff 100%);
    color: #1a1a1a;
    
    position: relative;
    width: 100%;
    height: 550px;        /* <<< feste Höhe */
    overflow: hidden;     /* <<< kein Scrollen */
}

/* PARTICLE CANVAS */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1;
    z-index: 1;
}

/* GLOW EFFEKTE */
.glow-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    animation: float-glow 15s ease-in-out infinite;
    z-index: 0;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(208, 33, 243, 0.6), transparent);
    top: 10%;
    left: 5%;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 53, 245, 0.5), transparent);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.glow-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 66, 245, 0.4), transparent);
    bottom: 10%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* WRAPPER */
.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CLAIMS BOX */
.claims-box {
    background: linear-gradient(135deg, rgba(171, 36, 233, 0.05) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(170, 36, 233, 0.11) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;

    padding: 60px 40px;
    margin-top: 40px;
    box-shadow: 0 20px 60px rgba(219, 33, 243, 0.2);
    border: 2px solid rgba(194, 33, 243, 0.2);

    position: relative;
    overflow: hidden;
    min-height: 240px;
}

/* CONTAINER */
.claims-container {
    text-align: center;
    width: 100%;
    height: 180px;
    position: relative;
}

/* CLAIM ITEMS */
.claim-item {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    animation: claimFade3D 32.5s linear infinite;
}

/* DELAYS */
.claim-item:nth-child(1)  { animation-delay: 0s; }
.claim-item:nth-child(2)  { animation-delay: 2.5s; }
.claim-item:nth-child(3)  { animation-delay: 5s; }
.claim-item:nth-child(4)  { animation-delay: 7.5s; }
.claim-item:nth-child(5)  { animation-delay: 10s; }
.claim-item:nth-child(6)  { animation-delay: 12.5s; }
.claim-item:nth-child(7)  { animation-delay: 15s; }
.claim-item:nth-child(8)  { animation-delay: 17.5s; }
.claim-item:nth-child(9)  { animation-delay: 20s; }
.claim-item:nth-child(10) { animation-delay: 22.5s; }
.claim-item:nth-child(11) { animation-delay: 25s; }
.claim-item:nth-child(12) { animation-delay: 27.5s; }
.claim-item:nth-child(13) { animation-delay: 30s; }

/* ANIMATION */
@keyframes claimFade3D {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-50px) rotateY(-20deg) scale(0.9);
    }
    3% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) rotateY(0deg) scale(1);
    }
    7.69% {
        opacity: 1;
    }
    10% {
        opacity: 0;
        transform: translateY(-50%) translateX(50px) rotateY(20deg) scale(0.9);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(-50px) rotateY(-20deg) scale(0.9);
    }
}

/* TYPO */
.claim-category {
    font-weight: 700;
    font-style: italic;
    color: #8a15c0;
    font-size: 1.8em;
    margin-bottom: 12px;
}

.claim-text {
    font-size: 1.3em;
    font-style: italic;
    color: #37474f;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-section {
        height: 500px;
        padding: 20px 0;
    }

    .claims-box {
        padding: 40px 25px;
    }

    .claim-category {
        font-size: 1.3em;
    }

    .claim-text {
        font-size: 1.05em;
    }
}
