/* Feed Temps Specific Styles */
.section-title {
    color: #ff6b35;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.tracks-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.track-container {
    background-color: #1a1a1a;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.track-container:hover {
    background-color: #2a2a2a;
    border-color: #ff8c5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.track-container a {
    text-decoration: none;
    color: inherit;
}

.meta2.feed {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 10px;
}

.underlined {
    text-decoration: underline;
    color: #ff6b35;
}

.track-title {
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

.meta.p-c-yellow {
    color: #ffeb3b;
    font-size: 12px;
    margin-bottom: 10px;
}

.itc-c- {
    color: #4caf50;
}

.meta.p-c-green {
    color: #4caf50;
    font-size: 12px;
    margin-bottom: 10px;
}

.playtime-c {
    color: #2196f3;
}

.download-c {
    color: #ff9800;
}

.track-follow-c {
    color: #9c27b0;
}

.like-c {
    color: #e91e63;
}

.boost-c {
    color: #ffc107;
}

.lcomment-c {
    color: #00bcd4;
}

.meta.mccc {
    color: #ffd700;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .tracks-row {
        flex-direction: column;
        align-items: center;
    }
    
    .track-container {
        width: 90%;
        max-width: 400px;
    }
}
