body {
    background: url('../img/bg.png') no-repeat center center fixed;  /* Dein altes Hintergrundbild */
    background-size: cover;
    font-family: 'Arial', sans-serif;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);  /* Neon-Glow */
}

.navbar {
    background-color: rgba(0, 0, 0, 0.6) !important;  /* Transparent dunkel */
    backdrop-filter: blur(10px);
}

.card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #0ff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);  /* Neon-Schatten */
}

.marquee {
    animation: marquee 15s linear infinite;
    color: #f00;  /* Rot wie auf deinem Screenshot */
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .row > .col-md-6 { margin-bottom: 1rem; }  /* Responsive Abstände */
}