body {
    background-color: black;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}
.nichtviel {
    color: #ccc;
    margin: 20px 0;
    font-weight: 300;
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}
button {
    font-weight: 600;
    background-color: #333;
    color: white;
    border: 2px solid azure;
    padding: 10px 25px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
    cursor: pointer;
}
button:hover {
    background-color: azure;
    color: #333;
    transform: scale(1.05);
}
.member-section {
    margin-top: 60px;
    padding: 0 20px;
}
.section-title {
    color: white;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 2rem;
}
.member-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.member-card {
    background-color: #333;
    border: 2px solid azure;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
}
.member-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.4);
    background-color: #444;
}
.member-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid azure;
    object-fit: cover;
    margin-bottom: 15px;
}
.member-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.member-name {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}
.member-role {
    color: azure;
    font-size: 0.9rem;
    font-weight: 300;
}
.news-section {
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}
.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}
.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    align-items: stretch;
}
.news-card {
    background-color: #333;
    border-left: 5px solid azure;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    transition: 0.3s ease;
    text-align: left;
}
.news-card:hover {
    transform: translateY(-10px);
    background-color: #444;
}
.news-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #444;
}
.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 220px;
}
.news-date {
    color: azure;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.news-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.news-text {
    color: #ccc;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}
.news-button {
    color: azure;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: azure;
    border: 2px solid azure;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 100;
    transition: 0.3s;
}
.carousel-arrow:hover {
    background-color: azure;
    color: #333;
}
.prev { left: 10px; }
.next { right: 10px; }
.test-project {
    margin: 60px 0;
    padding-bottom: 40px;
}
.test-link {
    color: azure;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid azure;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
}
.test-link:hover {
    background-color: azure;
    color: #333;
}