
        .recent-albums-wrap { 
            margin: 20px 0; 
            padding: 10px; 
            background: #090000; 
            border-radius: 8px; 
            box-shadow: 0 1px 3px rgba(0,0,0,0.1); 
        }
        .recent-albums-wrap h3 { 
            font-size: 18px; 
            color: #ffffff; 
            margin-bottom: 15px; 
            border-bottom: 2px solid #333; 
            padding-bottom: 5px; 
        }
        
        /* Mobile First (100px items) */
        .recent-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); 
            gap: 12px; 
        }
        
        .recent-item { 
            text-decoration: none; 
            color: #fff; 
            text-align: center; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
        }
        .recent-item:hover { 
            color: #007bff; 
        }
        .recent-item img { 
            width: 100%; 
            height: auto; 
            aspect-ratio: 1/1; 
            object-fit: cover; 
            border-radius: 6px; 
            box-shadow: 0 1px 3px rgba(0,0,0,0.5); 
            margin-bottom: 5px; 
        }
        .recent-item span { 
            font-size: 16px; 
            line-height: 1.3; 
            font-weight: 500; 
        }

        /* --- BEAUTIFIED TAGS STYLING --- */
        .ringtone-tags {
            margin: 8px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .tag-label {
            font-size: 0.8rem;
            color: #666;
            font-weight: bold;
        }
       .ringtone-tags a {
    font-size: 0.75rem;
    background-color: #000000;
    color: #9f9f9f;
    padding: 2px 10px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid #a66f6f54;
    transition: all 0.2s ease;
}
        .ringtone-tags a:hover {
            background-color: #007bff;
            color: #fff;
            border-color: #007bff;
            text-decoration: none;
        }

        /* --- AUTHOR STYLING --- */
        .ringtone-author {
    font-size: 0.85rem;
    color: #555;
    /* font-style: italic; */
    margin-top: 10px;
    margin-bottom: 10px;
}
        .ringtone-author span {
            color: #888;
            font-style: normal;
        }

        /* Desktop / Larger Screens (150px items) */
        @media (min-width: 768px) {
            .recent-grid { 
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
            }
        }
