body {
    background-color: #000000 !important;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.card {
    background-color: #000000 !important;
    border: 1px solid #ff6b00 !important;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
    margin-bottom: 20px;
}

.card-header {
    border-bottom: 1px solid #ff6b00 !important;
}

.text-orange {
    color: #ff6b00 !important;
}

.border-orange {
    border-color: #ff6b00 !important;
}

.submission-item {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.submission-item:last-child {
    border-bottom: none;
}

.submission-item h4, 
.submission-item h5 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.text-muted {
    color: #666666 !important;
}

/* Hover effects */
.submission-item:hover {
    background-color: rgba(255, 107, 0, 0.1);
    transition: background-color 0.3s ease;
}

/* Animation for Now Playing */
@keyframes glow {
    0% { text-shadow: 0 0 10px rgba(255, 107, 0, 0.2); }
    50% { text-shadow: 0 0 20px rgba(255, 107, 0, 0.4); }
    100% { text-shadow: 0 0 10px rgba(255, 107, 0, 0.2); }
}

#nowPlaying .submission-item h4 {
    animation: glow 2s infinite;
}

/* Spotlight animations */
@keyframes spotlightGlow {
    0% { box-shadow: 0 0 5px rgba(255, 107, 0, 0.3); }
    50% { box-shadow: 0 0 15px rgba(255, 107, 0, 0.6); }
    100% { box-shadow: 0 0 5px rgba(255, 107, 0, 0.3); }
}

#spotlightSongs .submission-item {
    animation: spotlightGlow 3s infinite;
    border-radius: 5px;
    background-color: rgba(255, 107, 0, 0.05);
}

#spotlightSongs .submission-item:hover {
    background-color: rgba(255, 107, 0, 0.15);
}

#spotlightSubmissions .submission-item {
    animation: spotlightGlow 3s infinite;
    border-radius: 5px;
    background-color: rgba(255, 107, 0, 0.05);
}

#spotlightSubmissions .submission-item:hover {
    background-color: rgba(255, 107, 0, 0.15);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .submission-item {
        padding: 10px;
    }
    
    .submission-item h4 {
        font-size: 1.4rem;
    }
    
    .submission-item h5 {
        font-size: 1.2rem;
    }
}